
ffplay:ai:746d2
how do I export ffplay output video: delay= to a file
$ ffplay -i input_video.mp4 -vf "setpts=(PTS-STARTPTS)/1+delay/TB,scale=1280:-1" -af "atempo=2" -f nut - | ffmpeg -i pipe:0 -c:v libx264 output_video.mp4
try on your machine
This command uses ffplay to apply a delay to the input video and plays it with a higher speed, then pipes the output to ffmpeg to save it to a file.
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.
Questions that are answered by this command:
- how do I export ffplay output video: delay= to a file ?