
ffplay
List of commands for ffplay:
-
ffplay:ai:3a997 Export ffplay log to a text file$ ffplay -loglevel trace -i input.mp4 > output.txttry on your machineexplain this command
-
ffplay:ai:5bfcf Export ffplay output to a file named output.txt$ ffplay -i input_file.mp4 -loglevel quiet -report > output.txttry on your machineexplain this command
-
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.mp4try on your machineexplain this command
-
ffplay:ai:85c82 Exports ffplay logs with trace level to a file named log.txt$ ffplay -loglevel trace > log.txttry on your machineexplain this command
-
ffplay:ai:85e42 Redirect the standard error output of ffplay to a log file named output.log$ ffplay input.mp4 2> output.logtry on your machineexplain this command
-
ffplay:ai:c8191 how do I export ffplay -loglevel trace -i filtering a string to a file$ ffplay -loglevel trace -i filtering a string > output.txttry on your machineexplain this command
-
ffplay:tldr:44a81 ffplay: Play a media file.$ ffplay ${filename}try on your machineexplain this command
-
ffplay:tldr:6b832 ffplay: Show only video keyframes.$ ffplay -vf select="${eq(pict_type\,PICT_TYPE_I)}" ${filename}try on your machineexplain this command
-
ffplay:tldr:cc5ae ffplay: Play a video and show motion vectors in real time.$ ffplay -flags2 +export_mvs -vf codecview=mv=pf+bf+bb ${filename}try on your machineexplain this command