【发布时间】:2016-08-29 11:07:44
【问题描述】:
我使用 avconv 将 webm(转换时仍在记录)转换为 h264。 我希望 avconv 在写入文件时等待。
https://libav.org/avconv.html#file 说我可以使用 follow 和 rw_timeout 选项。 但是当我将它们与 avconv 11.7 一起使用时,我总是得到未识别的选项响应。
avconv -y -follow 1 -i file:/tmp/video/krtv/5405457303486272/recordings/video.webm -s hd720 -r 15 -strict experimental -c:v libx264 -c:a aac /tmp/video/krtv/5405457303486272/sized/video.mp4
avconv version 11.7, Copyright (c) 2000-2016 the Libav developers
built on Aug 29 2016 10:40:47 with gcc 4.7 (Debian 4.7.2-5)
Unrecognized option 'follow'.
Error splitting the argument list: Option not found
如何在 avconv 11.7 的文件协议上使用这些选项?
【问题讨论】:
标签: avconv