我想並排打開多個VLC媒體播放器的實例, 如何在Windows上設置座標?我在VLC命令行中找不到任何東西,有沒有辦法啓動這些命令行,並使用Windows參數傳遞一些位置。VLC媒體播放器 - 設置座標
由於
我想並排打開多個VLC媒體播放器的實例, 如何在Windows上設置座標?我在VLC命令行中找不到任何東西,有沒有辦法啓動這些命令行,並使用Windows參數傳遞一些位置。VLC媒體播放器 - 設置座標
由於
轉到工具>偏好或按[Ctrl + P]。
Under the currently selected Interface preference, find the heading that says Playlist and Instances.
Make sure that Allow only one instance checkbox is not checked.
要打開第二個播放器窗口,我們只需點擊任何用於訪問軟件的快捷方式。搜索並點擊開始菜單中的VLC菜單項,它將打開一個新菜單項。同樣,您也可以簡單地右鍵單擊任務欄中的當前VLC圖標,然後單擊VLC Media Player打開一個新圖標。
獲取更多的指令here: http://filejunkie.org/download/vlc_media_player.html
無法通過用戶界面做到這一點。只要寫一個包含批處理/ shell腳本:
vlc.exe --no-one-instance --no-embedded-video --video-x=50 --video-y=50 videofile.mp4
如果要禁用窗口邊框只需添加:
--no-video-deco
,並設置窗口大小使用:
--width=640 --height=480
希望能幫助到你。