我想并排打开多个VLC媒体播放器实例。
如何设置Windows的坐标?我在VLC命令行中找不到任何东西,有没有办法可以启动它们,并使用Windows参数传递一些位置。
转到工具>首选项或按[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
希望能帮助到你。