Welcome to Firefly
Switch language
Firefly Docsss
Last Updated: 2026-08-27 07:36:09

General Troubleshooting

General FFmpeg Usage

General Troubleshooting

SymptomWhat to check
Unknown encoderUse ffmpeg -encoders to confirm that the encoder was built
Invalid data found when processing inputCheck file integrity and whether the detected container format is correct
Could not find codec parametersIncrease -analyzeduration and -probesize, or check whether the live stream contains complete headers
Non-monotonous DTSInspect input timestamps, concatenation, remuxing, and the capture clock
Output has no audio or subtitlesUse ffprobe and -map to select streams explicitly
Output file is too largeAdjust CRF, bitrate, resolution, or frame rate
Processing is slowCheck the encoding preset, software filters, I/O, and hardware acceleration status

Enable detailed logging:

ffmpeg -loglevel verbose -i input.mp4 <output-options> output.mp4

Save a complete log for issue reporting:

ffmpeg -report -i input.mp4 <output-options> output.mp4

On this page