Streaming audio / .pls files?

I am trying to listen to KCDX's streaming audio feed.
It takes me to a link to a .pls file. When I click the link it says "Safari cannot download the file."
Any advice? Here's the link:
www.kcdx.com/m/
thanks....

Hello, Welcome to Apple Discussions.
PLS is a computer file format that stores multimedia playlists. It is a more expressive format than basic M3U, as it can store (cache) information on the song title and length — extended M3U supports this, too. With PLS version 2, playlists also include a PLS version declaration.
To play these files you need a media player on your operating system that is able to play these files. One of these media players is iTunes.
If you wish iTunes to handle this there is a couple ways
1. Obtain the URL to the file you are clicking on, Typically if you right click on it and click copy link it will copy the file link location.
Once you have done this launch iTunes - Click Advanced - Open Audio Stream - Paste the link you copied. The link should end in .pls iTunes will now play this file for you.
2. If you happen to be able to save the file, Simply launch iTunes, Click on File - Open File - browse for the .pls file you saved and open
3. Launch iTunes - Preferences - Advanced - Use iTunes for internet playback Press Set. Now go to the website click the link and it will auto launch in iTunes.
http://www.apple.com/itunes/features/#radio

Similar Messages

  • Streaming audio file over the network w JMF. How to know when the file end

    Hi
    I am streaming audio file over the network using JMF. I want to be able to know when a file end so I can close the streaming session.
    Can some one please help
    Thanks

    If you put a ControllerListener on the Processor that's associated with generating the RTP stream, it'll generate an "EndOfMedia" event when the end of the file is reached.

  • How to stream audio/vide​o files on bb playbook and create different play lists from another pc and/or external hard disk drive connected with a share router

    hi guys
    i wish to use my external hard disk drive (1tb) connected with a belkin share router as main storage drive and stream audio/ video and other files on bb playbook through wifi.
    also wish to create different playlists directly on playbook.
    please tell me guys how can I do it.
    thank you in advance

    Try this...
    http://forums.crackberry.com/blackberry-playbook-f​222/how-stream-video-music-more-your-mac-pc-your-p​...

  • Banshee and streaming .pls files

    Hey fellas.
    I'm trying to stream some .pls internet radio stations through Banshee 1.4.2 (on GNOME 2.24.3 on Arch64) with no success, but Banshee 1.4.3 under Ubuntu 8.10 on my netbook can stream the station fine.
    The Banshee website states that Banshee has supported .pls files since version 1.2, so what gives?

    I managed to sort this out by downloading the set of gstreamer-plugins mentioned in pacman after installing Banshee ("gstreamer0.10-ugly-plugins" and "gstreamer0.10-bad-plugins"). I hope this will help someone else in the future

  • [svn:osmf:] 13603: Use actual streaming audio file for streaming audio example.

    Revision: 13603
    Revision: 13603
    Author:   [email protected]
    Date:     2010-01-18 17:09:10 -0800 (Mon, 18 Jan 2010)
    Log Message:
    Use actual streaming audio file for streaming audio example.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/AllExamples.as

    It seems that you do not understand the problem at hand. I can listen on a m3u list using iTunes, VLC and other players, but I wish to listen on m3u lists as streaming music when I am on sites such as eMusic. For instance, I cannot listen on sample music at eMusic, but must download it first. Thus, it is not possible to listen on streaming music with Firefox. On the other hand, Opera and Safari handle m3u streaming music very well.
    Can you listen streaming music or samples at eMusic using Firefox without downloading m3u-list on your local disk?

  • AVI file giving Audio/Video file has no streams

    I try to import into CS5 Premiere Pro and it gives me the error. I am running on a Mac and the file works in VLC. It's pretty frustrating not to see the video except in the VLC player.

    Welcome to the forum.
    Playing a file is separate from editing that same file - totally different. Playability can contribute some info, but can also instill a false sense of security. Players, like VLC, are very good for playing, as they contain about everything needed, right in the player. They do not rely on the installed CODEC's in the system, so being able to edit that same file, may well prove impossible, as the NLE program will have to rely on the installed system CODEC's. Also, even if one has the particular, necessary CODEC installed, it does not mean that the NLE program can actually use it. This ARTICLE will give you a bit more background.
    As Harm mentions, it is likely an issue with at least one stream of the file and the CODEC that is needed to decode it. If you have a muxed file (both Audio and Video streams) you need two CODEC's - one for each stream. Next, they BOTH must work in PrPro. It is likely that you are either missing, one or both, or that PrPro cannot use one, or both. VLC Player doesn't need them from the system, as it obviously contains them internally. MediaPlayer Classic HC, and some others are good this way - they play almost everything. However, they do not insure that one has the CODEC installed and that it will work in the NLE. Great for playing, but not so good for insuring that that same file will edit properly.
    Good luck, and let us know what is inside that AVI file. This ARTICLE will give you some background on "AVI," and what can be inside that "wrapper."
    Hunt

  • To play a stream audio file with external program...

    Hi, I get with stream a sound file and I have to play it using an external program like VLC, reading the file continuously of a buffer. How can I do it? Would I have to controll VLC commands? I have been reading about it, but I have no idea how to do it.
    Thanks.

    One way would be that you implement and run an RSTP server and give its URLs to VLC, RealPlayer or whatever proper RSTP client program.

  • I Need Help Trying to Play (.pls) files in a simple windows forms Application

     So I'm try to build application that when I click on the icon it opens a little window and play the url .pls. I already got the graphics of the app i just to get the code and I've been looking around for but all i got was this code
    typedef struct
    int count;
    void **name;
    void **displayname;
    } Playlist;
    Playlist* my_playlist; // SHOUTCAST PLAYLIST
    #define BOX(text) MessageBox(NULL,text,"Info",MB_OK | MB_TOPMOST);
    char *stristr(char *string2, char *string1) // from /samples/fmod/Main.c
    char *s1 = strdup(string1);
    char *s2 = strdup(string2);
    char *ret = 0;
    int i, j;
    int len1 = (int)strlen(string1);
    int len2 = (int)strlen(string2);
    for (i=0;s1[i];i++) s1[i] = tolower(s1[i]);
    for (i=0;s2[i];i++) s2[i] = tolower(s2[i]);
    for (j=0;j < (len2 - len1);j++)
    char *a = s1;
    char *b = &s2[j];
    for (i=0;(i < len1) && *a && *b;a++, b++, i++)
    if (*a != *b)
    break;
    if (i == len1)
    ret = &string2[j];
    break;
    free(s1);
    free(s2);
    return ret;
    Playlist *ParsePlaylist(char *name) // from /samples/fmod/Main.c and MSDN
    char *filebuf, *p;
    Playlist *playlist = 0;
    int count, i;
    // Check if URL is null
    if (!name)
    BOX("Streaming URL is empty");
    return 0;
    // Check if URL is a *.pls file
    if (_stricmp((const char *)".pls", (const char *)(&name[strlen(name) - 4])))
    return 0;
    // Create a WinInet session
    HINTERNET hSession = InternetOpen(_T(""), INTERNET_OPEN_TYPE_PRECONFIG, 0, 0, 0);
    // Prepare a request
    HINTERNET hRequest = InternetOpenUrl(hSession, name, 0, 0, 0, 0);
    // Send the HTTP request.
    HttpSendRequest(hRequest, 0, 0, 0, 0);
    // Read the response data.
    DWORD dwNumberOfBytesAvailable = 0;
    do
    // Retrieve size of remote file
    InternetQueryDataAvailable(hRequest, &dwNumberOfBytesAvailable, 0, 0);
    if (0 < dwNumberOfBytesAvailable)
    // Allocate buffer memory
    filebuf = new char[dwNumberOfBytesAvailable + 1];
    filebuf[dwNumberOfBytesAvailable] = 0;
    DWORD dwBytesRead = 0;
    // Read remote file and put in buffer
    InternetReadFile(hRequest,
    filebuf,
    dwNumberOfBytesAvailable,
    &dwBytesRead);
    //BOX(filebuf);
    while (0 < dwNumberOfBytesAvailable);
    // Close the request handle.
    InternetCloseHandle(hRequest);
    // Close the WinInet session.
    InternetCloseHandle(hSession);
    // Parse the pls file (from Fmod sample)
    p = stristr(filebuf, "NumberOfEntries=");
    if (!p)
    BOX("Streaming : NumberOfEntries in pls file not found");
    return 0;
    p += 16;
    count = atoi(p);
    if (!count)
    BOX("Streaming : numeric value for NumberOfEntries not found");
    return 0;
    playlist = (Playlist *)calloc(sizeof(Playlist), 1);
    if (!playlist)
    BOX("Streaming : can't allocate memory for pls file (playlist)");
    return 0;
    playlist->count = count;
    playlist->name = (void **)calloc(sizeof(char *) * count, 1);
    if (!playlist->name)
    BOX("Streaming : can't allocate memory for pls file (playlist->name)");
    return 0;
    playlist->displayname = (void **)calloc(sizeof(char *) * count, 1);
    if (!playlist->displayname)
    BOX("Streaming : can't allocate memory for pls file (playlist->displayname)");
    return 0;
    for (i=0;i < count;i++)
    char tmp[32];
    char *filename, *displayname, *t;
    filename = displayname = 0;
    sprintf(tmp, "File%d=", i + 1);
    p = strstr(filebuf, tmp);
    if (p)
    p += strlen(tmp);
    t = p;
    for (;*t && (*t != 0xa) && (*t != 0xd);t++);
    if (*t)
    char tmpc = *t;
    *t = 0;
    filename = _strdup(p);
    *t = tmpc;
    if (strncmp(filename, "http://", 7) && strncmp(filename, "http:\\\\", 7))
    char *tmpname = _strdup(filename);
    p = &tmpname[strlen(tmpname) - 1];
    for (;(p > tmpname) && (*p != '\\') && (*p != '/');p--);
    if ((*p == '\\') || (*p == '/'))
    p++;
    displayname = _strdup(p);
    free(tmpname);
    playlist->name[i] = filename;
    playlist->displayname[i] = displayname;
    free(filebuf);
    return playlist;
    [main code]
    char string_music[256] = "http://www.shoutcast.com/sbin/shoutcast-playlist.pls?rn=6042&file=filename.pls"; // For example
    // Parse the remote file (in case it's a Shoutcast playlist (*.pls))
    my_playlist = ParsePlaylist(string_music);
    if (my_playlist)
    strcpy(string_music, (char*) my_playlist->name[0]); // for the first song in the playlist
    FSOUND_STREAM * my_stream = FSOUND_Stream_Open(string_music, FSOUND_NORMAL | FSOUND_NONBLOCKING, 0, 0);
    int int_sound_mp3 = FSOUND_Stream_Play(FSOUND_FREE, my_stream);
    and i got to link it to Wininet.lib
    and I'm a noob so i got problems as soon as i tried to put everything together
    so any help greatly appreciated 
    BTW if you know any other ways, that I'll be able to stream the audio that will be great to.
    heres the link for the audio stream (.pls)
    http://panel3.serverhostingcenter.com:2199/tunein/nrlsxglp.pls

    Hello 0cooldex0,
    What library do you used in this scenario? I haven't saw this FSOUND_STREAM from MSDN library.
    By the way, winform general is used for talking about Windows Form library, is is using C# or VB.NET but not C or C++. You are not posting in the right forum.
    In my point of view, you may choose the forum depending on the library you choosed and post on specific forum.
    Regards,
    Barry
    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.

  • Creating iTunes .pls file

    Somehow I created a "listen.pls" file which I placed in a desktop folder and used as an alias to open iTunes and the station I wanted in one step.
    This worked until the station re-named its program. I now want to listen to the new stream which has automatically appeared under the radio list in the source pane. I cannot find the new .pls file which is supposed to reside in my system. Exactly where is it since I would like to move it to the desktop?
    Searchlite cannot see it.
    Tks

    Thanks Diane, your suggestion created a "Web internet location" 8 kb file which I used to open iTiunes and the station needed.
    At the same time another file titled "classical.pls" 4 kb with the word "playlist" on the icon was created on my desk top. The kind is "Internet Audio Playlist"

  • Problem with streaming audio

    I wasn't sure if this is a problem with Safari, iTunes, or OS X, so rather than post the question in all three of those forums I decided to post the question here.
    I can't seem to get streaming audio to open and play when I click on their appropriate links in Safari. I tried several different links through a few different sites, but when I click on a "Play" or "Listen Now" link for an MP3 stream, a Safari download window opens and that's it -- no stream.
    I solved the problem by copying the link, going to iTunes, and choosing "Open Stream" from the "Advanced" menu, and the stream played fine, but I would hate to have to do that every time I want to sample an audio stream.
    Anyone know why it wouldn't work when I clicked on the direct link?
    Thanks.

    Nevermind. Noob figured out what he was doing wrong.
    See Safari "Preferences", "Open 'safe' files after downloading".
    /smacks self on head

  • I recently purchased an Onkyo stereo receiver with a wireless USB adapter, UWF-1, and want to stream audio from my MacBook Pro through my stereo system. The receiver tells me it is connected to my wireless LAN, but I cannot get music to play?

    New to the community here, thanks for your patience.  I recently purchased an Onkyo TX-8050 Network Stereo Receiver with the UWF-1 USB adapter with the intent to stream audio from my MacBook Pro to the stereo. I have gone through the setup instructions for the adapter and the receiver gives me a message saying that it is connected to the password protected network, but that is as far as I can get.
    I have gone into iTunes and clicked on the "Open Stream" option, but I just get a pop up box labeled "URL" that is empty. I have Home Sharing turned on and File Sharing turned on, but I am not seeing the receiver in my Finder window or as a iTunes device.
    I would appreciate any and all advice and assistance.
    Thanks so much.
    Dan

    So I have been searching the iStore for Airplay and I find lots of information about what it is, but nothing about how much it costs, how/where to buy it, etc.?
    Fortunately, AirPlay does not cost anything as it is a streaming protocol used by Apple. Currently, the AirPort Express and Apple TV are AirPlay-ready. A number of other companies, like JBL, iHome, Denon and Klipsch are also rumored to be working on AirPlay versions of their products.
    Your other option would be to get an AirPort Express and connect it to your Onkyo analog or optical digital audio input and stream from iTunes that way. I currently do this with my 10+ year old Harmon Kardon HT receiver.

  • Facebook and streaming audio issues

    I like using Facebook and stream audio from my favorite radio stations!  However, I am running into adobe flash upgrade issues!!!!  I can bring up Facebook but I can't run certain programs within it.  I can bring up my favorite radio stations but won't let me stream audio!!!!  Any solutions?

    What exactly are your issues?
    I had an issue where every image found on the blog template was showing up instead of the actual image that represented the blog post. My fix was to make sure of the following:
    1. Blog image needs to be small in file size. Many bloggers post images that came straight off their camera and I found that the share tools will grab the most accessbile and light-weight files first. If the image is too big then it won't grab it at all. The share tool grabs the smallest and fastest loading, top-most in the code image first, which means the images found on the template of the blog.
    This issue occurs at WordPress too, so it is not restricted to BC but rather the tools provided to share.
    2. Try to avoid putting the image inbetween <p></p>'s, when I pulled mine out of the the paragraph format, they were found quicker.
    3. Avoid having the image lead off the blog post list before the bodypreview, if you can at all just show the image on within post detail page if you can. I know that having an image in the list helps, but then just put the whole blog in the list, like WP does. Problem here is that most share tools on the list have a problem diciphering what to share, so it shares the whole page, giving everthing a share count. WP does this better. They isolate the independent listings and provide isolated share tools for each list.
    Wait a week and the technology will change again.
    Good news is that the element that Facebook offers to share a page on the web will be featuring the option to upload an image to accompanying the sharing of the post. You can see this happening at Facebook already when you drop in the link of the post into a news feed.
    I hope this helps.

  • VLC doesn't save streaming audio to mp3 anymore

    I want to save streaming audio from the internet to my HDD in mp3 format while listening to it at the same time.  That worked fine when I did it with VLC, using the GUI.  To be specific, here are the settings that I used:
    VLC main menu: File>Open Network Stream>Open...Network>tick HTTP/HTTPS/FTP/MMS and enter the URL (http://vruk.sc.llnwd.net:12265) >under Advanced Options tick Stream/Save and click on Settings (opens Stream Output window)>Outputs, tick Play locally, tick File, click on Browse and enter filename and location for the stream saving file, i.e. /home/robert/vlcout.mp3>Encapsulation method, tick on Raw>Transcoding options, tick on Audio codec and select mp3>Bitrate 128 kb/s, Channels 2>OK, OK, to start recording. Stop or Quit VLC, to stop recording.
    Two days ago I upgraded VLC from v.0.8.5-9 to v.0.8.6a-4 (which also upgraded ffmpeg from v.20060920-1 to v.20070131-1), and now the above procedure isn't working anymore.  The stream isn't playing anymore over my speakers while the encoding supposedly is going on, the vlcout.mp3 file is empty (0B), and VCL gives me the following error messages:
    stream_out_transcode error: cannot find encoder ((null))
    stream_out_transcode error: cannot create audio chain
    main error: cannot create packetizer output (mpga)
    It looks as though VLC is failing to encode the stream to mp3.  The VLC documentation (see http://www.videolan.org/streaming-features.html) in a table of "possible output formats for the transcoding module" says that for mp3 audio "you have to compile ffmpeg with libmp3lame support."  Has the new ffmpeg v.20070131-1 (in extra) been compiled without mp3 support?  If so, why?  Apparently, the older version I was using last week supported mp3.
    libmp3lame is installed on my system.  There is a very recent alternative ffmpeg-svn-8218-1 pkgbuild in AUR that enables libmp3lame in the configure section of the build but when I try to install the package built that way it conflicts with ffmpeg v.20070131-1, and to remove the official ffmpeg v.20070131-1 I'd first have to remove a slew of other packages that depend on it.
    Is it possible to remove VLC v.0.8.6a-4 and ffmpeg v.20070131-1 and go back to the older versions that worked for me?  There was talk of a bug in ffmpeg in this forum at the end of January; what about it?
    What should I do?
    Robert
    Last edited by RobF (2007-03-14 16:25:51)

    I solved the problem for now by downgrading both vlc and ffmpeg to the earlier versions that I was using before.  Saving an audio stream in mp3 format is working again now.
    I believe there are problems with the current versions of both vlc and ffmpeg.
    1. vlc 0.8.6a doesn't seem to have ffmpeg enabled, i.e.
    $ vlc --list | grep ffmpeg
    VLC media player 0.8.6a Janus
    whereas with the older version I get
    $ vlc --list | grep ffmpeg
    VLC media player 0.8.5 Janus
      ffmpeg                FFmpeg audio/video decoder/encoder ((MS)MPEG4,SVQ1,H263,WMV,WMA)
      ffmpeg                FFmpeg chroma conversion
      ffmpeg                FFmpeg audio/video encoder
      ffmpeg                FFmpeg demuxer
      ffmpeg                FFmpeg video filter
      ffmpeg                FFmpeg crop padd filter
      ffmpeg                FFmpeg deinterlace video filter
    2. The current package ffmpeg v.20070131-1 in extra may not refer to various libraries correctly in its configure parameters.  E.g. in AUR there is an alternative pkgbuild ffmpeg-svn 8218-1 from 04-Mar-2007 in which the original configure parameters were replaced as follows:
    --enable-mp3lame --> --enable-libmp3lame
    --enable-vorbis --> --enable-libvorbis
    --enable-faac --> --enable-libfaac
    --enable-faad --> --enable-libfaad
    --enable-a52 --> --enable-liba52
    --enable-dts --> --enable-libdts
    Has the ffmpeg package in extra been compiled with mp3 support which is needed for the transcoding module of vlc to encode in mp3 format?  The alternative ffmpeg package in AUR conflicts with the ffmpeg package from extra, and I don't know how to tell the new vlc to use the alternative package instead of the one from extra. 
    Someone ought to look into this.
    Robert

  • How to stream audio in Windows Phone 8.1?

    I have a Windows Phone Silverlight 8.0 app I want to update to 8.1 using WinRT. It streams audio in the background.  In Silverlight, I used
    BackgroundAudioPlayer to set the Track to a Uri.  It's not clear how to do this with
    MediaPlayer in WinRT.  I don't think I can just use a Uri.  Instead, I wonder if I have to use
    MediaPlayer.SetStreamSource(IRandomAccessStream
    stream).  If so, I don't know how to get an IRandomAccessStream from a
    Uri.  I want to stream from a Uri on the internet over HTTP, not from a local file. Any help?

    Refer following links to stream audio in background in Windows Phone 8.1 Runtime app.
    https://code.msdn.microsoft.com/windowsapps/Background-Audio-in-WinRT-344bcf4d
    http://blogs.msdn.com/b/johnkenn/archive/2013/12/31/supporting-background-audio-in-your-windows-8-1-app.aspx
    Thank you for thinking about my problem. I may be mistaken, but I think the above links refer to Windows 8 apps, not Windows
    Phone 8.1 apps. I'm under the impression that background audio is done differently in Windows Phone 8.1 from Windows 8. The
    Background Audio Overview for Windows Phone Store apps explains more. 
    It's a good overview, but does not explain how to play audio from a stream rather than a file.  That's what I'm stuck on.

  • Streaming AVCHD MTS files to Apple TV

    I am still in search of the holy grail I think... I have yet to be able to figure out how to easily grab my MTS files from my Mac and stream them *as is* without transcoding, converting, etc on my TV. I just bought new Apple TV not for that purpose but can't seem to find anywhere here if I can use it to to stream AVCHD MTS files to my HDTV. Does anyone know? thanks

    I just bought new Apple TV not for that purpose but can't seem to find anywhere here if I can use it to to stream AVCHD MTS files to my HDTV. Does anyone know?
    I hate to point out the obvious, but the normal practice is for the user to purchase the device that supports what he wants to do and not buy a device and the try to force it to do something it was not designed to do.
    To begin with, QT does not support Transport Streams such as TS/MTS/M2TS at all and only supports muxed MPEG-2 Program Streams employing specific audio formats... and then not natively. In other words, your file containers are not compatible with the QT player built into the TV/TV2 device. And, even if you place the data in a supported container, the audio and video data may or may not be compatible with the player codecs embedded in the device firmware.
    If your primary purpose is to stream content muxed in an MPEG/MPG/MTS/M2TS wrapper, it might be more prudent to purchase a device designed specifically for such content. For instance, I gave my wife, brother-in-law, and son TV2 devices for Christmas. However, my father-in-law insisted on a device the would play the videos from his camcorder and indicated that at 87 years of age, he had no intention of transcoding anything. As a result, I got him the LaCinema Mini HD device. While I cannot confirm that your files would be compatible with this particular device, it or something similar may meet your needs.
    Basically, you have three options here:
    1) You can convert your content to make it compatible with the TV device,
    2 You can "hack" the TV device and modify its capabilities, or
    3) You can buy a device that actually does what you originally want it to do.

Maybe you are looking for