Success writing .wav files in GSM format with tritonus

Hello,
I have to tell the people that after some weeks fighting against .wav files and tritonus GSM converter, I have success!!!. I just record a PCM .wav file, then compress it in GSM in another .wav file(being this ten times smaller than PCM) and at last I decode it in a PCM .wav file. It sound very nice. I've been asking in everyplace about this but nobody knew it.
Now my objetive is to make the same with ADPCM.
Now I have prevailed.
If someone need the code, write me to [email protected]

Some have had good luck with the App called "Remote Wave" ... free in Market.  Install it and associate .wav files to it and that should address the issue.
Good luck.

Similar Messages

  • How can i to convert a file to .m4a format with constant bitrate and constant overall bitrate?

    how can i to convert a file to .m4a format with constant bitrate and constant overall bitrate?

    "Surely you have the same check boxes as me? Surely you can make the same selections, AAC Encode, Custom bit rate, 256k or 320k or whatever you want... Sample rate 44.1KHz, Auto Channels and VBR not selected?"
    Yes.
    " Have you tested this? "
    Yes. I tested resulted files with "MediaInfo".
    "If so what are the results?"
    VBR.

  • Converting .wav files to mp3 format.

    Hi,
            I am trying to convert a wav file into mp3 format using the below code. I am not seeing any errors in the console but at the same time the mp3 file is created without any content. Any ideas on how to address this issue ?
      Format[] FORMATS = new Format[] { new AudioFormat(
      AudioFormat.LINEAR) };
      String srcFilePath = "C:" + File.separator + "Users"
      + File.separator + "vkiran" + File.separator + "Desktop"
      + File.separator + "test" + File.separator + "4a714ea2.wav";
      String mp3FilePath = "C:" + File.separator + "Users"
      + File.separator + "vkiran" + File.separator + "Desktop"
      + File.separator + "test" + File.separator + "4a714ea2.mp3";
      File srcFile = new File(srcFilePath);
      File destFile = new File(mp3FilePath);
      MediaLocator source = new MediaLocator(srcFile.toURL());
      DataSource d = Manager.createDataSource(source);
      ContentDescriptor cd = new ContentDescriptor(
      FileTypeDescriptor.MPEG_AUDIO);
      Processor p = Manager.createRealizedProcessor(new ProcessorModel(d,
      FORMATS, cd));
      p.configure();
      System.out.println((p.getDuration()).getSeconds());
      MediaLocator destination = new MediaLocator(destFile.toURL());
      DataSource ds = p.getDataOutput();
      DataSink sink = Manager.createDataSink(p.getDataOutput(),
      destination);
      sink.open();
      sink.start();
      sink.stop();
      sink.close();
      p.stop();
      p.close();

    You are converting the WAV files to mp3 format before transferring them to the iPod?
    You're using iTunes to do this?
    Just for the record, the iPod will not play mp3 files below a bit rate of 32kbps nor will it play compressed WAV files.

  • How convert file to another format with quicktime pro?

    how convert file to another format with quicktime pro?

    Open the file and choose Save As or Export from the File menu.
    (122038)

  • Does Firefox play .wav files on Quicktime 10 with an iMac with Snowleopard?

    I upgraded to Snowleopard, on my iMac desktop. On Safari, the .wav files (voicemail) from work play (on Quicktime 10), but on Firefox 5.0.1 they don't. The message says I need an additional plug in, but they are for making videos and listening to audio visualizations, and making closed captionings. I tried two of them anyway (Divx and Express Burn) and they didn't work. Now I am having trouble getting rid of the plugins I tried. How can I get it to work on Firefox 5.0.1? I called Apple, they said to ask you.
    Sincerely,
    Windancer

    http://developer.apple.com/internet/ieembedprep.html

  • Downloading via XHR and writing large files using WinJS fails with message "Not enough storage is available to complete this operation"

    Hello,
    I have an issue that some user are experiencing but I can't reproduce it myself on my laptop. What I am trying to do it grab a file (zip file) via XHR. The file can be quite big, like 500Mb. Then, I want to write it on the user's storage.
    Here is the code I use:
    DownloadOperation.prototype.onXHRResult = function (file, result) {
    var status = result.srcElement.status;
    if (status == 200) {
    var bytes = null;
    try{
    bytes = new Uint8Array(result.srcElement.response, 0, result.srcElement.response.byteLength);
    } catch (e) {
    try {
    Utils.logError(e);
    var message = "Error while extracting the file " + this.fileName + ". Try emptying your windows bin.";
    if (e && e.message){
    message += " Error message: " + e.message;
    var popup = new Windows.UI.Popups.MessageDialog(message);
    popup.showAsync();
    } catch (e) { }
    this.onWriteFileError(e);
    return;
    Windows.Storage.FileIO.writeBytesAsync(file, bytes).then(
    this.onWriteFileComplete.bind(this, file),
    this.onWriteFileError.bind(this)
    } else if (status > 400) {
    this.error(null);
    The error happens at this line:
    bytes = new Uint8Array(result.srcElement.response, 0, result.srcElement.response.byteLength);
    With description "Not enough storage is available to complete this operation". The user has only a C drive with plenty of space available, so I believe the error message given by IE might be a little wrong. Maybe in some situations, Uint8Array
    can't handle such large file? The program fails on a "ASUSTek T100TA" but not on my laptop (standard one)
    Can somebody help me with that? Is there a better way to write a downloaded binary file to the disk not passing via a Uint8Array?
    Thanks a lot,
    Fabien

    Hi Fabien,
    If Uint8Array works fine on the other computer, it should not be the problem of the API, but instead it could be the setting or configuration for IE.
    Actually using XHR for 500MB zip file is not suggested, base on the documentation:
    How to download a file, XHR wraps an
    XMLHttpRequest call in a promise, which is not a good approach for big item download, please use
    Background Transfer instead, which is designed to receive big items.
    Simply search on the Internet, and looks like the not enough storage error is a potential issue while using XMLHttpRequest:
    http://forums.asp.net/p/1985921/5692494.aspx?PRB+XMLHttpRequest+returns+error+Not+enough+storage+is+available+to+complete+this+operation, however I'm not familiar with how to solve the XMLHttpRequest issues.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Payload type of wav files encoded with gms codec

    Hello everybody,
    I have an application which receives and plays alaw formated wav files using JMF(with the help of some additional libraries) . I want to use lower bandwidth for my application. A quick google search indicated that i can do this by using gsm format.
    I have 2 questions:
    1-) what are the differences between .gsm files and .wav files which are encoded with gsm codecs? Which one's quality is better? which one's compression ratio is better?
    2-) which payload type should i use for wav files which are encoded with gsm codecs?
    In [Rtp Payload list|http://www.iana.org/assignments/rtp-parameters] page, there is a gsm entry whose payload is 3. I suppose that is for files with gsm extension. I tried it but it didn't work with my wav sample (as u can guess it was encoded with gsm 6.10 codec)
    Any suggestion is appreciated. If you have a comment about the main problem (which is using lower bandwidth for sending audio data) i would also like to hear it
    Thanks in advance
    btw i also tried this [gsm sample|http://www.nch.com.au/acm/sample.gsm] with payload 3.At first it worked but then strangely it played just static. In Sun's page it says gsm format is supported. I played both ulaw and alaw succesfully so i wonder what i am doing wrong. Do we need to tell the player that it is going to receive data in gsm format? I didnt do such a thing for u-law and a-law formats...
    Edited by: Bugra.Hasbek on Nov 10, 2008 1:18 AM

    Bugra.Hasbek wrote:
    Hello everybody,
    I have an application which receives and plays alaw formated wav files using JMF(with the help of some additional libraries) . I want to use lower bandwidth for my application. A quick google search indicated that i can do this by using gsm format.
    I have 2 questions:
    1-) what are the differences between .gsm files and .wav files which are encoded with gsm codecs? Which one's quality is better? which one's compression ratio is better?I would imagine they are the same...
    2-) which payload type should i use for wav files which are encoded with gsm codecs?I would imagine 3...
    In [Rtp Payload list|http://www.iana.org/assignments/rtp-parameters] page, there is a gsm entry whose payload is 3. I suppose that is for files with gsm extension. I tried it but it didn't work with my wav sample (as u can guess it was encoded with gsm 6.10 codec)
    Any suggestion is appreciated. If you have a comment about the main problem (which is using lower bandwidth for sending audio data) i would also like to hear itMy suggestion would be not to worry about so much stuff. JMF does all of this for you automaticlly.
    On the sender side, make your processor take in whatever kind of supported file you want. Set the processor to output your GSM mono, and then you can just use a Player to play it on the other side. It's really not very different than the examples...
    [http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/AVTransmit.html]
    When you're programming the tracks, and you're calling "setFormat" on them, just set their format to be gsm.
    [http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/AVReceive.html] should be able to play this out of the box...

  • Record GSM and ADPCM in wav files

    Hello,
    is there any way to record .wav files using GSM and ADPCM format(tritonus implementation for example). I need to record .wav files in this formats and send then through a network to another computer.
    Is somebody has a code example please, post it or send me it to my e-mail:
    [email protected]

    why these files don't work in iTunes 5. Perhaps there is a bug in iTunes?
    A bug or a new "feature". ;-)>
    The problem is unique to iTunes 5, as I said - I had no problems with any iTunes version through 4.9.
    The important thing is I will still have access to the files for classroom use (and I also just plain listened to them as well).

  • How can i create a printable format with Java

    Hello....
    First, my english is not good, but this is possibly my last hope!! I have a program with EJB's, JBoos and a MySql database! The program shows the data from the database and you can do something with these data. Now my problem to print this data. I want create a formular which will be print! I've treid ut with docbook and the javax.print library.
    The first problem is: with linux docbook works very fine. I transform the sgml-file in many formats with "db2pdf or db2ps......"
    but the javax.print library don't find any printservice! I've J2EE 1.4.1 where the bug canceld from the earlier version!
    So the next problem is: with windows the javax.print library works fine! I find the printservices and can print *.ps or *.pdf! But i can't transform the sgml-file in Postscipt or PDF!
    I've tried to solve this problem for two weeks now, but without any success.
    Now my Question is: have somebody experiences with this problem and can help me or is there another possibility to solve my problem!!!
    Thanks
    FIPS

    seems to be important!
    k, do this.
    1. ur english is wonderful for a programmer, are u US :)
    2. i will suggest u create an XML file.
    then u can print it and do the hell with it.
    so : java ==> XML ==> what ever u want.
    and if u can also what ever u want ==> XML ==> java.
    this works also fine.

  • Can no longer listen to low-quality WAV files

    I have used iTunes to organize and listen to voice files recorded on portable digital recorders and cameras, but today discovered that they no longer work. Furthermore I can no longer import these files, with no error message. Should I look to replace iTunes with other software? Install Windows?
    Kind: WAV audio file
    Size: 4MB
    Bit Rate: 32 kbps
    Sample Rate: 8.000 kHz
    Date Modified: 22/05/08 7:59 AM
    Play Count: 2
    Last Played: 21/08/08 10:22 AM
    Channels: Mono
    Sample Size: 4 bit
    Compression: DVI IMA

    I am having the same trouble. It started with the iTunes 8.1 update. What I've found is that you can solve this with a work around, it is not pretty, but it does work. The very strange thing is that Quicktime plays them fine and Quickview plays them fine(my guess is it is using Quicktime to play them).
    Basically use another program to convert your WAV files to MP3 format. Then you can import them into iTunes.
    This is a good one(open source and allows for editing the sound files)
    http://audacity.sourceforge.net/

  • Is there a way to import metadata to wav files in my library?

    Is there a way to import metadata to wav files in my library?
    I have about 1,500 .wav files that are presently in my iTunes library, but as most of you are aware .wav files have their limitations with regard to how iTunes translates their specific track information. I haven't been archiving using .wav in sometime, I've since switched to another more iTunes friendly format. But, I have these 1,500 files left and I'm desperately trying to find a faster way to log the info.
    I've built a data table with all of the track information I want to import. Does anyone know of a good macro, or script that will allow me to import this data so I don't have to manually open each individual .wav file and input this manually?
    Any help would be appreciated!
    Note: I've searched the forums, and I've looked at similar posts, but nothing to solve this specific little quandary. If I've somehow overlooked a post, please forgive my repeat post.

    I can probably help with this.
    I have a script called TagFromFilename that can apply fill in the details that can be extracted from the file path if the .wavs are stored in the layout <Album Artist>\<Album>\[D-]## <Name>[ - <Artist>].<Ext> where D is an optional leading disc number and <Artist> is an optional trailing artist (otherwise both artist and album artist are set to the grandparent folder). You just need to make sure that before you add the tracks to iTunes, that it won't rename the files. You can do this by turning off the Keep option if the files are inside the media folder, or the copy option if the tracks are located outside.
    Alternatively I have another script called ExportImport which allows for almost any editable to be adjusted, as long as you can export the internal track IDs of each track and then marry them up with the data you want to import. See Batch Add Comments Tag Solution? for a previous example of how if might be done. I'll gladly go into more detail if you tell me what fields you already have and what identifying information is present.
    tt2

  • Wav file in itunes

    i've got a DVD full of .wav music files that itunes won't recognise to burn into my library- how do i get them converted into itunes files and into my library?
    thanks!

    You don't need to "switch" your WAV files into another format in order for iTunes to play or otherwise handle them, as WAV is one of the directly supported formats of iTunes.
    As long as your WAV files are "normal," i.e. 44.100 kHz/16 bit/stereo, they should play with no problems. If the files were made with, for example, Audacity, and some random WAV export options, such as "floating point" were used, then they won't behave nicely in iTunes.
    Perhaps there is a problem with the approach your using to add the files to your iTunes library? There are a few ways to do this, but perhaps the easiest is to use the File > Add to Library menu.

  • Why Writing a File Cost Such a Memory?

    As a test case I tried the next code on my Mac OS X 10.2.3:
    import java.io.*;
    public class WriteZero {          
    public static void main(String[] args) throws Exception{
    java.io.BufferedOutputStream bs = new java.io.BufferedOutputStream(new FileOutputStream("zeros"));
    int mb=1024*1024;
    int mb500 = mb*500;
    try{
      int k=0;
        while((1==1)){
             bs.write(0x0);
             k++;
           if(k%mb==0){
                Thread.sleep(200);//inessential but enables to work in the back ground
                System.gc();// tries to free memory
            }else if(k>mb500) break;//50mb
    }catch(InterruptedException ie){;
    }catch(java.lang.Throwable th){
        System.err.println(th.toString());
    }finally{
         if(bs!=null) bs.close();
    }This simply writes the size of 500MB of the characters '\u0000.' In the course of writing the free RAM decreases monotonously until it reaches around 6 MB of free memory, recording 919 pageouts. The number 919 of pageouts is very rare on my OS, which has 512MB of RAM. What causes this consumption of memory in simple writing a file?

    Something up with either your VM or VM configuration maybe? I just copied and pasted your code, and it's cruising at just under 6MB - which means maybe 2 MB allocated in heap space.
    Verbose:gc indicates that full garbage collections are being done about every second, but that the heap is a stable size.
    Check your max and min heap-sizes, and also try it on a different VM if you can - there's no reason for this program to blow up memory that way. Also should be no need to call GC at all.

  • "This wav file could not be read"

    I have a DL project with 30 timelines. It has been playing and burning fine for the last 4 months--I've just been tweaking menus and replacing some of the assets with newer encodes.
    Yesterday when I attempted to preview I got the message "this wav file could not be read." There are 35 .wav files in the project. This morning I did a "save as" on the project and systematically removed the wav files from the timelines two at a time until I found what was causing the problem (naturally it was the very last one). This was not a wav file that had been replaced in recent months, it has been in the project from the beginning
    Then I opened the original project and deleted only that .wav file from the timeline and the project previewed fine. So I deleted the .wav file from the project and then imported the same .wav file again, placed it in the timeline and the project works fine.
    Can someone tell me what would cause this behavior? Is there some sort of corruption in the asset and I'm going to have the same problem again? Or is it more likely some corruption in the project, and if so what could it be or what should I do about it?

    I have just replaced all WAV files in the project with ac3 files("reaplace asset" command).
    Still, when building DVD, god damned Encore CS4 mumbles "this WAV file could not be read."
    WTF?
    I looked through several topics on the Adobe forums where people ask the same question. There is no one a single answer! So, I'm back to Sonic Scenarist!
    No time for "dancing with a tambourine," around a blunt Adobe.
    And by the way, when Encore telling "This wav file could not be read" -- WHY it's not telling me WHICH ONE file? Do I have to guess or ask a fortune-teller?

  • Transter of wav files, converted to mp3, to iPod

    I have transfered vinyl to my computer, as a wav file. I have encoded this wav file to mp3 format. I attempt to transfer to iPod mini, and the message reads:
    "the target can not handle this type of document"
    What does this mean? Can iPod accept such converted files?
    What am I doing wrong?
    thanks
    david

    the file does not play in iTunes. I click 'file', 'send' to iPod. It appears as though a file is being sent, yet at the completion of such, the screen reads:
    "the target can not handle this type of document"
    Any ideas?
    thanks
    david

Maybe you are looking for

  • Moving avergae price updation in material master for project stock

    Dear All, My query is pertaining to updation of MAP( moving average price) for project specific procurement ( as project stock) for valuated project stock. As  definelty the cost of procurement gets consumed by project .but i want to know does the pr

  • Can a .prel file be imported to Premiere Elements 9

    I have several movies that have been created with past versions of Elements. I do not have the DVDs. Is there a way I can import and edit these .prel files?

  • Java 7 Update 51 is not working with Discoverer

    We are unable to get Discoverer Plus to load with Java 7 Update 51, does anybody know of a fix for this? We are on Discoverer Plus Version 11.1.1.6.0 Thanks

  • Flash plugin doesn't work

    I've installed the latest Flash plugin (11.3.300.214). Still, all videos appear as blank in all Firefox versions, although they work properly with Chrome. What might be the reason? I have only AdBlock addon, and it cannot be the cause of this flaw.

  • Why is the podcast for our show only streaming/downloading half of episode?

    Our podcasts on occasion have been having an issue when uploading/linking to the store.  On a weekly basis we upload video and audio podcasts through the linking of our RSS feed (Feedburner) and also utilizing the Blubrry Powerpress plugin.  On our s