在流式传输简单命令时如下
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>]
但我仍然不太懂得如何执行命令。有人请举几个例子吗?我怀疑这用不多。