[Util] Open PLS Playlist in Windows Media Player - Jon Galloway

[Util] Open PLS Playlist in Windows Media Player

[UPDATE: I finally built an installer and added some error handling, so this should  be  easier to set  up and use. Download the setup from http://www.codeplex.com/openplsinwmp.

Some web radio stations (like the super cool SomaFM) only offer PLS playlists, and Windows Media Player doesn't support PLS playlists even though they're about the simplest file imaginable.

I whipped up a simple app (OpenPlsInWMP) that parses the stream url out of a PLS file and shells out to WMP, so if you associate PLS files with OpenPlsInWM it'll seem like Windows Media Player decided to play nice with PLS files.

It's working pretty well for me. If the stream is interrupted you may have to kill WMP and click the PLS link again - it doesn't seem to restart as well as with ASX streams. YMMV.

Download It [updated]
Dirt Simple Code:
using System;
using System.IO;

namespace Jon.Galloway.Wrote.Me
{
    class OpenPlsInWM
    {
        [STAThread]
        static void Main(string[] args)
        {
            if (args.GetUpperBound(0) > -1)
            {
                string filename = args[0];
                using (StreamReader sr = new StreamReader(filename)) 
                {
                    string line;
                    while ((line = sr.ReadLine()) != null
                    {
                        if (line.ToLower().StartsWith("file1="))
                        {
                            string url = line.Split('=')[1];
                            System.Diagnostics.Process.Start("wmplayer.exe",url);
                            break;
                        }
                    }
                }
            }
            else
            {
                Console.WriteLine("Usage: OpenPlsInWM \"playlist.pls\"");
                Console.WriteLine("Associate PLS file extension with this application to allow Windows Media Player to play them.");
            }
        }
    }
}

Published Thursday, April 08, 2004 1:47 AM by Jon Galloway
Filed under:

Comments

# re: [Util] Open PLS Playlist in Windows Media Player

Yes! I have been listening to SomaFM on Realplayer and it sucks. I also dislike winamp. This is a great solution. Thanks!

Thursday, May 06, 2004 5:59 PM by Blake

# re: [Util] Open PLS Playlist in Windows Media Player

Hi there. How do I "associate PLS files with OpenPlsInWM"? Thanks in advance!

Sunday, May 30, 2004 1:17 PM by Joe

# re: [Util] Open PLS Playlist in Windows Media Player

Joe - One way to associate PLS files with OpenPlsInWM:
1) Save a PLS file to your desktop
2) Right click / Open with
3) Browse to where you saved OpenPlsInWM.exe
4) Check the "Always use the selected program..." checkbox.
5) Hit okay.

Sunday, May 30, 2004 4:08 PM by Jon Galloway

# re: [Util] Open PLS Playlist in Windows Media Player

Absolutely brilliant program. Thanks a lot!

Friday, June 04, 2004 2:44 PM by Jeremy Dalton

# re: [Util] Open PLS Playlist in Windows Media Player

I like your idea, but it does not work on my machine. I'm running win2K. Any suggestions? -John

Thursday, June 10, 2004 12:42 PM by JOHN RYBON

# re: [Util] Open PLS Playlist in Windows Media Player

John -
First step is to verify you have Microsoft.NET framework 1.1 installed. Check this page for some info:
http://msdn.microsoft.com/netframework/technologyinfo/howtoget/default.aspx

If you do and it still doesn't work, I'll need more info. Did you follow the steps I gave to Joe?

I'm planning to do another release of this that includes a friendlier installer, by the way.

Friday, June 11, 2004 12:38 AM by Jon Galloway

# re: [Util] Open PLS Playlist in Windows Media Player

Thank you so much for this! awesome work around

Sunday, June 20, 2004 7:10 PM by Zardoz

# re: [Util] Open PLS Playlist in Windows Media Player

this rocks... thanks for making it... I don't like having multiple pieces of software on my machine, all doing the same thing, and winamp isn't as good as WMP all around.... thanks again

Wednesday, June 30, 2004 3:58 AM by kyle

# re: [Util] Open PLS Playlist in Windows Media Player

nice program. i just have one small problem... i use live365.com which requires a login. in linux, xmms handles this fine but wmp+openplsinwmp doesnt seem to be able to. any ideas?

Wednesday, July 14, 2004 12:50 PM by Pen-n-Paper

# re: [Util] Open PLS Playlist in Windows Media Player

I encountered the error message C00D11CD through windows media player. I'm running Media player 9.0 with windows XP.

Any ideas? I'd be delighted if this works.

Friday, July 16, 2004 8:09 AM by Jason

# re: [Util] Open PLS Playlist in Windows Media Player

Jason -
Man, that C00D11CD error is a pain. It's basically a "catch all" message meaning something bad happened. I looked at this a little, but don't have any ideas yet.

Tuesday, July 20, 2004 2:01 AM by Jon Galloway

# re: [Util] Open PLS Playlist in Windows Media Player

Pen-n-Paper -
Interesting - I hadn't thought about Live365 for this - it can work with WMP as an internal player. I'll have to poke around when I get a chance. If you beat me to it, let me know.

Tuesday, July 20, 2004 2:03 AM by Jon Galloway

