How To Make A M3U File
How To Make A M3U File
This is a tutorial on how to create m3u files in Notepad. (Yes, I said Notepad.
m3u music files are TEXT.)
Wikipedia wrote:
M3U (MPEG Version 3.0 URL [1]) is a computer file format that stores multimedia
playlists. It was originally implemented in Winamp, although it is now supported
by many applications, including VLC media player, XMMS, foobar2000, JuK, Real
Player, Windows Media Player, iTunes, Yahoo! Music Engine, JetAudio, and
Playstation Portable.
An M3U file is a plain text file that contains the locations of one or more media
files that the mediaplayer should play. Each location is placed on a new line. The
locations can be either absolute or relative local pathnames (e.g., "C:\My
Music\Chanson.mp3" or "Chanson.mp3") or they can be URLs. The file can also
include comments, prefaced by the "#" character. In extended M3U, "#" also
introduces extended M3U directives.
One common use of the M3U file format is creating a playlist file that contains a
single entry pointing to a stream on the Internet. The created file provides easy
access to that stream and can be used for things like downloading from a website
or for emailing, or for Internet radio listening.
Ok. On to the format. As the Wiki quote says, the link to the music file can be
either online(WWW) or offline (C:/)
Here is the basic format. Song is the song name. The song in the example is on
your C drive.
Code:
#EXTM3U
#EXTINF:153,Artist - Song
C:\Song.mp3
As you can see, very simple--yet very powerful. You can distribute your music
easily by giving people m3u files, yet they do not have your music (often on a FTP
server or such) to edit, etc. They also do not have to download the music
outright, only later.
Anyway, that is how you create m3u files. Very simple, very useful.