I will use --start-time and --run-time for each request.
What I have working is the command for a single video...
Code: Select all
"c:\Program Files\VideoLAN\VLC\vlc.exe" --fullscreen --playlist-enqueue --start-time=300 --run-time=30 c:\movie.mp4
(1) Can I do multiple videos, including start- and run-time for each, in the one command line?
What would be the format, please?
I've read somewhere to use a pipe? How would it look?
Code: Select all
"c:\Program Files\VideoLAN\VLC\vlc.exe" --start-time=300 --run-time=30 c:\vid_1.mp4|--start-time=500 --run-time=60 c:\vid_2.mp4| ...?
(2) If that's not possible, can I have the PC write a playlist to disk that includes start-time and run-time xml tags for each video?
(3) Is there a command line parameter to ensure I won't see subtitles?
--sub-file="" ?
Thanks for any hints!