# re: [Util] Open PLS Playlist in Windows Media Player

This works great! Thanks for sharing!

Friday, July 30, 2004 10:21 AM by JD

# re: [Util] Open PLS Playlist in Windows Media Player

Awesome program...works great!

Friday, July 30, 2004 12:49 PM by Jimmy

# re: [Util] Open PLS Playlist in Windows Media Player

Hey it sounds cool, but I have Windows Media Player 10.00.003473 and Windows XP SP2 so do you think you can make it support the new Windows Media Player?

Thursday, August 05, 2004 12:53 AM by davo

# re: [Util] Open PLS Playlist in Windows Media Player

davo -
i'm running XP SP2 and WMP 10.00.003473 and it's working for me. can you give me info on what problems you're having? did you read the other comments for things other users have run into?

Thursday, August 05, 2004 4:16 PM by Jon Galloway

# re: Music - Seattle and on the Web

Thursday, August 05, 2004 7:20 PM by TrackBack

# re: Trying to keep up with all the new / redesigned search engines...

Sunday, October 10, 2004 4:04 PM by TrackBack

# [Util] Updated - Open Playlist in Windows Media

Tuesday, December 21, 2004 6:23 AM by TrackBack

# re: [Util] Open PLS Playlist in Windows Media Player

I'm using wmplayer 11, and it's working fine with it. Only the problem is, that it can't log into live365.com.
I can listen live365 if:
1. copy the string beginig http://......  
2. open wmplayer -> file -> open url, and paste the full address.

Monday, June 05, 2006 5:46 AM by Karesz

# re: [Util] Open PLS Playlist in Windows Media Player

Thx :D
Very good job

Friday, June 09, 2006 2:14 PM by Lux

# re: [Util] Open PLS Playlist in Windows Media Player

This program doesn`t work as it should do.
I know what i`m talking about.
It doesn`t support WMP 10, and when i downgrade to 9.0, it won`t work at all.
Maybe a new fix for your program.
I tried it at several sites, and always does your program appear wit great results, but ity doesn`t work with wmp 10.
Tried on several pc`s

Sunday, June 11, 2006 4:07 PM by Jan-Marten de Boer

# re: [Util] Open PLS Playlist in Windows Media Player

actually, it does work with WMP 10. because thats what i'm using and have no problems at all.

Saturday, June 17, 2006 7:17 PM by spanky

# re: [Util] Open PLS Playlist in Windows Media Player

He he he excellent! Using the Version 11 Beta of WMP and it works fine :-)

Tuesday, June 27, 2006 7:46 AM by Doug

# re: [Util] Open PLS Playlist in Windows Media Player

I am so glad people share

Friday, June 30, 2006 9:38 AM by rufus

# re: [Util] Open PLS Playlist in Windows Media Player

I love this man. Just what I was looking for and so easy to use.

Thanks.

Tuesday, July 04, 2006 12:08 PM by Samuel Muñoz

# Mr.

I am using Windows Media player 10.

And I would so love to be able to play pls files. Please update this thing! I'm an idiot, and do not have the foggiest idea how it works. If it doesn't have gears and bearings, I'm lost.

Saturday, July 08, 2006 2:34 PM by Gregg Kuljian

# re: [Util] Open PLS Playlist in Windows Media Player

I have no idea how to use this. I enter the .pls location in my browser and hit enter and it says it cant play it. I try to save it as a file and there's no "open with". There's only "send to"

Sunday, July 09, 2006 12:56 PM by C

# re: [Util] Open PLS Playlist in Windows Media Player

Thank you, very good program, works like a charm!

Just wondering, is it possible to incorporate the "Now Playing" feature that winamp has into this plugin? I like to see what track and artist is playing while listening to shoutcast streams (the only advantage to winamp so far!)

Thanks

Wednesday, July 12, 2006 4:03 AM by Steve

# re: [Util] Open PLS Playlist in Windows Media Player

Totally Cool, you are my Person Of The Week!!!!!

Tuesday, July 18, 2006 11:50 PM by David

# re: [Util] Open PLS Playlist in Windows Media Player

Agreed with Steve above - would love to see the "Now Playing" feature

Wednesday, August 09, 2006 10:38 AM by Griff

# re: [Util] Open PLS Playlist in Windows Media Player

Thank you, this works GREAT!

Thursday, August 10, 2006 1:26 PM by Chris

# re: [Util] Open PLS Playlist in Windows Media Player

Great.

Thanks man.

Wednesday, August 16, 2006 6:27 AM by freco

# re: [Util] Open PLS Playlist in Windows Media Player

You do not need to have this program. All someone has to do is open the .pls with notepad and copy the and paste the URL into WMP.

Here is a screenshot:

http://img179.imageshack.us/my.php?image=wmpqw2.jpg

In the linux/unix world you teach people how to do things if there is a solution instead of making software all of the time if it's not needed, and in this case this software was not needed to help address this issue.

Give a  man a fish and he'll eat for a day, teach a man to fish and he'll eat for life!

ALOHA

Tuesday, August 22, 2006 5:52 PM by Das

# re: [Util] Open PLS Playlist in Windows Media Player

