Using the latest VLC on Win7 64bit
- I'm trying to use the Command line --input-slave to play two synced Videos together ... that works
WORKING CODE:
Code: Select all
start "first VLC" "C:\Program Files\VideoLAN\VLC\vlc.exe" C:\Users\acer\Desktop\a.mov --input-slave C:\Users\acer\Desktop\b.mov --start-time 0 --input-repeat=-1
Code: Select all
start "first VLC" "C:\Program Files\VideoLAN\VLC\vlc.exe" C:\Users\acer\Desktop\a.mov --no-embedded-video --directx-device="\\.\DISPLAY1" --fullscreen --loop
start "second VLC" "C:\Program Files\VideoLAN\VLC\vlc.exe" C:\Users\acer\Desktop\b.mov --no-embedded-video --directx-device="\\.\DISPLAY2" --fullscreen --loop
how do i run --directx-device & --input-slave together ??
I tried:
Code: Select all
start "first VLC" "C:\Program Files\VideoLAN\VLC\vlc.exe" C:\Users\acer\Desktop\a.mov --directx-device="\\.\DISPLAY1" --input-slave C:\Users\acer\Desktop\b.mov --directx-device="\\.\DISPLAY2" --fullscreen --start-time 0 --input-repeat=-1
Please help me to find a fix ! I definitely need the videos synced via --input-slave otherwise they will run apart after a while.