-
-
Notifications
You must be signed in to change notification settings - Fork 4
VLC URLs
Andrew Lambert edited this page Nov 27, 2020
·
7 revisions
All media played through libvlc are identified by their Media Resource Locator, or MRL. MRLs are a super-set of URLs, and include media-specific protocol schemes.
Available schemes include:
Scheme | Example | Comment |
---|---|---|
file | file:///path/file |
Plain media file (i.e. FolderItem.URLPath ) |
http | http://host[:port]/file |
HTTP URL |
ftp | ftp://[user:password@]host[:port]/file |
FTP URL |
mms | mms://host[:port]/file |
Microsoft Media Server URL |
screen | screen://0 |
Screen capture |
dvd | dvd:///Z:/ |
DVD device |
dvdsimple | dvdsimple:///Z:/ |
DVD device with no menus |
vcd | vcd:///Z:/ |
VCD device |
cdda | cdda:///Z:/ |
Audio CD device |
udp | udp://[[<source address>]@[<bind address>][:<bind port>]] |
UDP stream sent by a streaming server |
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2016-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.
Entry-level points of interest denoted by "☜"