How to stream .mp3 file?

Hi All,
I have success full installation of Flash media server 4 in my linux machine.
I am in need of stream the .mp3 file over network.
Please any help me on this.
Thanks,
Hariharan V.

There are two ways to access the mp3 files over http - progressive download and http streaming.
For the first, all you need to do is open a flash client that supports http playback. For this, copy the mp3 file and place inside the vod folder inside webroot. To access the file over http, give the url as -
http://server-name/vod/sample.mp3.
A more efficient way of doing media streaming is to use Http Dynamic Streaming -
http://help.adobe.com/en_US/HTTPStreaming/1.0/Using/WS8d6ed60bd880807c48597a9e1265edd6cc0- 8000.html  and
http://help.adobe.com/en_US/HTTPStreaming/1.0/Using/WS9463dbe8dbe45c4c-c126f3b1260533756d- 7ffc.html
But f4fpackager does not supports packaging of mp3 files directly. It can package flv and f4v codec files. Though you can package audio only files that contain mp3 codecs but not directly with mp3 extensions.
Go through these tutorials for details about the second method.
Let me know if you need some help understanding it.
Regards,
Apoorva.

Similar Messages

  • How to change music in uc320?how to upload mp3 file into uc320?

    Dear all,
    how to change music in uc320?only one music in uc320?
    how to upload mp3 file into uc320?
    Thanks
    John

    I am evaluating the UC320 for a phone system replacement for our 100 locations.
    Allowing us to add an MP3 file to replace the current one would be a HUGE cost savings.
    This will help us cut cost when compared to the old system.
    Currently we are spending $180 on an external mp3 player for an mp3 that’s 3MB in size.
    If this system works out we are then going to recommend it to our 1800 franchisees.

  • How to transfer mp3 files to iPhone

    I am wondering if someone can explain how to transfer mp3 files to my iPhone 5. I currently use iTunes Match and these files won't transfer through iTunes Match. Thanks for any help that can be provided.

    Synchronize your iPhone: Sync your iPhone, iPad, and iPod with iTunes using USB - Apple Support
    Or purchase iTunes Match.
    Make sure you add the MP3 files to your iTunes library: Add music to iTunes - Apple Support

  • How to transfer mp3 files to 4s from a PC without itunes?

    How to transfer mp3 files to 4s from a PC without itunes?

    No can do. Closest you can do is to use iCloud and iTunes Match. Otherwise, for mp3 files you will have to import them to iTunes on the computer and then sync them to the phone.

  • How to stream MP3s with embedded images

    When I stream an MP3 file with an embedded image, the first few seconds of the files are clipped.
    I will need to find another server, or a viable workaround.
    What is the best way to work around this?

    I have the same issue described by loris.guignard.
    The problem is not specific to the embedded cover. If I store very large text tags in mp3 (i.e. larger than about 130 kB), the same problems occurs. In addition, if the tags exceed the 130 kB limit, the duration of the song which can be played decreases.
    For my tests I use a 3:26 mp3 (8.25 mB) and the JW Player. The duration of the song piece which can be played varies as follows, depending on the size of the picture stored in the tags :
    - Picture size between 130 kB and approx. 600 kB => the song is played properly until 3:23. The last 3 seconds played (3:20 -> 3:23) are repeated from 3:23 until the end at 3:26. Note that the total duration of the song is correct (3:26).
    - Picture size : 750 kB => the song is played properly until 3:23, then it stops (the total time displayed is 3:26)
    - Picture size : 1.244 MB => same as above, but stops at 3:10 / 3:26
    - Picture size : 1.493 MB => same as above, but stops at 3:03 / 3:26
    - Picture size : 2.348 MB => same as above, but stops at 2:43 / 3:26
    - Picture size : 6.297 MB => same as above, but stops at 0:58 / 3:26
    The tags are ID3v2.3 compliant (by the way ID3v2.3 has no size limitation). The measures are the same when we use ID3v2.4 standard. It seems that the problem lies only in the size tags, not in the ID3 version or the tag content.
    The measurements are the same whatever the buffer length I choose for the client-side player.
    Let me make the following assumption: the end of the played song is evaluated according to offset from the beginning of the mp3 file (rather than from the start of the mp3 music data, i.e. from the end of the tags), modulo the buffer size used for reading the file (which must be 128 kB).
    For example, if we combine a tag picture of 4 MB and a mp3 of 8 MB, we have a 12 MB mp3. Since the tags are stored at the file beginning, when the server-side player reaches the middle of the song (at 4+4 = 8 MB), the reader believes that the reading is complete. But it remains 4 MB to read before the real end.
    Maybe the last seconds can loop or be truncated because of the wrong time adjustment between song duration evaluation and data buffer length. In my example, the mp3 bitrate was 40 kB/s. So if the file buffer size is 128 kB, it read... 3.20 seconds.
    Of course it is only a hypothesis, but I'm really intrigued by this problem.
    Can you please tell we how can we fix this ? Are there any configuration that we can change in the FMS side or maybe a patch ?

  • Save streamed MP3 file?

    Our app includes a music player which streams MP3s from a server. We would like to be able to stream the MP3, and save it to a cache on disk once it has fully downloaded.
    I am using the load() method of the Sound class to stream the MP3 so that playback can begin before the file is fully downloaded. I can listen for the Event.COMPLETE event to indicate that the MP3 has finished downloading, but the Sound class offers no way to access the original file and save it to disk (the extract() method returns uncompressed sound data which is much too large to write to the disk).
    Is there any method to download an MP3 file that will allow us to stream the MP3 file as it is downloading, and save it to disk when the download is complete, without downloading it twice?

    Unless you can find an MP3 encoding library that could take the extract() data and convert it back with minimal effort, I think your only option is to save the mp3 using the File and FileStream classes. One thing you could try is to use a File object to download the file, and while it is downloading, you have the sound object play the data contents of the File object downloading the mp3. I just tried a quick test locally and it worked on my desktop. You will have to try it from an actual server to know how well it can work in that environment, but it is at least worth a shot.
    import flash.filesystem.File;
    import flash.filesystem.FileMode;
    import flash.filesystem.FileStream;
    import flash.events.ProgressEvent;
    import flash.events.Event;
    import flash.media.Sound;
    import flash.net.URLRequest;
    var file:File = File.applicationDirectory.resolvePath("gravity.mp3");
    file.addEventListener(ProgressEvent.PROGRESS, onProgressEvent);
    file.addEventListener(Event.COMPLETE, onFileLoadComplete);
    file.load();
    var sound:Sound;
    function onProgressEvent(e:ProgressEvent):void {
      if (sound == null) {
      file.removeEventListener(ProgressEvent.PROGRESS, onProgressEvent);
      sound = new Sound(new URLRequest(file.url))
      sound.play();
    function onFileLoadComplete(e:Event):void {
      file.removeEventListener(Event.COMPLETE, onFileLoadComplete);
      var saveFile:File = File.desktopDirectory.resolvePath("gravity2.mp3");
      var fs:FileStream = new FileStream();
      fs.open(saveFile, FileMode.WRITE);
      fs.writeBytes(file.data, 0, file.data.length);
      fs.close();
    What this code is doing is creating a File object with, in this case, a path to an MP3 in the same folder as the test FLA I created. This would be a path to your server stored MP3. Then you setup the event listeners for progress and complete. I used progress to know that the file had actually started to be downloaded to then trigger the initialization of my Sound object. Depending on someones network connection and the size of the MP3, it could be a good idea to use progress to know that the file has gotten X percentage done before trying to play the file.
    For testing purposes in my progress event, I just checked to see if the Sound object had been initialized yet, and if it hadn't then set sound equal to a new Sound object with the File.url property for the URLRequest() and then told it to play.
    Once the File object dispatched the complete event to indicate that the download finished, I created a new File object for the purpose of saving it to the filesystem using the FileStream class. Using FileStream to save the file allows for no user interaction to save the MP3.
    There may be better ways to handle my method, but I can't think of any at the moment. As far as I know, the second File object, which I named "saveFile", is required in order to actually save the downloaded MP3 object because Im not too familiar with File manipulation. The only downside I can think of is that you have a copy of the MP3 is memory and would need to null out the File object that loaded the MP3 to free up memory.

  • How To Transfer MP3 Files from HD to IPOD?

    I just got a new 30GB IPOD which I assume is the latest model. It came in a black box and says part number "PA149LL/A", but has no model number on the box.
    The published web documentation for this is WRONG, and hard copy instruction with the unit is NON EXISTENT. I have no idea how to get music from MP3 files on my hard drive onto this thing.
    I went to preferences and set the music file address to the folder which contains all of my MP3 files. I also set it to "manual" mode for music creation. I tried to create a playlist.
    I can not get any way to "find" a music file through the ITunes screen. None of the screen graphics look like what is posted on the apple web site help material.
    FYI: it did dump a ton of these same MP3 files onto the Ipod when I let it go in "automatic mode".... which I wanted to then remove when I realized half the files didn't have valid tags the Ipod could recognize so they were not filed correctly.
    I tried to delete the songs from the Ipod as instructed on the website using: "clear" the playlist, and then command the thing to update the Ipod playlist. My first lesson courtesy the 800 phone help line: it can't do that unless you put it into "manual" mode, contrary to what the web site says.
    Is there any place to go to get accurate operating instructions for THIS model?
    I am not exactly a computer moron. I design PC hardware and power supplies for a living and have three college degrees. This thing needs some basic instructions on how to do a few things..... like load and play music.
    Any advice would be appreciated on how to get this Itunes software to see or access my MP3 files stored in a folder on my desktop. I set the address in the preferences, but that did not help.
    I'm not even sure exactly how or where the "search" files should appear when looking through Itunes?

    Part numbers beginning with P are usually promotion items.
    You can buy a stack of 'em & give to employees, grand openings, etc.
    They are the same as regular retail iPod, just a different model number. http://www.apple.com/ipod/imaging/
    Looks like you have a black, 30GB video iPod.
    Here's a great place to start to learn how to use iTunes and the iPod.
    http://www.apple.com/support/ipod101/
    I went to preferences and set the music file address to the folder which contains all of my MP3 files. I
    That will tell iTunes to use this folder. iTunes does not "watch" this folder to see if anything is added. You have to add it to the library yourself and iTunes will put it in this folder under Artist -> Album.
    If you IMport a file, it will convert it to the format set in teh iTUnes prefs. If you Add a file, it will simply add it to the library in the format it already is.
    To get music into iTunes;
    - insert a CD and select Import.
    - click on iTunes Music Store and purchase songs.
    - go to iTunes menu - File -> Add (Folder or file) to library and select the file/folder.
    - Drag songs onto iTunes.
    To get music onto the iPod;
    - Plug it in.
    Yeah, it really is that simple.
    Easiest way to manage your library is to use iTunes.
    Edit the ID3 tags, add delete songs and put them onto the iPod.

  • How to use mp3 files on a form standard button, instead of wav-files. Need to save space.

    I would like to use mp3 files instead of Wav-files on the standard button, in the forms edit menu. I know it is possible in the interactive menu to add buttons with mp3 sound. But those buttons has not the same options and appearance as the forms buttons. We create learning books with lots of sound files in each PDF, so with wav-files the PDF gets quite heavy in Gb.

    Smokerz – Thanks for the feedback. I managed to get iTunes to find the movie files on my TC by simply dragging the icons of the files on the TC into the Movies folder in iTunes. This immediately made them available for streaming on my Apple TV. Also, I learned with great relief that, despite their large size, dragging icons of my movie files into iTunes did not copy them to the C: drive on my desktop computer. Thus, it looks as if the job is pretty much done. Thanks again for your advice.

  • Best way to stream MP3 files with ColdFusion

    I was looking for a kind of a built in player look in that
    all the user has to do is click and it will start playing within
    the browser. Some of the files are even 48MB long so if I can
    reduce that too that would be good. client goes on conferences and
    plan to record more conferences and we would like to host them on
    the site.
    Any Help?

    Making pod casts:
    http://www.podcastingnews.com/articles/How-to-Podcast.html
    http://www.windowsdevcenter.com/pub/a/windows/2005/04/05/create_podcasts_with_pc.html
    Flash players for MP3s:
    http://wimpyplayer.com
    Jukebox from
    http://swishzone.com
    --Nancy O.
    "Brandon" <[email protected]> wrote
    in message
    news:et99hk$svu$[email protected]..
    > I'm looking for recommendations about the best way to
    publish mp3 files.
    I
    > have a client that is a church that wants their staff to
    be able to upload
    > mp3 files on a weekly basis from a web client and have
    those files
    > automatically be included in a podcast feed as well as
    have a "play"
    option
    > and a "download" option. I know how to setup the front
    end . . . any
    > suggestions on the best way to implement this on the
    back end (such as
    > extensions or services)?
    >
    > --
    > Brandon
    >
    http://www.presentationsdirect.com
    >

  • How to import MP3 files from ITunes

    Hello,
    I am new with Mac and GarageBand (GarageBand'09-5.1)
    How can I import, from my iTunes library, a mp3 files in GarageBand, to use it.
    Thanks for clear answer

    I would suggest by starting with a Loop. When your project is up look at the bottom right of your screen. There are 3 buttons. The one of the far right is a Music note and film frames. Wen you click on it, you should see your entire itunes library. You can search through it or type into the search bar to narrow your search. Click and drag into the project area.

  • How to move mp3 files from NOMAD ZEN JUKEBOX to PC???

    Hello there!
    I have the creative nomad extra jukebox zen 30gb player. I have big trouble to move my mp3 to my pc! Is there any way to do this? I can do it with sync but some of the songs have the same name ( 0,02,03) and even when those songs are in folders,the software ( media source) dont recognize it this way-so it will skip the ones with same name and Ill loose some of the tracks. Is there any other way to move it all? or also to choose only certain mp3 files to be moved other software maybe? thank you very much!

    Part numbers beginning with P are usually promotion items.
    You can buy a stack of 'em & give to employees, grand openings, etc.
    They are the same as regular retail iPod, just a different model number. http://www.apple.com/ipod/imaging/
    Looks like you have a black, 30GB video iPod.
    Here's a great place to start to learn how to use iTunes and the iPod.
    http://www.apple.com/support/ipod101/
    I went to preferences and set the music file address to the folder which contains all of my MP3 files. I
    That will tell iTunes to use this folder. iTunes does not "watch" this folder to see if anything is added. You have to add it to the library yourself and iTunes will put it in this folder under Artist -> Album.
    If you IMport a file, it will convert it to the format set in teh iTUnes prefs. If you Add a file, it will simply add it to the library in the format it already is.
    To get music into iTunes;
    - insert a CD and select Import.
    - click on iTunes Music Store and purchase songs.
    - go to iTunes menu - File -> Add (Folder or file) to library and select the file/folder.
    - Drag songs onto iTunes.
    To get music onto the iPod;
    - Plug it in.
    Yeah, it really is that simple.
    Easiest way to manage your library is to use iTunes.
    Edit the ID3 tags, add delete songs and put them onto the iPod.

  • How to stream local files (music, etc) to tv over home network

    how do I set up Win7 to enable network tv to stream local files from computer?
    This question was solved.
    View Solution.

    Hi,
    You need hardware (equipment) for this work first. What do you have now ? Please check the following articles:
       http://www.popularmechanics.com/technology/how-to/​tips/how-to-stream-media-from-laptop-to-tv-8347637
       http://www.easyfreehdtv.com/streaming-to-tv
    Have funs and good luck.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to stream WMv files

    hallo i just switch from PC and i can not stream WMV files from web sites?any ideas Please!!!

    http://www.macupdate.com/app/mac/17787/flip4mac-wmv-player
    The above link will get you flip4mac. That's a free browser plugin, see if that solves your problem.

  • How to use MP3 file as a clip, not background music

    I have a radio spot as an MP3 file, but when I drag it into the project it automatically thinks I want it as my background music. I actually want it as a clip to play after a commercial.  I have tried saving it out of QT as a movie file but it won't let me import that file in a regular import, it's grayed out. Any help would be appreciated!
    Melissa

    You have to have video clip of some sort in the spot where you wan the sound clip to play. It cannot just be dropped on the timeline. So what you might have to do is put a title down with a black background, drop the MP3 right on top of that title clip  (dead center). Then it will attach as a repositionable sound clip.
    You will also want to convert the MP3 to an AIFF in order to keep iMovie from working too hard to playback the song when you do the final export of your video project. This is a direct copy of the iTunes Help page for AIFF conversions:
    Save a copy of a song in a new file format
    You can convert a song to a different file format (and keep a copy of the original). For example, you can save a copy of a compressed song file such as MP3 or AAC in an uncompressed song format (AIFF or WAV).
    When converting from a compressed to uncompressed file format (for example, from MP3 to AIFF), you shouldn’t notice any reduction in sound quality. However, when converting between compressed formats (for example, MP3 and AAC), you may notice a reduction in the sound quality. For the best results, if you want your music encoded in a different file format, import the music again from the original source using the newencoding format.
    Important:  You can’t convert iTunes Store purchases unless they’re iTunes Plus songs.
    Hide
    To convert a song’s file format:
    Choose iTunes > Preferences, click General, and click Import Settings.
    In the Import Using pop-up menu, choose the format you want to convert songs to, and click OK to save the settings.
    Select one or more songs in your library and choose Advanced > Create Format Version.
    The song in its original format and the newly converted song appear in your library.

  • How to convert .MP3 files into .AAC with iTunes 10.5.2

    Im running a Mac OS X 10.5.8, and my iTunes version is 10.5.2.
    I want to convert .MP3 files into .AAC using iTunes, but no option is given for me. What should I do?

    im not going to change all my songs into AAC, I was experiementing around with making ringtones for my iphone. I can open a song in Garageband, and export it as an AAC file to my itunes, but it is very annoying. I remember older versions of itunes having a "Convert to AAC" option, but i can't find it anymore on this current version of itunes.
    Basically, I want to convert a couple songs into AAC to create ringtones out of them.

Maybe you are looking for

  • "No Wi-Fi" - Grayed Out in Settings - iPhone 3G

    I realize similar topics have been discussed, but I can't pinpoint this to a specific OS update- it's my wife's iPhone, and she didn't even realize it had stopped working. The option is grayed out in the settings, and no combination of resetting the

  • Reg: Workitem forwarding issue in SC workflow to a org unit

    Hi,      I have a problem in Shopping cart workflow. When I try to forward the work item, the system is allowing me to forward it to only one person.      I have two options. Please help me to achieve any of the two options. Option1 : To forward it t

  • Is any Logic 8 (Studio) user able to open STP with audio units plug-ins?

    All of my 3rd party audio units plug-ins work with Logic 8: UAD, Powercore, PSP, NomadFactory, and RND. MainStage and WaveBurner open without any problems. Soundtrack Pro will only open if all of my AU plug-ins are removed to a "Components (Disabled)

  • What's the best personal finance software for mac?

    Any recommendations for personal finance tracking/reporting software? I've used Quicken and Bento but wonder if there isn't some easier way to keep track of credit cards, cash, income, checks, etc. Thanks.

  • Running reports in 10g

    I have created a web based and a paper report using the report wizard(forms 10g)....now i want to run this web based report by providing a button on the form.....can any1 plz help me with this..