Say I wanted to make an m3u that streams a song at this link:
http://www.lightningmp3.com/live/file.php?fid=3243
Is that even possible? It doesn't work when you just stick that "address" into a list.
On the other hand, would it be possible to hack my way into the real address using that one?
How do you make an m3u playlist with eccentric url's
-
- Goldman
- Posts: 717
- Joined: Sat Sep 25, 2004 3:09 pm
-
- Orwell
- Posts: 976
- Joined: Sat Sep 25, 2004 7:07 pm
- Instruments: electricity
- Recording Method: traveler mk1
- Submitting as: starfinger
- Contact:
you mean this:
http://www.lightningmp3.com/live/35595_keepintouch.mp3
that shows up in the address bar in Safari
-craig
http://www.lightningmp3.com/live/35595_keepintouch.mp3
that shows up in the address bar in Safari
-craig
"Starfinger for president!!!" -- arby
"I would 100% nominate you for the Supreme Court." -- frankie big face
"I would 100% nominate you for the Supreme Court." -- frankie big face
- Plat
- Attlee
- Posts: 441
- Joined: Sat Sep 25, 2004 5:54 pm
- Instruments: teeth and other bones
- Recording Method: cubase, native instruments, waves, izotope, ears
- Submitting as: The Cow Exchange, Eat It 'n' Mattress
- Location: Green Bay, WI
- Contact:
EDIT: Craig beat me. And how. Guess I took the long road. Browser location bar? Pshaw! 
That URL loaded fine in my mp3 player (foobar2000).
Your problem could be that your MP3 player doesn't follow HTTP redirects.
For example, when you visit http://www.lightningmp3.com/live/file.php?fid=3243
The server issues a HTTP 302 (redirect) pointing to http://www.lightningmp3.com/live/35595_keepintouch.mp3
If you add http://www.lightningmp3.com/live/35595_keepintouch.mp3 to your playlist, that might work for you.
If that doesn't work, it could be that they're doing something to block your MP3 player's user agent or something. If you're feeling really curious you could always use a packet sniffer like Ethereal to troubleshoot from there.
The server seems to respond fine when no user agent is specified, so I'm guessing your player doesn't handle redirects.
If you're feeling especially geeky, try using your favorite Telnet application to connct to http://www.lightningmp3.com on port 80 and type the following:
GET /live/file.php?fid=3243 HTTP/1.1
Host: http://www.lightningmp3.com
(hit Enter twice after the ".com" to issue the request). Congratulations, you're now a crude HTTP client. You'll see something like:
HTTP/1.1 302 Found
Date: Sat, 08 Apr 2006 02:27:57 GMT
Server: Apache/1.3.34 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwli
mited/1.4 PHP/4.4.2 FrontPage/5.0.2.2635 mod_ssl/2.8.25 OpenSSL/0.9.7a
X-Powered-By: PHP/4.4.2
location: ./35595_keepintouch.mp3
Transfer-Encoding: chunked
Content-Type: text/html
That "Location" header is the URL it's redirecting me to.
Hope this helps!

That URL loaded fine in my mp3 player (foobar2000).
Your problem could be that your MP3 player doesn't follow HTTP redirects.
For example, when you visit http://www.lightningmp3.com/live/file.php?fid=3243
The server issues a HTTP 302 (redirect) pointing to http://www.lightningmp3.com/live/35595_keepintouch.mp3
If you add http://www.lightningmp3.com/live/35595_keepintouch.mp3 to your playlist, that might work for you.
If that doesn't work, it could be that they're doing something to block your MP3 player's user agent or something. If you're feeling really curious you could always use a packet sniffer like Ethereal to troubleshoot from there.
The server seems to respond fine when no user agent is specified, so I'm guessing your player doesn't handle redirects.
If you're feeling especially geeky, try using your favorite Telnet application to connct to http://www.lightningmp3.com on port 80 and type the following:
GET /live/file.php?fid=3243 HTTP/1.1
Host: http://www.lightningmp3.com
(hit Enter twice after the ".com" to issue the request). Congratulations, you're now a crude HTTP client. You'll see something like:
HTTP/1.1 302 Found
Date: Sat, 08 Apr 2006 02:27:57 GMT
Server: Apache/1.3.34 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwli
mited/1.4 PHP/4.4.2 FrontPage/5.0.2.2635 mod_ssl/2.8.25 OpenSSL/0.9.7a
X-Powered-By: PHP/4.4.2
location: ./35595_keepintouch.mp3
Transfer-Encoding: chunked
Content-Type: text/html
That "Location" header is the URL it's redirecting me to.
Hope this helps!
-
- Goldman
- Posts: 717
- Joined: Sat Sep 25, 2004 3:09 pm