我想使用 VLC 媒体播放器从 USB 电视接收器录制。我想安排录制时间,但从命令行调用 vlc:
vlc -Idummy dshow:// --sout=#transcode{vcodec=mp2v,audio=mp2a}:standard{access=file,dst=fromtv.mpg}
我缺少的是一种限制此命令运行时间的方法。我知道 dshow:// 是播放列表上的一个条目,并且 VLC 正在播放列表中向下运行,但它将从 dshow:// 读取,因为它是一个输入设备。
有没有办法限制运行时间长度在dshow://
命令行上?
答案1
尝试
--run-time=<float> Run time
The stream will run till this position (in seconds).
并可能设置vlc:\\quit
为下一个命令。