a few --start-time for each playlist item?
Posted: 27 Dec 2008 21:26
by Lorni
vlc.exe 1.avi --start-time=5 2.avi --start-time=10 3.avi --start-time=15
works like
vlc.exe 1.avi 2.avi 3.avi --start-time=15
how to separate --start-time for each element?
Re: a few --start-time for each playlist item?
Posted: 29 Dec 2008 15:27
by VLC_help
http://wiki.videolan.org/VLC_command-line_help
Options-styles:
--option A global option that is set for the duration of the program.
-option A single letter version of a global --option.
ption An option that only applies to the stream directly before it
and that overrides previous settings.
so maybe : works better, so
Code: Select all
vlc.exe 1.avi :start-time=5 2.avi :start-time=10 3.avi :start-time=15
Re: a few --start-time for each playlist item?
Posted: 29 Dec 2008 22:35
by Lorni
Thank you, It works.