@Das - That's exactly what the program does. I distribute the source with it, so you can see. The point is that it's a stupid waste of time to have to download the pls file, edit it, find the mp3 stream, and open it in Windows Media Player. What's the point of doing that? Why not use a tiny program to do that for you? If you only want open one pls stream the manual solution may be fine, but try browsing through shoutcast that way.

Wednesday, August 23, 2006 3:08 PM by Jon Galloway

# re: [Util] Open PLS Playlist in Windows Media Player

Very nice tool!! Works fine, though it has a hard time playing AAC+ files, it gives an error and than play it anyway ;)

tnx!

Sunday, August 27, 2006 8:40 AM by Erin

# NO audio in WMP since installing .PLS APP & .NET Framework

Jon:

Since installing .PLS APP and .NET Framework, I lost all audio. Any ideas ?

Thanks.......

Saturday, September 02, 2006 11:35 PM by Bobmiz

# re: [Util] Open PLS Playlist in Windows Media Player

This is great.Keep up the good work.

Tuesday, September 05, 2006 7:05 PM by Tamaho

# re: [Util] Open PLS Playlist in Windows Media Player

I got an error "Unable to check the stream to check for AAC+ Please change your firewall settings to allow this program to access the internet."

I'm in a business setting where messing with firewall settings is impossible. WMP accesses the internet with no problem - any workaround suggestions?

Seoman

Thursday, September 07, 2006 12:25 PM by Seoman

# [Util] Updated - Open Playlist in Windows Media

Back in April I wrote a very basic console app which would (theoretically) allow you to play Shoutcast

Tuesday, September 19, 2006 11:32 AM by JonGalloway.ToString()

# re: [Util] Open PLS Playlist in Windows Media Player

Dude you rule!  I've been looking for something to make this easy for a while!

Wednesday, October 04, 2006 8:38 AM by Jason

# re: [Util] Open PLS Playlist in Windows Media Player

I get the same Unable to check the stream to check for AAC+ error and have configured both Zone Alarm and NIS to allow OpenPLSInWMP.exe internet access. I've also disabled them both and still I get the error. I've downloaded and installed the AAC+ codec from http://www.orban.com.

Any ideas?

Saturday, October 21, 2006 1:12 PM by Robert

# re: [Util] Open PLS Playlist in Windows Media Player

great program... but everytime i open a pls. file a cmd.window will flash before the media player play, is it normal?

Sunday, November 12, 2006 2:47 PM by allen

# re: [Util] Open PLS Playlist in Windows Media Player

I am trying to load a .pls link with your program and get the following error message:

"Windows Media Player cannot play the file. One or more codecs required to play the file could not be found."

OW: Windows XP Pro Version 5.1 SP2

Windows Media Player version 10.00.00.4036

Sunday, November 12, 2006 7:39 PM by Neil

# re: [Util] Open PLS Playlist in Windows Media Player

Ignore my above comment, silly me, forgot to reboot after install.

Monday, November 13, 2006 11:15 AM by Neil

# re: [Util] Open PLS Playlist in Windows Media Player

Uh oh, the link to download is broken!

Wednesday, November 15, 2006 3:45 AM by Chris Hills

# re: [Util] Open PLS Playlist in Windows Media Player

@Chris Hills - Thanks! I updated the link.

Wednesday, November 15, 2006 10:54 AM by Jon Galloway

# re: [Util] Open PLS Playlist in Windows Media Player

download does not seem to work...

Tuesday, December 05, 2006 11:49 AM by hara

# re: [Util] Open PLS Playlist in Windows Media Player

@hara - Thanks, I updated the other download link. You'll need Javascript enabled to download from http://tools.veloc-it.com.

Tuesday, December 05, 2006 12:04 PM by Jon Galloway

# re: [Util] Open PLS Playlist in Windows Media Player

The download link still does not work. Also, I got the app from another site but no function on wmp 11. Hope you can get it working soon. I like ultra player but I don't like having multiple apps. Oh check out BS Player. Can I modify the source to play .pls is BS.

Saturday, December 09, 2006 5:05 PM by Chad

# re: [Util] Open PLS Playlist in Windows Media Player

@Chad - Do you have Javascript disabled? I just downloaded it from the site.

Saturday, December 09, 2006 5:20 PM by Jon Galloway

# re: [Util] Open PLS Playlist in Windows Media Player

i keep getting this error message:

Windows Media Player cannot connect to the server. The server name might not be correct, the server might not be available, or your proxy settings might not be correct.

i've set my protocol to "autodetect proxy settings" and "use proxy settings of the Web browser" and neither worked. i got the same message for both. any suggestions?

Thursday, December 14, 2006 10:20 AM by will

# re: [Util] Open PLS Playlist in Windows Media Player

I have the .PLS file associated with your program, and it parses the file to open in WMP11. However right when that happens and mp opens i get "You've encountered error message C00D109B" "Windows Media Player cannot play the file. One or more codecs required to play the file could not be found."

i have the orbit plugin and the k-lite pack. Am I missing something?

thanks for the hard work.

Tuesday, December 19, 2006 7:49 PM by Gino

# re: [Util] Open PLS Playlist in Windows Media Player

Hi could somebody sent the file to me via email. gonzalo_duque@yahoo.com

When I tried to download it nothing happens

thanks

