无法让VLC写入新文件(正在整理,无法转码)


1

我正在尝试使用从原始修剪的VLC创建一个新文件。我不想转码。我正在使用以下命令:

vlc -I dummy "L:\temp\input.mp4" --start-time 71 --stop-time 74 --sout-standard-access=file --sout-standard-dst="L:\test2.mp4"

我没有收到有关L:驱动器访问的错误消息,文件播放了(在子集中),但是没有创建新文件。我想念什么?使用时-vvv,没有出现需要其他参数的错误,这使我觉得我没有缺少必需的参数,但我无法确定。

注意:我知道我可以使用它:sout来更优美地链接参数,但是为了调试和学习(CLI文档对新用户不友好),我努力按照该页面上的描述列出每个参数:

You may also use the following syntax :  
`% vlc input_stream --sout-module1-option1=... --sout-module1-option2=... --sout-module2-option1=... --sout-module2-option2=... ...`

为清楚起见进行编辑:

VLC在我的路径中。

分解命令,我理解它的意思是:

  • vlc 运行VLC
  • -I dummy 显示虚拟(CLI反馈)界面
  • "L:\temp\input.mp4" 输入文件是这个
  • --start-time 71 开始于71秒
  • --stop-time 74 停在74秒
  • --sout-standard-access=file通过Standard访问“文件”进行 输出
  • --sout-standard-dst="L:\test2.mp4"使用Standard目标的输出是L:\test2.mp4
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.