I've searched the forum and researched all the CLI options, but I can't quite seem to get this working exactly as I'd like.
My goal: get VLC to start with no interface (only a title bar, min/max/close buttons, and the video), and start with a set window size, at a set position.
If I use a dummy interface (-I dummy):
Code: Select all
vlc.exe -I dummy --dummy-quiet --video-on-top --no-audio --zoom=0.7 --video-x=1430 --video-y=30 video.mp4
- - the window is un-closable; I can click the X in the corner, but nothing happens
- positioning works (--video-x, --video-y)
- size (--width, --height) does not work, unless I turn off video autoresizing (--no-autoscale),
- however, I can manipulate the size via the (--zoom) option, which is totally acceptable
Code: Select all
vlc.exe --qt-minimal-view --qt-video-autoresize --video-on-top --no-audio --zoom=0.7 video.mp4
- - positioning does not work
- window size does not work, but again, I can trick it using the (--qt-video-autoresize) and (--zoom) options
- the window does close as it should when I click the X
So, is there any way I can resolve the other two interface's shortcomings?
`