gpt4 book ai didi

ffmpeg:AVI 到 FLV 的转换使文件大小翻倍

转载 作者:行者123 更新时间:2023-12-04 22:56:36 25 4
gpt4 key购买 nike

我使用 -sameq 参数(相同质量)使用 ffmpeg 将 AVI 转换为 FLV:

ffmpeg -i test.avi -sameq -f flv sameq.flv

生成的文件具有与原始文件相同的视频和音频质量,但它是原始文件大小的两倍多:
84M sameq.flv
41M test.avi

为什么会这样?

转码器输出:
ffmpeg version N-34750-g070d2d7, Copyright (c) 2000-2011 the FFmpeg developers
built on Nov 12 2011 11:23:07 with gcc 4.6.1
configuration: --enable-gpl --enable-version3 --enable-nonfree --enable-postproc --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-x11grab
libavutil 51. 24. 1 / 51. 24. 1
libavcodec 53. 33. 0 / 53. 33. 0
libavformat 53. 20. 0 / 53. 20. 0
libavdevice 53. 4. 0 / 53. 4. 0
libavfilter 2. 48. 0 / 2. 48. 0
libswscale 2. 1. 0 / 2. 1. 0
libpostproc 51. 2. 0 / 51. 2. 0
Input #0, avi, from 'test.avi':
Duration: 00:06:30.00, start: 0.000000, bitrate: 866 kb/s
Stream #0:0: Video: mpeg4 (Advanced Real Time Simple Profile) (DIVX / 0x58564944), yuv420p, 400x300 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc
Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 44100 Hz, mono, s16, 64 kb/s
[buffer @ 0xa247ae0] w:400 h:300 pixfmt:yuv420p tb:1/1000000 sar:1/1 sws_param:
Output #0, flv, to 'sameq.flv':
Metadata:
encoder : Lavf53.20.0
Stream #0:0: Video: flv1 ([2][0][0][0] / 0x0002), yuv420p, 400x300 [SAR 1:1 DAR 4:3], q=2-31, 200 kb/s, 1k tbn, 25 tbc
Stream #0:1: Audio: mp3 ([2][0][0][0] / 0x0002), 44100 Hz, mono, s16, 128 kb/s
Stream mapping:
Stream #0:0 -> #0:0 (mpeg4 -> flv)
Stream #0:1 -> #0:1 (mp3 -> libmp3lame)
Press [q] to stop, [?] for help
frame= 9742 fps=255 q=0.0 Lsize= 85074kB time=00:06:30.00 bitrate=1787.0kbits/s
video:79163kB audio:5525kB global headers:0kB muxing overhead 0.455568%

最佳答案

想到两点:

  • 压缩没有音频流的视频以消除此问题的音频部分。顺便说一句,音频源是输出比特率的一半,这会稍微增加大小。使用 -ar 和 -ab 开关控制输出。
  • qscale vs quality 上查看这篇文章使用 -qscale 选项。添加 -b(比特率)和 -s(大小)并根据您的需要进行调整。

  • 当一切都失败时,您可以从 ffmpeg website 尝试一些开关。或尝试使用新的 H.264 compression ,建议使用两次通过选项。享受压缩的乐趣

    关于ffmpeg:AVI 到 FLV 的转换使文件大小翻倍,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8113344/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com