I have a problem with the repeat parameter.
I want to repeat only a specific playlist item.-R, --repeat, --no-repeat Repeat current item (default disabled)
VLC will keep playing the current playlist item. (default disabled)
My Playlist:ption An option that only applies to the stream directly before it
and that overrides previous settings.
screenSaver.mov
movie.mov
I tried to start vlc with this command (Java code):
Code: Select all
Runtime.getRuntime().exec(new String[]{"C:\\Program Files (x86)\\VideoLAN\\VLC\\vlc.exe",
"--fullscreen", "--quiet", screenSaverFile.getAbsolutePath(),
presentationFile.getAbsolutePath(), ":repeat"});
Code: Select all
"C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" --fullscreen --quiet
C:\screenSaver.mov C:\movie.mov :repeat
Please help me