How to read .wav files with DIADEM

I have done a acoustic analysis with a microphone, and I have save the different Files with .wav format.
I need to read these waveform files with DIADEM.
Diadem recognize the different files however it returns the message "Diadem d'ont load the files ---.wav"

Hello Jean-Julien!
Get and install the Audio Data PlugIn. You can get ist here: http://zone.ni.com/devzone/cda/epd/p/id/44
Matthias
Matthias Alleweldt
Project Engineer / Projektingenieur
Twigeater?  

Similar Messages

  • How to read a file with value of RAW data type? Please help

    Hi Experts,
       I  have a file with RAW data like DE864E48833BFFF1B805001CC4EF4BFA
       I am using GUI_UPLOAD.
       But this FM is throwing error.
       I tried by giving FILETYPE as ASC. The output internal table for this FM contains a field of type c size 32.
       Now it is able to read the file but I want to assign this value to a RAW data type variable.
       This it is unable to do. How to convert the char value to RAW data type?
    Please help!
    Thanks
    Gopal

    Hi,
    The documentation for the function module contains an example for RAW upload.
                begin of itab,
                      raw(255) type x,
                end of itab occurs 0.
               CALL FUNCTION 'GUI_UPLOAD'
               exporting
                  filetype =  'BIN'
                  filename = 'C:\DOWNLOAD.BIN'
               tables
                 data_tab = itab.

  • How to play wav files with Garageband/Midi keyboard

    Hello,
    I'm using Garagband (on my MAC, not iPad) and a midi keyboard for making songs. I just got a couple of cd's from Miroslav Philharmonik, but the sounds are all in standalone WAV files. There is no installation required. How can i use these sounds with Garageband? Must i copy/paste them in a specified directory on the HD? Or is a sample library necessary? I tried drag and drop, but that dind't work out...
    Thanx in advance for your help.

    this should help:
    import com.ms.win32.*;
    public void play()
              try
              URL url = new URL("file","C:\\","Hallo.wav");
              String wav= new String(url.getHost()+url.getFile());
              Winmm.PlaySound(wav,1,1);
              catch(MalformedURLException e)
    or something like this ;))
    Quaxi

  • How to read text file with big5 into db

    hi,
    how can i use UTL_FILE package to
    read a text file with big5 characters and insert into db?
    my oracle charset is AL32UTF8.
    thx a lot!

    Thx for yr answer!!!
    I have followed and it works.
    However, I got another problem with HKSCS. When the text file contained HKSCS, the store procedure also treats it as Big5 and when I select it out, the character was not the orginal one.
    Please suggest if you have any ideas.
    Many Thanks!!!

  • How to read a file with data in Hierarchical Structure using XSD Schema

    Hi
    We have requirement in which we have to read a FIXED LENGTH file with FILE ADAPTER. File contains the data in hierarchical structure. Hierarchy in the file is identified by the first 3 characters of every line which could be any of these : 000,001,002,003 and 004. Rest files are followed after these. So structure is like:
    000 -- Header of File. Will come only once in file. Length of this line is 43 characters
    -- 001 -- Sub Header. Child for 000. Can repeat in file. Length of this line is 51 characters
    --- 002 -- Detail record. Child for 001. Can repeat multiple times in given 001. Length of this line is 43 characters 1353
    -- 003 -- Sub Footer record at same level of 001. Will always come once with 001 record. Child for 000. Length of this line is 48 characters
    004 -- Footer of file.At same level of 000. Will come only once in file. Length of this line is 48 characters
    Requirement is to create an XSD which should validate this Hierarchical Structure also i.e data should come in this hierarchy only else raise an error while parsing the file.
    Now while configuring the FILE ADAPTER to read this file we are using Native Schema UI to create the XSD to parse this structure using an example data file. But we are not able to create a valid XSD for this file which should validate the Hierarchy also on the file.
    Pls provide any pointers or solution for this.
    Link to download the file, file structure details and XSD that we have created:
    https://docs.google.com/file/d/0B9mCtbxc3m-oUmZuSWRlUTBIcUE/edit?usp=sharing
    Thanks
    Amit Rattan
    Edited by: user11207269 on May 28, 2013 10:16 PM
    Edited by: user11207269 on May 28, 2013 10:31 PM
    Edited by: user11207269 on May 28, 2013 10:33 PM

    Heloo.. Can anyone help me on this. I need to do Hierarchial read / validation while reading the file using File Adapter using Native XSD schema.

  • HOW TO READ TXT FILES with NOKIA 6300?

    I mean:
    I can see pics, video, listen mp3 but I cant read a txt file with Nokia 6300!!
    is there any application to do so? thanks!!!!!!!

    thanks well I tried 4 s far and none works.
    I tried: book_13, read_maniac, tiny-book, plus MobileHeart.com-test-book-831-2336.jar.
    it starts being frustrating.
    Can you suggest one you tested it works?
    -Also, I found that I cant' upload txt file while I can upload *.doc files.....do you know what's happening?
    thanks again.

  • How to read only files with a certain format from folder with java

    I have this folder on the server and I only want to read files from this folder on the server... I only want to read files with the files format starting with error_ and ending with xml... an example of a file would be..
    error_123.xml
    I want something like this
    if(fileName.startsWith("error_") && fileName.endsWith(".xml")){
    but which java package will I have to use to read the file from the directory...

    Create an implementation of the java.io.FilenameFilter interface to match the pattern you need.
    Create a java.io.File object for the folder.
    Use the File.listFiles(FilenameFilter) method to get an array of File objects for the files in the folder that match the pattern.
    For each file in the array, create a FileInputStream, wrap it in an InputStreamReader, and wrap that in a BufferedReader (assuming you want to read the XML files as character streams).

  • How to read Raw files with PS CC

    I installed ps and bridge cc - the programs cannot read raw files (canon 5d mk III and Sony Nex 6). How to fix?

    http://forums.adobe.com/community/bridge
    http://forums.adobe.com/community/photoshop
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll

  • How to read a file with both text and binary data?

    For text data I use a BufferedReader,
    for binary data I use a DataInputStream.
    Since readLine is deprecated in DataInputStream, how can I read in a proper way a file that contains some lines of text followed by some binary data.
    Is there a way to do this without writing a new 'readLine' for DataInputStream (that has to take into account the different newlines for Unix en other OS's)?

    sorry about that ^
    NEW STRING str
    WHILE there is stuff in the file DO
        getByte()
        IF reading a string THEN
            WHILE byte is not a return character DO
                convert the byte to character/string
                append char to str
            WEND
        ELSE IF reading raw data THEN
            parse raw data
            do stuff with it
        END IF
    WEND

  • How to read *.txt files with JSP?

    I have to make a homepage that searches for information on a text file.
    My text file is described below.
    username=Hanako Sony
    cpname=Sony Corporation
    cpcode=500100
    So, if the user inputs "username", then "Hanako Sony" should be returned. If the user inputs "cpname", then "Sony Corporation" should be returned and so on.
    Can anyone help me with this? Can this be done with JSP?
    Thanks,
    Rob

    Try this,
    <%@ page import="java.io.*,java.util.*" %>
    <%
    RandomAccessFile raf = new RandomAccessFile("../webapps/test/jsp/Info.txt","r");
    String qInfo = request.getParameter("qInfo");
    String tInfo="";
    if(qInfo != null) {
         String line="";
         while((line = raf.readLine()) != null) {
              StringTokenizer st = new StringTokenizer(line,"=");
              if(st.hasMoreTokens()) {
                   if(st.nextToken().equalsIgnoreCase(qInfo))
                        tInfo = st.nextToken();
         if(tInfo.equals("")) tInfo="Property Not found ???";
    } else {
         qInfo="";
    %>
    <form name=myform action="" method="get">
    <table><tr>
    <td>What do you want : </td><td><input type = text name="qInfo" value="<%=qInfo%>"></td></tr>
    <tr><td>Here is the information : </td><td><input type = text name="tInfo" value="<%=tInfo%>"></td></tr>
    <tr><td><input type="submit" name"sub"></td></tr>
    </table>
    </form>Here info.txt is your text file. Use the relative path accordingly.
    Hope this helps.
    Sudha

  • Read multiples files with same extension

    how to read multiples files with same extension in java.
    for ex : i would like to read all .DAT files from C drive using java.
    How is it done

    - You create the filter
    - You get the list of files
    - You open and read each file.
    For the first two above you look at java.io.File and listFiles(FileFilter filter).
    For the third you find whatever input stream is appropriate from java.io.*

  • Reading & Writing files with same extension(like ".sas", ".txt" , ".csv",and ".log" in Adobe AIR

    Hi Folks,
    How to read & write files with same extension(like ".sas", ".txt" , ".csv",and ".log" in Adobe AIR.
    Please let me tell if anybody knows asap.
    Thanks & Regards,
    Anderson

    Thanks Jon,
    But, I know how to read the file if we give exact file path
    I need to get the path  and  read file(s) with same extension files in the same folder using adobe air, not single file.
    Don't have file path even, i have folder path,  in that somany files are there. So i need to get which are the same extension(Ex: ".txt", ".sas") files
    If you have any idea , please help me out
    Regards,
    Vijay.

  • I have a problem with the mac can not read video files with the extension IMOD. How can I solve this problem?

    I have a problem with the mac can not read video files with the extension IMOD. How can I solve this problem?

    By doing a Google search. 

  • Problem with cdrdao reading .wav files

    Hi,
    I have being having problems with using cdrdao to read .wav files that I created from other sources (.flac, .ogg and .mp3) using flac123/ogg123/mpg123.
    Basically, this is the error
    [phil@discovery hack]$ cdrdao simulate --device /dev/cdrom1 toc
    Cdrdao version 1.2.3 - (C) Andreas Mueller <[email protected]>
    ERROR: ./01_achilles_last_stand.wav: not in PCM format.
    ERROR: Header of audio file "./01_achilles_last_stand.wav" is corrupted.
    The 'toc' file contains....
    [phil@discovery hack]$ cat toc
    CD_DA
    TRACK AUDIO
    COPY
    NO PRE_EMPHASIS
    TWO_CHANNEL_AUDIO
    FILE "./01_achilles_last_stand.wav" 0
    START 00:02:00
    Having used the 'cdrdao' program previously, I am pretty sure the 'toc' file is sane. 
    I then noticed a difference between .wav files using the 'file' program:
    [phil@discovery hack]$ file *.wav
    01_achilles_last_stand.wav: RIFF (little-endian) data, WAVE audio, stereo 44100 Hz
    test.wav:                   RIFF (little-endian) data, WAVE audio, Microsoft PCM, 16 bit, stereo 44100 Hz
    I found that the 'test.wav' file  worked when substituted as the FILE in the 'toc' file......
    With a bit of research I found a work around, namely to convert the .wav file to another .wav file using 'ffmpeg'.
    [phil@discovery hack]$ ffmpeg -loglevel quiet -i  01_achilles_last_stand.wav -f wav -ar 44100 -ac 2 test2.wav
    The resulting files...
    01_achilles_last_stand.wav: RIFF (little-endian) data, WAVE audio, stereo 44100 Hz
    test.wav:                   RIFF (little-endian) data, WAVE audio, Microsoft PCM, 16 bit, stereo 44100 Hz
    test2.wav:                 RIFF (little-endian) data, WAVE audio, Microsoft PCM, 16 bit, stereo 44100 Hz
    Changing the 'toc' file to pick up the two test* files worked fine.
    Does anybody know either a better fix or the reasons why this is happening?
    Regards
    Phil Q

    I am not sure I understood what you actually did or intended.
    Did you plug in the camera cards into a card reader and import with Lightroom, copy to destination on one portable HD?
    That should work.
    As soon as you unplug the portable HD, the storage location will be labeled as offline and all thumbnails have the "?". As soon as you replug the portable HD and ensure that it has the same drive letter as before, the "?" will vanish.
    The "?" indicates that the file is not accessible at the storage location which you told LR during import.
    It has nothing to do with being able to save.
    Note: only in importing with "copy" chosen will LR actually touch a file (and copy it to the indicated storage location). Inside LR there are only records pointing to the image files and holding all sorts of descriptions, like metadata and develop instructions.
    If you use NX2 for the task to copy images from camera card to portable HD, and import them afterwards to LR (add in import settings), that makes no difference.
    LR will show the "?" whenever the portable HD is unavailable or the path invalid because with a different drive letter.
    Cornelia

  • Export wav file with matching dropframe timecode

    I'm sure I'm just missing something simple, but I need to export a small corrected part of a finished as a WAV file with timecode that matches the project. Being for broadcast in the US, the project is in dropframe timecode. While I'm working in STP, I see drop frame time code. But when I export, I get non-drop timecode that doesn't match the orginal code. This is a five second fix for a one hour DVD and I hate to have to send the authorers an entire new sound track when they only need the five seconds with matching timecode.
    How can I export and make this work. Without having to get ProTools, that is!

    If you're talking about timecode stamping in a WAV file exported from STP . . . well it doesn't seem to work for me no matter what timecode rate I use. 29DF, 29, 24, 23. I suspect you need to either give them the timecode location manually or export the whole thing, and let them just punch in the section they need.

Maybe you are looking for

  • How to get attributes through List Of Values

    Hi, I have two view objects, 'Customer' and 'CustomerDetails'. The 'Customer' view, has 'CustomerId' attribute that I defined as LOV with the 'CustomerDetails' view. like this: <ListBinding     Name="LOV_CustomerId"     ListVOName="CustomerDetailsVie

  • Help me with setting up my first server

    I recently decided to buy a Mac Mini server for my small business (4 users including myself) to run mail, file sharing, calander and addressbook services. Since I'm also looking at this as a personal project, I don't want to hire a server administrat

  • Copying photos from HD to IPOD

    IPOD Video: Hi new to the game...i am trying to copy imgaes (jpg's) from HD onto my IPOD. get that famous message "cannot write to or read". Help..apple dont seem to care..

  • Wierd Menu bug-only allows access to songs with album name

    So I was noticing this when I was trying to play some music by an artist that I have music for, 2 with the same album name, and several more without an album name. the thing is, when I scroll to that artist in the browse by artist menu, it goes strai

  • EOIO getting stuck

    Hi, I have a scenario Sync/Asynch bridge which is on EOIO. In devlopment it all goes fine. When moved to QA I see them going into holding status, though there are no errors for any of the previous messages. Suddenly one gets in to a Hold state withou