我是这个话题的新手,很抱歉这样一个一般性的问题。所以我有多个显示器m_1
,m_2
,..., m_n
和多个视频文件v_1
,v_2
,..., v_n
我想在m_1
、v_2
m_2
等上同时以全屏v_1
打开。
我能够在不同的窗口中一次启动多个视频,但我不知道如何将视频全屏放置在特定的显示器上。
我正在考虑python-vlc
但如果有更好的方法,请告诉我。
任何帮助将不胜感激。
来自 https://wiki.videolan.org/VLC_command-line_help/
--directx-device={,display,\.DISPLAY1}
Name of desired display device
In a multiple monitor configuration, you can specify the Windows
device name of the display that you want the video window to open on.
For example, "\.DISPLAY1" or "\.DISPLAY2".
一旦你用vlc CLI应用程序找出正确的参数,你应该能够通过python包装器将它们提供给libvlc vlc.Instance('--directx-device=xxxx')
。