【发布时间】:2018-07-16 01:34:06
【问题描述】:
在流式传输如下所示的简单命令时
ffmpeg -i "Alien.mkv" -f webm tcp://localhost:8080/listen.webm
如果我按“?” ffmpeg 似乎具有以下选项的交互模式
? show this help
+ increase verbosity
- decrease verbosity
c Send command to first matching filter supporting it
C Send/Queue command to all matching filters
D cycle through available debug modes
h dump packets/hex press to cycle through the 3 states
q quit
s Show QP histogram
我对选项'c'很好奇
这是否意味着我可以在正在运行的流上执行更多命令?比如说在一个正在运行的流中寻找一个新的位置? (我知道你通常不会这样做)
我对这些一无所知,并且在 ffmpeg 文档或其他地方找不到太多内容。如果我按'c',它建议我应该使用的语法是:
Enter command: <target>|all <time>|-1 <command>[ <argument>]
但我还是不太明白如何执行命令。有人可以举几个例子吗?我怀疑这用得不多。
【问题讨论】: