Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要上传任何格式的视频并将其转换为flv。我正在使用 ffmpeg 执行此操作并使用此 ffmpeg 命令
ffmpeg -i input.mp4 -vcodec flv -sameq -ar 22050 -f flv output.flv
该命令运行良好,但问题是输出文件的文件大小是原始输入文件的 5 倍,如果我减少它,它也会降低质量,需要帮助。
你的命令揭示了这一点
删除了选项“sameq”。如果您正在寻找一个选项来保存 质量(这不是 -sameq 的用途),使用 -qscale 0 或等效的 品质因数选项。
这对我有用
ffmpeg -i input.mp4 -vcodec flv -q:a 0 -q:v 0 -ar 22050 -f flv output.flv