Thursday, December 21, 2006 9:08 AM by gonzalo duque

# Hi Jon, I need your help

I need to play vedio files which is stored in webserver onclick event. How can I do this in asp.net 1.1......Thanks in advance

Thursday, January 04, 2007 3:05 AM by Mukesh

# re: [Util] Open PLS Playlist in Windows Media Player

Hey thanks alog for this app, I would never say WMP is better than winamp... If you use winamp these days you wouldn't have anyway to say that... The sound quality for one is superior on my X-Fi with winamp. It glitches less then WMP, especially with streaming music. Theres so many things winamp can do by default that WMP needs to be configured for, or apps like these made to get it to do a simple task... If you dont want multiple programs on your computer, delete WMP and use winamp... Then we dont have to waste our time MAKING windows media player do what it should by default... Just my two cents.

Saturday, February 03, 2007 10:06 AM by JimmyD

# re: [Util] Open PLS Playlist in Windows Media Player

Please host this file somewhere else so we can grab it

Tuesday, February 06, 2007 11:47 AM by hrun

# re: [Util] Open PLS Playlist in Windows Media Player

I fixed the link on the download page.

Tuesday, February 06, 2007 12:46 PM by Jon Galloway

# re: [Util] Open PLS Playlist in Windows Media Player

i got the error "the specified module could not be found"

what should i do in order to fix this problem?

Thursday, February 08, 2007 8:13 AM by harun

# re: [Util] Open PLS Playlist in Windows Media Player

Excellent. Thanks.

Anyone know how to stream video via shoutcast to media player?

Tuesday, February 13, 2007 4:35 PM by Mike

# re: [Util] Open PLS Playlist in Windows Media Player

Im stuned to see all those comments in favor of WMP, instead of WINAMP. is this what shows the grasp of M$ since some of you probably cant install winamp at work bcos you may not use non M$ programs? and since WMP comes "free" installed with u know what.

eat fish... lol.

ps. Jon good work! no disrespect! was just looking for a way to get rid of the WMP streaming annoyance and try to get it working in Winamp and came across your site. since many  windows people use wmp you helped a lot of them and thats good work.

-ps english no good me sorry me dutch- :)

Wednesday, February 14, 2007 5:12 PM by Obelix

# re: [Util] Open PLS Playlist in Windows Media Player

@Obelix - No disagreement. I switched to Winamp when WMP 11 came out.

Wednesday, February 14, 2007 7:20 PM by Jon Galloway

# re: [Util] Open PLS Playlist in Windows Media Player

Since I can't get Winamp to run reliably in Vista, this application has made living with Windows Media Player much more bearable.  Thanks tons!

Sunday, February 25, 2007 12:49 PM by Colin

# Good site

Wednesday, February 28, 2007 7:02 AM by wvauwh

# re: [Util] Open PLS Playlist in Windows Media Player

hi Jon, this worked like a charm with wmp11.  thanks!

Sunday, March 04, 2007 4:06 PM by adrian.

# It works for me but...

Thx for sharing it but it cant show song title

Thursday, March 29, 2007 12:40 AM by Neo

# re: [Util] Open PLS Playlist in Windows Media Player

Thanks.  Worked as described.  Now to get more streaming stations to fly in linux....a different story.  This worked well.

Saturday, March 31, 2007 8:48 PM by Bill Anderson

# re: [Util] Open PLS Playlist in Windows Media Player

Quick question, I was playing around with the included file "OpenPlsInWMP.cs" that comes with the installer and trying to get it to do more stuff and noticed that you include both MeesageBox and Console code, is there a newer version coming, or should I add a reference to Sys.Win.Forms.

Thanks,

jim

Tuesday, April 10, 2007 8:36 PM by jim perlman

# re: [Util] Open PLS Playlist in Windows Media Player

You can download Live365 right into WMP10, not WMP11. I followed the notepad cut n paste and it worked great, even for WMP11 which is only wants to push "Urge." So, either roll back to WMP10 or do the notepad thing. Works great.

Saturday, April 14, 2007 2:28 PM by Larry

# re: [Util] Open PLS Playlist in Windows Media Player

I could not make this program work with WMP 10 on my slimmed-down media center 2005 (xp pro). Unfortunately none of the suggestions for codecs etc. helped.  But I was motivated to install Winamp (which I have been putting off for some time).  Great decision!  What have I been thinking?  Forget WMP! Install Winamp.

Sunday, April 22, 2007 1:38 PM by Jeff

# re: [Util] Open PLS Playlist in Windows Media Player

http://69.93.242.138:8026/listen.pls

Well I may give up. I installed the program, but the PLS from this site won't play. WMP 11 says pls is a non recognizable format.

Any Ideas ??

Cheers

Monday, April 23, 2007 4:20 PM by James

# re: [Util] Open PLS Playlist in Windows Media Player

Sorry this is the actual site as well.

Can anyone get this working with OpenPls ???

http://www.975pirateradio.com/

Monday, April 23, 2007 4:29 PM by James

# re: [Util] Open PLS Playlist in Windows Media Player

Okay after a late night I figured out why it would not work.

The program did not automatically associate itself with the pls files, rather WMP bypassed the openpls altogether.

Once i realized that I changed the association and Presto. Works like a charm.

