Play video file with VLC, then quit VLC

↘锁芯ラ 提交于 2019-12-06 17:18:27

问题


I am working on a simple Python script that is supposed to do something, then play a video file, and then do some more stuff.

I am forced to do this on a Windows XP machine with Python 3.2.3 and VLC to play my video file.

I am currently using this code...

vlc_path = '\\path\\to\\vlc.exe'
video_path = '\\path\\to\\video\\file'
subprocess.call([vlc_path, video_path])

... to open VLC and play the video. It works nicely. However, the script waits for VLC to quit before it goes on. Which is good and I want to keep it that way.

My question is: Is there a way to quit VLC right after the video file has been played?

Thanks a lot for any help!


回答1:


Funnily enough, vlc has a command line option for this:

  --play-and-exit, --no-play-and-exit
                             Play and exit (default disabled)

So, just pass this option to vlc.




回答2:


Another option would be to pass the dummy item vlc://quit, e.g.:

vlc audio1.mp3 audio2.mp3 vlc://quit

Source: https://wiki.videolan.org/Transcode/#Completely_non-interactive_transcoding




回答3:


Best way I can think of is killing the process by a separate thread after video length has passed, if you know the length of the video in Python. Elsewhere, it depends on VLC-s command line options. Maybe you can tell him to close after playing the movie.




回答4:


If nothing works try using the option --ignore-config at the beginning after vlc in addition to http://quit at the end



来源:https://stackoverflow.com/questions/10249261/play-video-file-with-vlc-then-quit-vlc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!