I have 2 video, the first is just a standard video (video.mp4) and the second is a directshow streaming. I need to diffuse the video on the left of my screen and the stream on the right, I have a 16:9 screen also the to video need to bien 4:3. And I will do that with Batch and command line.
I encounter a lot of issues, also I don't know if I use correctly the vlc command line.
my video.mp4 resolution is 1920x1080
my stream resolution is very low (I use an analogical converter, like converter for VHS to digital)
Without border and menu
base command
Code: Select all
vlc video.mp4 --no-video-deco --no-embedded-video --crop=4:3
vlc dshow:// --dshow-vdev="Dazzle DVC100 Video" --dshow-adev=None --no-video-deco --no-embedded-video --crop=4:3
resize video/alignment left-right
I need the video windows take half of my resolution (note the video)
I add this command
Code: Select all
--width=960 --height=540
I add this command
Code: Select all
--align=5 (top-left to video)
--align=6 (top right to streaming)
manual position
I add this command
Code: Select all
--video-x=-1 --video-y=-1 (video)
--video-x=961 --video-y=-1 (stream)
maybe not embedded video is a problem, also I try with minimal border (no menu)