Thanks John for a great piece of Work...

Tuesday, April 24, 2007 2:55 PM by James

# re: [Util] Open PLS Playlist in Windows Media Player

Works awsome,no need to use WinAmp,thanks for

giving that gem for free.

Sunday, April 29, 2007 1:00 PM by Manny Rivera

# re: [Util] Open PLS Playlist in Windows Media Player

hi - thanks for sharing this tool - i'm a bit stuck trying to get it working with live365 though - using wmp10 and XP, would like to use to add radio stations from live365 to wmp so that I can then stream them to a media streamer.

OpenPls seems to work a treat but I keep getting aplayed an audio file saying my session is invalid - assume this is something to do with login on live365?

any thoughts?

Friday, May 04, 2007 9:40 AM by andif

# re: [Util] Open PLS Playlist in Windows Media Player

Hi Jon, great work.. All WinAMP-whiners, shut up... I used to have WinAMP installed on every PC I owned(Which are a lot), till they brought a bunch of buggy, resource-eating, adware-infested, lame releases, with too much non-interesting options and lame music or coupons... Nowadays, WMP is just as good as WinAMP, just install the right codecs and no more hustling around with software that looks like it's made by a hobbyist... If you can't set up your PC or program the right way, don't bother criticizing ppl that actually make stuff that make things easier... Especially when they give out their sourcecode, so other ppl can learn from that!!!

If anyone has probs with a lot of interrupted streams, putting in a bigger buffer could help... WMP has a default of 5 seconds... Go to the options, tab Performance and set the buffer to 10 or 20 secs... The buffer from WinAMP is also bigger than 5 secs by default, so I think this probably will work quite well...

Jon, I only have only one thing on my wishlist for this great tool: A lot of Shoutcast streams have more than 1 server.. Maybe a next version can support this?? I have no experience with programming these things, but if I have some time in the near future, I'll have a look at it too and let you know if I find something..

Friday, May 11, 2007 8:30 AM by Thumbs up!!

# Good site

<a href= http://nivyby.front.ru >a summary of the life of olaudah equiano</a> <a href= http://dinixo.front.ru >a ouija</a> <a href= http://dajuju.front.ru >a shock to the system simon brett</a> <a href= http://reciby.front.ru >a models life</a> <a href= http://kigevu.front.ru >a good man is hard to find study questions</a>

Saturday, May 12, 2007 12:14 AM by Britneyciyoy

# re: [Util] Open PLS Playlist in Windows Media Player

so simple, yet makes something i wanted to do possible. thanks for doing this and offering it.

Friday, May 25, 2007 8:53 AM by Brian DeO.

# re: [Util] Open PLS Playlist in Windows Media Player

I love this, I uninstalled winamp (that I only had because it played pls files). Good job man !

Tuesday, June 12, 2007 12:06 PM by Bogdan Badulescu

# re: [Util] Open PLS Playlist in Windows Media Player

dude you are the man!!!

this fix works great. u r awsome!

Thursday, June 28, 2007 12:17 AM by !Xlipe

# re: [Util] Open PLS Playlist in Windows Media Player

Hi Jon,is there a new version for Vista 32 bit,or the actual version works with it?,thanks

for any information.

Tuesday, July 31, 2007 3:09 PM by Manny Rivera

# re: [Util] Open PLS Playlist in Windows Media Player

Jon, outstanding little program.  Worked 1st time perfectly (as predicted) on my P4 XP-Pro SP2 machine at work running WMP9.  The basic theory of parsing the stream url out of a PLS file then opening in WMP worked as well but obviously without the convenience of the program's file association.  

Before installing the program on my PCs at home, I tried the parsing of the stream URL routine to see if WMP8 would work.  It didn't work.  Could this be because WMP8 is incapable of playing playlist files (.pls) using this technique or perhaps that the Microsoft.NET framework is not installed?  Apologies in advance...I did not check to see if it was there on the home machines.  I only read that it was required just prior to sending this note.  The version of .Net on the work PC is v2.  Home PCs are all XP-Pro SP1a w/WMP8.

Any thoughts?

Thursday, August 02, 2007 9:25 AM by Jim

# re: [Util] Open PLS Playlist in Windows Media Player

works like a CHARM!  bless you.

Saturday, August 18, 2007 12:48 AM by timmo

# re: [Util] Open PLS Playlist in Windows Media Player

The program is working great in Windows Media Player 11, however would like to know how can I get it to display the artist name and son

Saturday, August 18, 2007 5:28 PM by Eduardo

# re: [Util] Open PLS Playlist in Windows Media Player

nice programm,works fine ( i just gets an error message because of acc blalba but this seems to be my firewall).thanks:]

Friday, September 21, 2007 4:06 PM by jenny

# re: [Util] Open PLS Playlist in Windows Media Player

Simple solutions:

Play PLS file in Media Player Classic

Download Codec Pack free:

K-Lite Codec Pack 3.4.5 Full

and associate PLS files with

Media Player Classic (installed with K-Lite)

------------------------------

and K-Lite Codec Pack allows you to play almost every movie file

in Windows Media Player

Friday, September 21, 2007 11:58 PM by peter

# re: [Util] Open PLS Playlist in Windows Media Player

