While streaming a simple command like below
ffmpeg -i "Alien.mkv" -f webm tcp://localhost:8080/listen.webm
if I press '?' ffmpeg seems to have an interactive mode with the below options
? 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
I was curious about option 'c'
Does this mean that I can execute further commands on the running stream? Say for instance seeking a new position in a running stream? (I realise you wouldn't normally do this)
I don't really know anything about these and couldn't find much in the ffmpeg documentation or else where. If I press 'c' it suggests the syntax I should use is:
Enter command: <target>|all <time>|-1 <command>[ <argument>]
but I still don't really understand how to execute a command. Would someone please give a few examples? I suspect that this isn't used much.