i would like to play a video with VLC on 2 monitors simultaneously. In the command line help the following is described about cloning:
So, I tried the following command-line options:Clone video filter (clone)
Duplicate your video to multiple windows and/or video output modules
--clone-count=<integer> Number of clones
Number of video windows in which to clone the video.
--clone-vout-list=<string> Video output modules
You can use specific video output modules for the clones. Use a
comma-separated list of modules.
Code: Select all
vlc.exe --video-splitter=clone --clone-count=2 S:\ExampleVideos\Performance_Test1080p60_ProRes422.mov
But they can't play my videos 100% smoothly.
After some googling I found out that this should work better with OpenGL.
Since OpenGL is also supported by VLC, I tried the following options:
Code: Select all
--video-splitter=clone --clone-vout-list=glwin32,glwin32 S:\ExampleVideos\Performance_Test1080p60_ProRes422.mov
Code: Select all
--video-splitter=clone --clone-count=2 --clone-vout-list=glwin32 S:\ExampleVideos\Performance_Test1080p60_ProRes422.mov
How can I achieve, that VLC opens 2 cloned OpenGL windows?