is it possible for listeners to listen my shoutcast in Windows Media Player? without downloading something? so that they just click and opens in Windows Media Player?? Thanx a lot!!

Monday, September 24, 2007 5:22 AM by Arjan

# re: [Util] Open PLS Playlist in Windows Media Player

Will it work with PLS files that simply list a series of MP3 files located on a local or network drive?  I have ripped most of my CDs to MP3 and created PLS files for each.  I would like to try M3U so I can listen in WMP but this is hundreds of files so an easy conversion tool would be welcomed.

Cheers

Friday, September 28, 2007 12:23 PM by Diggs

# re: [Util] Open PLS Playlist in Windows Media Player

Nice job!  Haven't done any programming in years, so have no idea how to do this but - how could you suppress the cmd window?  Set it to run minimized might be less obvious.  Is it the console.writeline statements that cause it to pop up?  Just curious, as it works exactly as described with XPProSP2 and WMP11.

Thanks!

Sunday, October 14, 2007 8:26 AM by Ralph

# re: [Util] Open PLS Playlist in Windows Media Player

Grand stuff, now I can hear Somafm at a better rate. Handshake from me!

Friday, November 30, 2007 7:33 AM by jim

# re: [Util] Open PLS Playlist in Windows Media Player

works perfectly.

firefox, wmp11, xp sp2.

awesome work.

Sunday, December 16, 2007 4:48 AM by ian

# re: [Util] Open PLS Playlist in Windows Media Player

Hello and thanx for a great program.

AAC+ streams doesnt work, not in WMP11 anyway.

The workaround is to drag the saved pls file into the playlist window and doubleclick. Still it would be nice if it could work with your program.

Sunday, December 16, 2007 5:45 AM by rhino

# re: [Util] Open PLS Playlist in Windows Media Player

hey Jon! I love this software. I listen to a lotta trance on freakradio.fm, & your suggestion has made listening to it much easier.

anyway, i was wondering if it is possible to save the playing tracks onto your hard disk, in mp3 or any audio format. i know it's highly unlikely, but if possible, it'll be the best thing ever..............hope you can  help me!!!

Wednesday, January 23, 2008 7:53 AM by chirag

# re: [Util] Open PLS Playlist in Windows Media Player

Your program worked just fine on my PC. Thank you for your good work and congratulations.

Friday, January 25, 2008 5:23 PM by Guillaume

# re: [Util] Open PLS Playlist in Windows Media Player

Genius. Thats great works nicely. Thanks dude.

Saturday, February 02, 2008 1:00 AM by BRett

# re: [Util] Open PLS Playlist in Windows Media Player

You're program is awesome. Even winamp wasn't running the .pls file I was trying to get to.

I have Windows XP and WMP ver. 11.05721.5230, if you're keeping track. :-)

Thanks a bunch!

Monday, February 11, 2008 1:13 PM by Andrew

# re: [Util] Open PLS Playlist in Windows Media Player

you the man!, thank-you so much for this really useful app....absolute brilliance.

Saturday, March 01, 2008 4:59 AM by dimsim

# re: [Util] Open PLS Playlist in Windows Media Player

Great Utility!!!!

I like the toolbar option of WMP and have been listening to Bluemars radio, but they use the pls format. Thanks to you I can use the WMP toolbar for Bluemars.

Friday, March 28, 2008 9:17 PM by Jim

# re: [Util] Open PLS Playlist in Windows Media Player

Wow, fantastic little program-  works like a dream!  Thanks!

Monday, April 07, 2008 2:11 PM by Chris

# re: [Util] Open PLS Playlist in Windows Media Player

thank you thank you thank you

Saturday, April 26, 2008 1:45 AM by Ro

# re: [Util] Open PLS Playlist in Windows Media Player

Awesome, thanks.  I translated your work into python because I don't want to install .NET.  Check it out if you are interested:

python.pastebin.com/f1d53dfae

Wednesday, May 07, 2008 10:38 PM by Chris

# re: [Util] Open PLS Playlist in Windows Media Player

Thanks For All The Info.

I had mad an internet music station using pls. extension cus the price to run a shoutcast station was cheaper then running a asx. mm. files using WMP.

I downloaded the the file so it can play in WMP.

Plays now in WMP with no prolem.

WMP v11.

Thank You... Have A Great Day.

Friday, May 16, 2008 4:06 AM by Gallu

# Windows &raquo; re: [Util] Open PLS Playlist in Windows Media Player

Pingback from  Windows &raquo; re: [Util] Open PLS Playlist in Windows Media Player

# re: [Util] Open PLS Playlist in Windows Media Player

here using windows media player 11? well if you want to use shoutcast pls files in it it's really simple if you can edit the *.pls file take the http://Ip:Port/">http://Ip:Port/ Out of the pls file and open url with media player and pit it in as follows http://Ip:Port don't need no little hacks nor programs to make it work :)

Friday, May 23, 2008 12:51 AM by --fubar--

# re: [Util] Open PLS Playlist in Windows Media Player

There's a shareware tool called shoutscan (free to try) that rips tons of radio stations and can save both in .pls and .asx and .m3u

.asx is directly supported in Windows Media Player

