Next track or shuffle in M3U playlist?
I have an M3U play-list that has URLs for some MP3s from around the web. It's on a server so I can open it on other computers and my iPhone.
Unfortunately, all the players I've tried don't l开发者_如何转开发et me hit the "next" button to go to the next song in the play-list. Is there a way to specify that ability in the M3U file? Or, if not that, can I make a media player to automatically shuffle the play-list?
I could always make a script to shuffle it myself, but I'd like to use something built into M3U if it exists.
if you don't already have the length of the track in your M3U, try including it, in this format:
#EXTINF:180,Unknown Artist - Unknown Track
/tmp/musicfile.mp3
(where 180 is the length of the track in seconds)
Alternatively, have you seen this article on creating iPhone-and-desktop-friendly embedded-audio web pages?
精彩评论