Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
902085ea
Commit
902085ea
authored
Mar 04, 2008
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document that we now require :// between access and url
Signed-off-by:
Christophe Mutricy
<
xtophe@videolan.org
>
parent
fae5455b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
NEWS
NEWS
+3
-0
src/libvlc-module.c
src/libvlc-module.c
+3
-3
No files found.
NEWS
View file @
902085ea
...
...
@@ -35,6 +35,9 @@ Important notes:
* You now need to append --m3u-extvlcopt to your command line to enable
EXTVLCOPT options parsing in m3u playlists. Note that only a limited set
of options is available to m3u playlists (CVE-2007-6683).
* The old access:url syntax is no longer supported. Use access://url instead.
E.g.: vlc:quit -> vlc://quit ;
udp:@239.255.12.12 -> udp://@239.255.12.12
Changes:
--------
...
...
src/libvlc-module.c
View file @
902085ea
...
...
@@ -1384,10 +1384,10 @@ const char vlc_usage[] = N_(
"
\n
[dvd://][device][@raw_device] DVD device"
"
\n
[vcd://][device] VCD device"
"
\n
[cdda://][device] Audio CD device"
"
\n
udp:[[<source address>]@[<bind address>][:<bind port>]]"
"
\n
udp:
//
[[<source address>]@[<bind address>][:<bind port>]]"
"
\n
UDP stream sent by a streaming server"
"
\n
vlc:
pause:<seconds>
Special item to pause the playlist for a certain time"
"
\n
vlc:
quit
Special item to quit VLC"
"
\n
vlc:
//pause:<seconds>
Special item to pause the playlist for a certain time"
"
\n
vlc:
//quit
Special item to quit VLC"
"
\n
"
);
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment