M3U

From Wikipedia, the free encyclopedia

M3U
File extension: .m3u
MIME type: audio/x-mpegurl
Developed by: Nullsoft
Type of format: Playlist

M3U (Moving Picture Experts Group Audio Layer 3 Uniform Resource Locator, MP3 URL) 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, RealPlayer, Windows Media Player, iTunes, QuickTime Player, Yahoo! Music Engine, JetAudio, RokuLabs SoundBridge, Spider Player, 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.

The file is saved with the "M3U" or "m3u" filename extension.

The unicode version of "m3u" is "m3u8", it can include UTF-8 unicode characters.

[edit] Compare with

[edit] Example

There is an example of m3u file. mymusic.mp3 and myanothermusic.ogg are the mediafiles. 123 and 321 are the lengths by seconds. A length of -1 may be used when the media file is a streaming file, as there is no predefined actual length value possible. The value after the length is the title to be shown, which is generally the same as the location of the file which is on the second line.

By calutiya@gmail.com & Aheir: If you want to create an m3u file, linking to a specified folder (Flash-drive, CD-ROM, or any other folder on the hard drive) see the last example. The m3u-file should contain only one string - the path to your folder. After starting up winamp will play all contents of the folder:

#EXTM3U

#EXTINF:123,My music title
C:\Documents and Settings\I\My music\mymusic.mp3

#EXTINF:321,My another music title
C:\Documents and Settings\I\My music\supermusic\myanothermusic.ogg

C:\Music

[edit] External links