<a href=www.digiapp.com/shoutscan.html>">www.digiapp.com/shoutscan.html> www.digiapp.com/shoutscan.html  </a>

Tuesday, June 10, 2008 6:28 PM by Andy

# re: [Util] Open PLS Playlist in Windows Media Player

Hi I have tried and tried to get this radio station to play in real player in winamp player and now windows media player that link you sent i could not get it to work i have windows xp and you said something about java enabled how do i find out if it is,,,thanks in advance

Saturday, June 14, 2008 6:42 PM by Marie

# re: [Util] Open PLS Playlist in Windows Media Player

I get an error page when I click on your download link:

DotNetNuke Error: - Version 04.06.02

Index was outside the bounds of the array.

Wednesday, July 16, 2008 1:21 AM by lark

# re: [Util] Open PLS Playlist in Windows Media Player

When I try to download your compiled proramme I get this:

A critical error has occurred.

Could not find file 'D:\Websites\tools.veloc-it.com\Portals\2\Repository\OpenPlsInWmp2Setup.45a14f27-82ff-4ef9-9b6e-3a29d3d34c26.zip'.

Friday, July 18, 2008 5:12 AM by Nick

# re: [Util] Open PLS Playlist in Windows Media Player

When I go to the place you specify in your link and try to get the programme, I get the following:

A critical error has occurred.

Could not find file 'D:\Websites\tools.veloc-it.com\Portals\2\Repository\OpenPlsInWmp2Setup.45a14f27-82ff-4ef9-9b6e-3a29d3d34c26.zip'.

regards:  Nick

Friday, July 18, 2008 10:22 AM by Nick

# re: [Util] Open PLS Playlist in Windows Media Player

this is soo HACKS!

Saturday, July 19, 2008 2:05 PM by dbxdv

# re: [Util] Open PLS Playlist in Windows Media Player

I tried to use this program with the file from the URL that i've given. It doesnt work. Im using Windows Media Player Fileversion 11.0 And my OP is Windows Vista

Sunday, July 20, 2008 11:34 AM by DaveO

# Cheap zolpidem.

Cheap zolpidem. Zolpidem online. Zolpidem without prescription. Zolpidem fedex. Zolpidem.

Friday, August 08, 2008 2:19 AM by Zolpidem.

# re: [Util] Open PLS Playlist in Windows Media Player

The download link is broken.

tools.veloc-it.com/.../Default.aspx

Claims the hostname is bad.

Thursday, August 21, 2008 2:35 AM by GLyndon

# re: [Util] Open PLS Playlist in Windows Media Player

Same problem as GLyndon. Hostname is bad.

Saturday, August 23, 2008 9:35 AM by Jvdb

# re: [Util] Open PLS Playlist in Windows Media Player

I've moved it to a new permanent home: www.codeplex.com/openplsinwmp

Tuesday, August 26, 2008 1:10 PM by Jon Galloway

# re: [Util] Open PLS Playlist in Windows Media Player

"Windows Media Player cannot play the file. The Player might not support the file type or might not support the codec that was used to compress the file."

error message C00D1199

Got Windows Vista and WMP11

What am I supposed 2do?

Thanks

Wednesday, September 24, 2008 11:11 AM by Nela

# re: [Util] Open PLS Playlist in Windows Media Player

Same as the last person.  Its very flakey under vista with WMP11.  It worked the first time I installed it.  Then clicked on a PLS link after 10 times and it finally worked.  

Vista 64 SP1

Saturday, October 11, 2008 2:53 PM by Galvin

# re: [Util] Open PLS Playlist in Windows Media Player

havnt thought about this in ages, seen this ages ago and used it for long time before i realized that if you use this then itll play in wmp

sc1.netstreamer.net

Tuesday, October 21, 2008 12:07 PM by Sol

# re: [Util] Open PLS Playlist in Windows Media Player

THANKS! I can finally stream my college radio station! (via WMP 11.0.6001.7000 on Vista SP1) Works great.

Monday, November 03, 2008 2:35 AM by Steve in Seattle

# re: [Util] Open PLS Playlist in Windows Media Player

Hi

Very nice program. But It does not recognize rtsp:\\ or ULS with no extention. Could you make it a bit more flexible so it recognize other streams than mms://

An interface for URL-handler to manually change settings would be nice from user's point of view . Or it that to hard to implement?

Thx a lot!

Saturday, February 07, 2009 9:18 AM by Alex

# re: [Util] Open PLS Playlist in Windows Media Player

Thanks!!

I was scared that it wouldnt work because I have Vista and well, things dont work for it sometimes, but this does.

Monday, February 16, 2009 7:49 PM by Faith

# re: [Util] Open PLS Playlist in Windows Media Player

Jon, can your app be loaded onto a smartphone such as the samsung saga, which runs Windows Mobile 6.1 with Windows Media Player Mobile edition?  Will it work once it's loaded? Thank you.

Monday, March 02, 2009 6:32 PM by samsung saga

# re: [Util] Open PLS Playlist in Windows Media Player

Very cool tool! I'm really happy that I stumbled upon this.

