How can I convert alaw into alaw_rtp???

Hi everybody:
I need to convert audio in alaw format into alaw_rtp format. I'm using JMF but it doesn't work with alaw_rtp. Any idea??
Thank's!
Edited by: pedrorp on Apr 1, 2009 12:14 AM

I need to convert audio in alaw format into alaw_rtp format. I'm using JMF but it doesn't work with alaw_rtp. Any idea??Well, you could write your own depacketizer for it...like was suggested / code was provided for / instructions for use were given to...on the ancient thread you dug up and posted on, but apparently didn't read.
Alternately, you could use FMJ as a JMF replacement as JMF apparently does ALAW-RTP...as was also instructed on the ancient thread you dug up, but apparently didn't read.
So yeah, my overall thought is... had you read the old thread rather than posting an SOS message at the bottom of it, your problem would already be solved.

Similar Messages

  • I have 13 dollars left on an apple store gift card, how can I convert this into money for my iTunes account?

    I have 13 dollars left on an apple store gift card, how can I convert this into money for my iTunes account?

    You can't.

  • How can I convert imovie into photo's

    How can I convert imovie into photo's

    For iMovie 11, you will need to download a free tool called MPEG Streamclip from Squared 5. (Google it). This is a very handy tool to have if you make videos.
    In iMovie, select the clip that contains the frame that you want. Right-click on the clip and select Reveal in Finder.
    You should see the clip highlighted in the Finder. Drag this clip into MPEG Streamclip. Move the playhead to the frame you want. Then click FILE/EXPORT FRAME. You can choose JPEG, TIFF, or PNG.

  • How can I convert .fla into .PSD?

    I have a .PSD file that is a significant part of the website I am working on and I can only edit it properly with Adobe Flash Professional CS5 (out of the programs I have, GIMP doesn't work how I need it to). The problem is, I can easily open a .PSD file with Adobe Flash CS5 but I cannot SAVE it as a .PSD, it only allows me to save it as a .fla or something else that is an uncompressed .fla but I forget it's name. Neither of these work for what I need so how can I SAVE it as a .PSD or CONVERT it into a .PSD? Any help is greatly appreciated. Thanks!

    I`m trying to understand why you would need to use psd file on a website. A psd file can`t be displayed in a browser.
    The usual way is to use a psd file more as a sort of archive for multiple images (for example all buttons on a website) and then to webexport the photoshop layers as slices or separate png/jpg files?
    Anyway, you won`t be able to skip photoshop itself to save to a photoshop file.
    Here you can download a trial that willl let you work 30 days on the psd-side:
    http://www.adobe.com/downloads/

  • How can i convert image into pdf  file

    Hi Friends,
    I want to convert image file(i.e. jpeg,bmp,gif) into pdf file using java apis OR is there any tool which can convert it & which we can integrate into our java application
    Thanks in adva.

    Is there any solution to this case.....?

  • How can I convert mp3 into an aiff for Final Cut?

    I need to to convert a mp3 into a aiff to use in final cut pro. Could do it easy in past itunes version. Don't see the preference option in itunes 9.0.1. Am I missing something? Any advice?

    Name
    Source
    Target
    Audio Codec
    pcm_s16le
    pcm_s16le
    Audio SampleRate(hz)
    48000
    44100
    Audio BitRate(bps)
    1536000
    352800
    Audio Channels
    Stereo
    Stereo
    Video Codec
    dvvideo
    Apple ProRes 422
    Video Size(pix)
    720*480
    1920*1080
    Video BitRate(kbps)
    24417
    18000
    Video FrameRate(fps)
    29.97
    23.976
    File Size
    7.506GB
    Free disk space:15.969GB
    This is what appears when I use the brorsoft video converter. Maybe I don,t use it correctly, but the result is not good...

  • How can I convert characters into ascii code numbers ??

    Read the characters or String from keyboard input then I want the sum of the ascii code of the String or the characters. Please help ....
    Han

    Read the characters or String from keyboard input
    put then I want the sum of the ascii code of the
    String or the characters. Please help ....
    HanThe keyboard input part is a little more coding envolved. Here is a sample of what can be done if
    you know what to implement. It needs three classes
    from the java.io package. Well, here is the complete
    source code for the 'keyboard input' and a driver
    class to test it.
    //package consoleclass;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.IOException;
    class Driver
         public static void main ( String[] args)
              System.out.println("Enter a number");
              int number = MyInput.readInt();
              System.out.println("number entered "+ number);
              System.out.println("Enter another number");
              number = MyInput.readInt();
              System.out.println("number entered "+ number);
    class MyInput
      /**Read a string from the keyboard*/
      public static String readString()
         BufferedReader br
           = new BufferedReader(new InputStreamReader(System.in), 1);
         // Declare and initialize the string
         String string = " ";
         // Get the string from the keyboard
         try
           string = br.readLine();
         catch (IOException ex)
           System.out.println(ex);
         // Return the string obtained from the keyboard
         return string;
      /**Read an int value from the keyboard*/
      public static int readInt()
         return Integer.parseInt(readString());
      /**Read a double value from the keyboard*/
      public static double readDouble()
         return Double.parseDouble(readString());
    }

  • How can I convert a String into an int?

    I need to use command-line args. So I enter "java Main 123" and I want to use 123 not as a String but as an int.
    How can I convert it into an int?
    Thank You!!
    Sprocket

    Example method (you don't need to use a method unless you do this a lot)
    private int stringTOInt (String aString)
    int result = 0;
    try
    result = Integer.parseString(aString);
    catch (Exception ex)
    System.out.println ("Failed to convert string " + aString + " to int.");
    return result;
    }

  • How can i convert this data(00000000) into date format(yyyy-MM-dd)

    Hi,
    i am using this method to convert date format from string.
    public static string FormatDate(string inputDate, string inputFormat)
                System.DateTime date = DateTime.ParseExact(inputDate, inputFormat, null);
                string datepresent = DateTime.Now.Date.ToString("yyyy-MM-dd");
                return datepresent;
    its working properly,
    but when input data is like 00000000 i am getting error this is not valid.
    how can i convert this into date format any help..!

    Have you tried the above code:
    I can see it is working with both Date and DateTime destination nodes.
    Map:
    Functoid Parameters:
    Functoid Script:
    public static string FormatDate(string inputDate, string inputFormat)
    string datepresent;
    if (inputDate == "00000000")
    datepresent = "0000-00-00";
    else
    System.DateTime date = DateTime.ParseExact(inputDate, inputFormat, null);
    datepresent = date.ToString("yyyy-MM-dd");
    return datepresent;
    Input:
    <ns0:InputDateString xmlns:ns0="http://DateFormat.SourceSchema">
    <DateString>00000000</DateString>
    </ns0:InputDateString>
    Output:
    <ns0:OutputDate xmlns:ns0="http://DateFormat.DestinationSchema">
    <Date>0000-00-00</Date>
    </ns0:OutputDate>
    If this answers your question please mark as answer. If this post is helpful, please vote as helpful.

  • How can I convert scanned docs into reconizable text?

    I have a very large PDF file of scanned documents the content of which is mostly text. How can I convert this into recognizable text so I could do a word search that would reveal results like a web search (speed wise)?

    Can the OCR apps convert preexisting PDF files on
    your system to text or do you have to scan directly
    into the OCR program at the time you do the original
    scan?
    You don't have to scan again. OCR apps can read from graphics files. If the OCR you pick can't use PDF, you can use Preview, or another application (e.g. Graphics Converter), to convert to a file format that the OCR can handle. All OCR apps should be able to handle TIFF. OmniPage Pro X can read both TIFF and PDF, but I wouldn't recommend it. It is overpriced, has no support, and is tricky to install on any OSX more recent than 10.1

  • How can we convert .mov ( implemented by quicktime APi)  to .WAV file

    Hi,
    How can we convert one .MOV audio file (generated by quicktime API) to .WAV audio file ( need LINER - encoding format).
    Here I dont know the encoding format of .MOV audio input file.
    regards,
    Rams

    mfrasyid1 wrote:
    I wonder why this happens? The "unable to handle.." really does come out twice. Is it because the inputfile.mov which I wanna convert comes from the merging oftwo wave files? If so, then how can I convert this into single wave file? Thank you.That is a weird message, but yes, the .mov file probably stored the 2 original WAV files as 2 tracks of data, rather than 1 track. So whenever it's trying to transcode to a WAV file, it fails to transcode both tracks.
    As for fixing it... I dunno. I know that JavaSound can mix two WAV files at the sample-level, so it actually mixes the sound instead of adding 2 tracks to a file...but I don't know why that's giving you those error messages, unless perhaps it's trying to transcode the video track into an audio track (perhaps the code isn't smart enough to handle transcoding a video file into an audio file? You'd have to check the code to see if that's the case...)

  • How can I convert an array off byte into an Object ?

    Hi folks...
    I�m developing an application that comunicates a PDA and a computer via Wi-Fi. I�m using a DataStream ( Input and Output ) to receive / send information from / to the computer. Most off the data received from him is in the byte[] type...
    How can I convert an array off byte ( byte[] ) into an Object using MIDP 2.0 / CLDC 1.1 ?
    I found on the web 2 functions that made this... but it uses a ObjectOutputStream and ObjectInputStream classes that is not provided by the J2ME plataform...
    How can I do this ?
    Waiting answers
    Rodrigo Kerkhoff

    There are no ObjectOutputStream and ObjectInputStream classes in CLDC. You must know what you are writing to and reading from the DataStream. You should write the primitives like int, String to the DataOutputstream at one end and read those in exactly the same sequence at the outher end using readInt(), readUTF() methods.

  • How can I convert the ringtone (m4r file) I made into an mp3 file on itunes?

    How can I convert the ringtone (m4r file) that I made into an mp3 file on iTunes? I want to put it on a CD, but I can't figure out how to convert it. I didn't buy it, I made it by converting a YouTube video into an mp3 (I wanted to get the little song in the video for a ringtone.) I'm not sure what to do. 

    Hello ed2345,
    Thanks for the help, but this is not the problem.
    It's hard to describe the problem, but I'll try it again, this time with pictures.
    I was left with the following folders in the iTunes Downloads folder.
    http://www.picfront.org/d/7yb3
    These TMP Folders have a download.m4a and a Info.plist file.
    After moving the audio files in iTunes a bit I get this.
    http://www.picfront.org/d/7yb2
    As you can see no other Information for the download.m4a than the length.
    That's how the .m4p file looks like
    http://www.picfront.org/d/7yb1
    And this is how the same .m4a file currently looks
    http://www.picfront.org/d/7yb0
    Like I said, I could edit all these download.m4a files by myself but that would leave some information out.
    Note: Sorry, I hope the links do not spam you with annoying ads. I don't get any but I was told that there can be some annoying one.

  • How can i convert 3d movie into 2d to watch it in mac

    i have a movie with mkv file playable on vlc how can i convert the movie into 2d

    There are now a bunch of them out there. Do a Google search for "mac 3D conversion" They tend to be around $35. I have been using iSkysoft products, which have been fairly easy to use. They have a "iMedia Converter Deluxe for Mac" that besides the 3D to 2D conversion, will also convert video to 70+ formats, has a 1-Click Video Downloader, and a single click Rip DVD and Burn to DVDs feature. Also claims to be "Ultrafast" all for the same price others apps are that only do the conversion.

  • How can i convert JMS TextMessage into a String

    Please tell me,How can i convert A JMS TextMessage into a String

    http://java.sun.com/javaee/5/docs/api/javax/jms/TextMessage.html#getText()

Maybe you are looking for