I like to be able to drag a video onto a .bat file that starts that video only on my 2nd screen (TV) via HDMI.
I found some code to put in a .bat file that I kind of understand and that is working for the video part, namely...:
Code: Select all
set vlcPath="c:\Program Files (x86)\VideoLAN\VLC\vlc.exe"
%vlcPath% %1 --video-x=1921 --video-y=350 --width=300 --height=300 --fullscreen --novideo-title-show --no-embedded-video --no-qt-fs-controller
At this point the amount of threads or suggestions are getting confusing and there's too much combinations to keep on trying.
If in VLC 2.1.2. I pick/change an audio device in the menu, it always works. Can't get it to work with the command line.
I'd like to know what parameters to try first and how to get the exact name of the audio device that VLC needs, please?
In VLC's menu, it is currently called "TV (NVIDIA High Definition Audi ($1,$64)" [yes, it says "Audi", not "Audio"]
So far I've tried:
--waveout-audio-device="TV"
--directx-audio-device="TV"
--directx-audio-device-name="TV"
... w. full or partial name or abbreviated, with and without quotes, with numbers instead of audio device text, etc.
Some threads seem to suggest you couldn't do this at one point.
So does this work at all in 2.1.2. and if so, how please? TY!