Live stream for fm radio

I cannot download adobe for live listening on the I pad2 apple does not support it any ideas for listening to live radio?

Try one of the radio apps from the app store - flash is not supported and probably never will be (http://www.apple.com/hotnews/thoughts-on-flash/)
e.g. TuneIn radio : http://itunes.apple.com/us/app/tunein-radio/id418987775?mt=8
'pro' version without ads and with recording option : http://itunes.apple.com/us/app/tunein-radio/id319295332?mt=8

Similar Messages

  • Doubt regarding HTTP Live Streaming for windows phone 8.1 silverlight app?

    Hi,
    I am developing a Windows phone 8.1 silverlight app.
    I want to add live streaming youtube channel , thats why I used  https://phonesm.codeplex.com/ this link as a reference , and I am able to play the links given in the samples, but I am unable to play my link https://www.youtube.com/watch?v=p2GF-QQS6n0
    I am getting 3108 unable to play media error with my link,
    My question Is there any need of streaming server ?
    If yes can anyone help how to  create the streaming server.
    Thanks....
    Suresh.M

    Hi Suresh.M
    As I can see a similar question on the Windows Phone Streaming Media discussion:
    https://phonesm.codeplex.com/discussions/545737
    You may need check into the call stack and find out what is the root cause, for instance if there any chance that your phone cannot reach to the video address, and did you enable some network capabilities, etc.
    --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.

  • How to integrate flash media server 4.0 live streaming for iOS devices ?

    Hi All,
    I have website which has live streaming module its working fine, same module i want to integrate for iOS devices. For live video streaming we are using FMS 4.0. So please let me know how we can integrate this for iOS devices using flash media server 4.0.
    Thanks in Adavnce
    Mohammad Sharique

    You need to place the crossdomain.xml in the webroot folder. Create a text file in the webroot folder using notepad, and call it crossdomain.xml. The text below will give you a wide open access policy, which is fine for testing.
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
              <allow-access-from domain="*" />
    </cross-domain-policy>
    For debugging HTTP streaming I recommend you get hold of something like Charles or Fiddler. These will greatly assist in pinpointing any issues.

  • Publishing multi-bitrate live streams for iOS

    I'm having difficulties publishing multi-bitrate live streams that can be viewed on an iPad/iPhone.
    I'm running Flash Media Server 4.5, and have carefully followed Adobe's Tutorial on streaming live media (http) using hls found here:  http://help.adobe.com/en_US/flashmediaserver/devguide/WSd391de4d9c7bd609-52e437a812a3725df a0-8000.html#WS0432746db30523c21e63e3d12e8340f669-8000
    After completing the above tutorial, the video can be seen just fine on my desktop computer via the flash plug-in, but it's not working in iOS...
    When I go to what I believe to be the proper URL, (http://myflashmediaserver.net/myevent.m3u8),  I get an error message on my iPhone and iPad saying "The operation could not be completed".
    I have created two set-level manifest files (one .f4m and one .m3u8) for the live stream using the Set Level F4M/M3U8 File Generator and saved them to the WebRoot directory, but alas, no love.
    Any help would be greatly appreciated!
    Mike

    I just finished going through the short and sweet tutorial on the Adobe website "Capture, encode and stream live multi-bitrate video over HTTP to Flash and iOS", which confirmed that I seem to be doing everything right, but I'm still getting the "The operation could not be completed" error message on both iPad and iPhone.
    Grasping at straws, I'm wondering if it could have something to do with some of the "hacks" I was asked to make in the other tutorials, (which, oddly enough, weren't mentioned in the tutorial mentioned above).  Specifically:
         • Edit FMLE config file on the Mac I'm encoding the live video on (change <streamsynchronization> from false to true)
         • Delete/Rename the "manifest.xml" file in applications/livepkgr/events/_definst_/liveevent directory
         • Edit "event.xml" in applications/livepkgr/events/_definst_/liveevent (change <segmentduration> from 40,000 to 16,000)
    However, I've tried running this with the above hacks as well as in their non-hacked state and am still not seeing success.
    Please advise.  Thanks!

  • HTTP Live Streaming for Apple IOS devices

    HI,
    We have installed FMS 4.5, including Apache 2.2, on a 64-bit Windows 2008 R2 server following the instructions given in the video that can be viewed here:
    http://www.adobe.com/devnet/flashmediaserver/articles/install-verify.html
    Browsing to the test page for the server works fine for HTTP Dynamic Streaming and RTMP Dynamic Streaming samples.  However, when we try to use the HTTP Live streaming samples on the test web page on an iPad via AnyConnect, we only see a blank page with a small Abobe Flash icon in the top left hand corner which is basically saying that Flash has been detected on the page and is not supported by the iPad.
    The above video shows HLS working on an iPad with no additional installation steps.  Can anyone hep?

    Found the answer
    The home page on the Adobe server has an error in its javascript.
    if (uagent.search('iphone') != -1 || uagent.search('ipad') != -1) {
    should be
    if (uagent.search('iPhone') != -1 || uagent.search('iPad') != -1) {
    ....capital P's.

  • Settings of  live stream for FMS 4.5 on Amazon

    Hi. We are cureently have an issue with setting up an outcoming stream for a livechat. We are using FMS 4.5 on Amazon and OSMF player. When streaming from FMLE everything is working fine. But when streaming from  as3  we receive  buffering status of OSMF player and  wornings in amazon server:
    Warning from libf4f.so: [Utils] [1cbec29179f3616a6b284fc9ecc029d8] [1cbec29179f3616a6b284fc9ecc029d8] FMS F4F recording received timestamps with absolute time flowing backward lastTime held was 2109435 and the most recent arrived was 2107876.  This message is being ignored - recording will continue.
    Stream settings are:
    _streamCam = Camera.getCamera();
    _streamCam.setMode (640,480,30,true);
    _streamCam.setQuality (1200 * 1024, 90);
    _streamCam.setKeyFrameInterval(4);
    var pH264Settings:H264VideoStreamSettings = new H264VideoStreamSettings();
    pH264Settings.setProfileLevel(H264Profile.BASELINE, H264Level.LEVEL_3_1);
    pH264Settings.setQuality(_streamCam.bandwidth,_streamCam.quality);
    Also Adobe resommends to enable streamsynchronization like it is done for FMLE:
    http://help.adobe.com/en_US/flashmediaserver/devguide/WSd391de4d9c7bd609-52e437a812a3725df a0-8000.html
    <flashmedialiveencoder_config>
        <mbrconfig>
            <streamsynchronization>
                <!-- "true" to enable this feature, "false" to disable.                    -->
                <enable>true</enable>
    Is it possible to do the same for AS3 Netstream? If so, please tell the name of  a proppety.
    Please kindly, advise.

    Hi. We are cureently have an issue with setting up an outcoming stream for a livechat. We are using FMS 4.5 on Amazon and OSMF player. When streaming from FMLE everything is working fine. But when streaming from  as3  we receive  buffering status of OSMF player and  wornings in amazon server:
    Warning from libf4f.so: [Utils] [1cbec29179f3616a6b284fc9ecc029d8] [1cbec29179f3616a6b284fc9ecc029d8] FMS F4F recording received timestamps with absolute time flowing backward lastTime held was 2109435 and the most recent arrived was 2107876.  This message is being ignored - recording will continue.
    Stream settings are:
    _streamCam = Camera.getCamera();
    _streamCam.setMode (640,480,30,true);
    _streamCam.setQuality (1200 * 1024, 90);
    _streamCam.setKeyFrameInterval(4);
    var pH264Settings:H264VideoStreamSettings = new H264VideoStreamSettings();
    pH264Settings.setProfileLevel(H264Profile.BASELINE, H264Level.LEVEL_3_1);
    pH264Settings.setQuality(_streamCam.bandwidth,_streamCam.quality);
    Also Adobe resommends to enable streamsynchronization like it is done for FMLE:
    http://help.adobe.com/en_US/flashmediaserver/devguide/WSd391de4d9c7bd609-52e437a812a3725df a0-8000.html
    <flashmedialiveencoder_config>
        <mbrconfig>
            <streamsynchronization>
                <!-- "true" to enable this feature, "false" to disable.                    -->
                <enable>true</enable>
    Is it possible to do the same for AS3 Netstream? If so, please tell the name of  a proppety.
    Please kindly, advise.

  • Online Radio live streaming

    hi
    I've come across an app, paiSARA in android. I want to develop a similar app for Windows Phone. I think AudioStreamer can be used for playing the streams but my main concern is how to get urls of live streaming of various radio stations. If anyone can help
    on this.

    Hello,
    >>but my main concern is how to get urls of live streaming of various radio stations.
    You will need to use your favor search engine to find more radio stations. This forum is to discuss windows phone development, it’s out of our support range.
    Please feel free to post here if you have any dev problem.
    Regards,
    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.

  • Internet radio live stream

    hello i'm trying to get a live radio stream for wabc radio, I'm getting an error saying the player doesn't allow the stream, i have windows media 9 for mac, and flip 4 mac, and i'm still unable to get the stream. My imac has no problem getting the stream, but my macbook pro is unable to connect, can someone assist thank you

    on the macbook pro I downloaded windows media player 9 for mac. On my imac I just go to the station click on their listen button and it streams fine, but not on the macbook. the settings on both players are the same.

  • Authentication for pushing live streams to FMS3

    Hi there, I have setup FMS3 and use it to test my live
    streaming. But I was wondering is it possible on the FMS to setup
    an application for live stream, so that it checks for
    authentication before accepting the live stream for broadcast? What
    I mean is if I create a live application on FMS, anyone who knows
    this application name would be able to push the stream to FMS. Can
    FMS control this with a username and password? Thank you.

    The video clip at NAB is a sneakpeak into the upcoming release of the FMS which supports streaming to iPad and iPhone, and its coming up very soon.
    Streaming to android and other devices is already supported on the released version of FMS4 technically, so you can give that a try, and with this upcoming release, you can be sure that all the mobile devices would run high performing videos.
    i know i have not answered what you asked for, exactly, but be assured it will be very soon. We hope to meet your expecations.
    Thank you !

  • Quicktime live streams stop and then repeat

    Hi, I'm using firefox 2.0.0.11 and Quicktime 7.3.0
    I'm trying to listen to a live stream from a radio station that is a .wax live stream. Everything works fine, however, when the playback marker reaches the right side of the quicktime screen, the stream stops and it returns to the beginning and repeats what it's just played. I'd really like to listen to the whole stream until I decide to stop it. Can anyone help?
    Simon

    The same thing happened to me, EXCEPT, for me, I realized that if I NEVER touch the controller during the live stream it doesn't stop and loop. It keeps going until the feed ends.
    For me, it ONLY stops and loops if I try to use the controller while viewing the live stream.
    This is certainly not a fix, but a possible temporary solution for some, while Apple works on fixing this BUG.

  • Codec used in Live streaming

    Dear all
    I work with live streaming for a few weeks, using flash.media.Camera and flash.net.NetStream class. I have not found any place where the codec is specified, that is used to encode the live stream.
    Anyone knows which codec is used and if there is a possiblitiy to use H264 codec for live streaming? I found that live streaming with h.264 codec seems to be possible with the flashmedia encoder (http://www.adobe.com/products/flashmediaserver/flashmediaencoder/). Is this possible with flash player alone?
    Thanks for your help,
    Marc

    After doing some research I found this thread http://balazs.sebesteny.com/implement-h264-live-streaming-with-adobe-air-20/. It uses FMLE but other open source tools perhaps would be better because of licensing issues.
    It would be really nice if encoding with h264 would be enabled with flash player. Now that decoding works with Hardware acceleration, perhaps encoding will come as well. Any plans exist?
    Thanks,
    Marc

  • Using http live streaming

    Hello.  For a project I am working on, I need to design a secure streaming system for audio files such that they can be streamed but not downloaded (due to copy right issues).  I was looking into http live streaming as a possible solution.  However, I am new to developing web applications and the like and was hoping for some help, maybe links to sample code, how to use http live streaming for my server/in my code, etc.  In particular, I was hopping to make the streaming available to firefox, safari, and apple mobile devices.  I am hoping to develop this using html 5.
    Thanks.

    I have same issue with 64bit Safari 5.1 and 10.6.8.
    Video plays if not protected. If Protected says "Loading" and never plays.
    With 32bit Safari looks the same but...
    There is a login window behind the Safari window. If I find it and login, mp4 plays.
    Is quite annoying. Any fixes?

  • HP 15-f111DX live streaming sports is choppy, hangs

    Brand new laptop- Live streaming is choppy for sports. Netflix and downloaded videos are fine but MSNBC and ESPN3 are choppy. ESPN site recommends 2.4 GHZ- This computer is 2.00. Is there anything I can do about that? On the other hand the MSNBC site suggests 500MHz and is also choppy regardless. I always clear the cache and have nothing but the essentials running in the background. Also dumped the bloatware.
    Sytem:
    AMD A8-6410APU 2.00 GHz 8 GB RAM  64 bit 8.1 
    No problems ever with my other computer(2008 HP Pavillion). I use cable highspeed internet.

    Hi @Ann-Field ,
    Welcome to the HP Forums!
    It is a dynamite  place to find answers and tips!
    For you to have the best experience in the HP forum I would like to direct your attention to the HP Forums Guide Learn How to Post and More.
    I understand that when you try to the live streaming for sports is choppy..
    Here is a link to Resolving Video and Graphics Issues that should help you overcome this difficulty.
    Good Luck!
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • How can I record the audio for a radio station I'm streaming LIVE?

    How can I record the audio for a radio station I'm streaming LIVE?
    I don't want to record the sound in my room, but only on the sound I'm streaming

    Grane Duke wrote:
    To reduce or make the room noise as low as possible (to get the best audio recording), I recommended the OP to try to record the radio live streaming audio in a silent room. Does it makes any sense to you....??
    No. Preferably one records using direct input.
    Your comment  It doen’t matter whether he/she is recording the audio from the macbook or any external speakers because if the room is noisy than obviously the ambient room noise will be recorded.  is pretty silly really. Think about what you just wrote.
    And you do have a bad habbit in your posts of over using ???????? & !!!!!!!!!!!!!
    One is enough.
    Cheers
    Pete

  • 10.2 screws up my desktop radio live streaming icons

    Installed 10.2 this morning.
    Previously I had radio live streaming .pls icons on my desktop which would immediately open the live streaming feed feed for the stations. After I installed 10.2 my desktop icons for the radio stations were converted to .m3u and open in Excel, but don't stream.
    I have tried dragging the stations from my music playlist to the desktop (as I originally did) but that doesn't work. Tried altering the desktop icons back to a .pls file but that doesn't work. Tried having the icons on the desktop open in iTunes by default but that takes me to an http site and doesn't work.
    Double clicking on the radio feeds in iTunes>Music opens the radio feed perfectly fine. How do I get that function to open a live stream feed from my desktop?
    What I want to do is create an alias icon on my desktop which will open a live streaming site in my Music folder in iTunes.
    Any ideas?

    This still doesn't solve the problem of iTunes not opening PLS and M3U files downloaded by Safari.
    This started happening on one of my machines after installing the update(s), but I upgraded another machine and it behaves properly. Can't figure out what happened, other than on the first machine having the problems, I didn't upgrade everything at the same time.
    Tried reinstalling iTunes again, and also Safari again, still doesn't work.
    Created a new user on the same machine, and it wants to open Boxee whenever a .pls is accessed. Removed Boxee, it wants to launch VLC. Removed VLC, then it launches TextEdit.
    Too bad that "Use iTunes for Internet Playback" button is gone.

Maybe you are looking for

  • Leaving Action Date not refleting properly

    Dear Expert, We have implementing Germany Payroll for our client. We have created the actions like - Deputation Initiation, End of Deputation which is similar to Hiring & Leaving. While executing End of Deputation action, system is not taking the act

  • Call Java Method from BPM Process

    Hi,   I have defined a java class with set of methods , and I want to know if there is any way to call those methods from a BPM process.. Thanks in Advance,, Best Regards,, Ola Essa..

  • Earphone - one ear no sound

    Hi, My original iphone earphones (which came along with the phone) today suddenly lost voice on the left side, so when I listen to music all sound come from the right ear only. Wonder what's happened to my earphone? I've used it for 10 days only...do

  • RollBack Transaction using UDO

    Hi I want to perform some validation on MY UDO form. But problem is if i entered some wrong value into our form then what happen, it shows the alert and saved data also. <b>Is it possible to stop this transaction</b> , if yes how???. Plz suggest

  • Screen variant for J1IEX Tcode

    Hi, Can any one give the screen variant number for j1iex / migo - capture and post excise invoice column. as well, tellm how to find the screen variant by tcode.. i know in OLMRLIST but it needs sc. variatnt nbr..