I'm having a problem with AAC+ Shoutcast stations, though.  I have the Orban plugin installed and I can play streams in WMP if I open them from the Tuner2 site or if I paste the URL in the format that Orban defines(icyx://123.45.67.8:8000).  When I try to open it from Shoutcast directly, I get the error message in WMP "Windows Media Player cannot play the file. The Player might not support the file type or might not support the codec that was used to compress the file."

Suggestions?

Monday, March 09, 2009 3:35 PM by TXTony

# re: [Util] Open PLS Playlist in Windows Media Player

ewe. BSD bracket style

Wednesday, March 25, 2009 5:56 PM by Tak

# re: [Util] Open PLS Playlist in Windows Media Player

It'a working also on Vista?

Saturday, April 04, 2009 10:29 AM by catalin

# re: [Util] Open PLS Playlist in Windows Media Player

I'm asking if it's working under Vista because I tried and still can't listen pls files

Saturday, April 04, 2009 10:33 AM by catalin

# re: [Util] Open PLS Playlist in Windows Media Player

U rock, it works! haha

Tuesday, June 16, 2009 7:58 AM by Kelvin

# re: [Util] Open PLS Playlist in Windows Media Player

Does not work on my computer. I have an mp3 song that opens with windows media player classic but not with media player 11. How can i make it work with WMP 11? or make it work with classic without changing the default program of all my other songs?

sv1296@hotmail.com

Sunday, June 21, 2009 7:03 AM by Pete

# re: [Util] Open PLS Playlist in Windows Media Player

düğün davetiyesi ve davetiye örnekleri

Wednesday, October 28, 2009 6:11 AM by davetiye

# re: [Util] Open PLS Playlist in Windows Media Player

Thanks for this app. Since I am a perfectionist I try not to install two different applications which can do the same thing in a single operating system. I just thought that in version 12 of WMP Microsoft would finally come to senses and allow .pls (on a front door not backdoor :)). Now I don't have to install Winamp since WMP can actually play .pls. And btw thanks for the C# code... Sine I am a programmer it is most useful to see what was lies beneath the executable.

Greetings from Serbia :)

Sunday, December 13, 2009 10:26 AM by Miša Brežanac

# re: [Util] Open PLS Playlist in Windows Media Player

Thanks for this Jon, I can finally ditch winamp. Works great with the shoutcast site. Tune in and it opens in WMP12 which you can then save as a playlist file if you like. :)

Neal

Monday, January 25, 2010 11:24 PM by Neal

# re: [Util] Open PLS Playlist in Windows Media Player

thanks a lot..

your small program works great....

Thursday, January 28, 2010 9:04 AM by Ario

# re: [Util] Open PLS Playlist in Windows Media Player

Another great post.

Thanks for the tips and help.

Everyone, bookmark this site.

Friday, February 05, 2010 12:47 PM by Install Software

# @TTSN99 http://weblogs.asp.net/jgalloway/archive/2004/04/08/_5B00_Util_5D00_-Open-PLS-Playlist-in-Windows-Media-Player.aspx

@TTSN99 http://weblogs. asp.net /jgalloway/archive/2004/04/08/_5B00_Util_5D00_-Open-PLS-Playlist-in-Windows

Thursday, February 18, 2010 8:04 PM by Twitter Mirror

# re: [Util] Open PLS Playlist in Windows Media Player

DUBLIN (Reuters) – The Irish [url=www.redcarpetflorist.com]Los Angeles Flowers[/url] Aviation Authorization said it would allow flights to pick up where in unison left side sour from all Irish airports from 1200 GMT on Tuesday but volcanic ash could dethrone more disruptions later in the week and periodically in every nook the summer.

The IAA had closed airports from 0600 GMT until 1200 GMT apropos to chance of ash ingestion in aircraft engines, although overflights of Ireland from Britain and continental Europe had not been banned.

Tuesday, May 04, 2010 8:16 AM by deephotadia

# re: [Util] Open PLS Playlist in Windows Media Player

Is there a way to get the old install method? Executables not allowed to download.

Monday, December 13, 2010 6:38 PM by JBob

# re: [Util] Open PLS Playlist in Windows Media Player

All things come to those who wait.

-----------------------------------

Sunday, December 19, 2010 12:38 PM by top 10 ipad accessories

# re: [Util] Open PLS Playlist in Windows Media Player

-----------------------------------------------------------

"Hello,I really like studying by means of your blog, I needed to go away a tiny remark to help you and wish you a beneficial continuation. Wishing you the greatest of good fortune for  all of your blogging endeavours."

Tuesday, January 04, 2011 3:09 PM by ipad case

# re: [Util] Open PLS Playlist in Windows Media Player

"Hi there, I observe that your revealed content is rather understanding since it talks about plenty of fascinating information. In Any Event, was questioning whether or not  you would wish to interchange word wide web inbound links with my site, as I'm searching to determine contacts to further amplify and acquire ground for my world-wide-web portal. I do  not thoughts you laying my world-wide-web inbound links in the principal web page, just approving this inbound links on this distinct web web page is a lot more than satisfactory. Anyway, would you be type  enough message me back at my internet site if you are eager in swapping links, I'd actually value that. Thanks a lot and I hope to hear from you shortly! "

Friday, February 11, 2011 6:00 AM by slr camera reviews

Leave a Comment

(required) 
(required) 
(optional)
(required)