如果我有一个由 Premiere Pro 制作的非常大的几 GB 的视频文件,其中包含一些图像和音频,我怎样才能使视频小很多?

如果我有一个由 Premiere Pro 制作的非常大的几 GB 的视频文件,其中包含一些图像和音频,我怎样才能使视频小很多?

如果我有一个由 Premiere Pro 制作的非常大的几 GB 的视频文件,其中包含类似 PowerPoint 的幻灯片和音频,我怎样才能让视频变小很多?

无论是在 ffmpeg 还是 premiere pro 中

该文件肯定不会超过 1GB。它只有音频和非常低分辨率的图像。

它只有一两张图像......图像不会经常变化。

有些文本大约每 5 分钟变化一次。

视频时长3.5小时。

C:\Users\User\Desktop\pprogenproj>mediainfo GenVideo.mp4
General
Complete name                            : GenVideo.mp4
Format                                   : MPEG-4
Format profile                           : Base Media / Version 2
Codec ID                                 : mp42 (mp42/mp41)
File size                                : 6.76 GiB
Duration                                 : 3 h 30 min
Overall bit rate mode                    : Variable
Overall bit rate                         : 4 597 kb/s
Encoded date                             : UTC 2020-01-01 23:28:03
Tagged date                              : UTC 2020-01-02 00:15:22
TIM                                      : 00:00:00:00
TSC                                      : 25
TSZ                                      : 1

Video
ID                                       : 1
Format                                   : AVC
Format/Info                              : Advanced Video Codec
Format profile                           : [email protected]
Format settings                          : CABAC / 4 Ref Frames
Format settings, CABAC                   : Yes
Format settings, Reference frames        : 4 frames
Format settings, GOP                     : M=4, N=25
Codec ID                                 : avc1
Codec ID/Info                            : Advanced Video Coding
Duration                                 : 3 h 30 min
Source duration                          : 3 h 30 min
Bit rate                                 : 4 403 kb/s
Width                                    : 1 280 pixels
Height                                   : 720 pixels
Display aspect ratio                     : 16:9
Frame rate mode                          : Constant
Frame rate                               : 25.000 FPS
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 8 bits
Scan type                                : Progressive
Bits/(Pixel*Frame)                       : 0.191
Stream size                              : 6.47 GiB (96%)
Source stream size                       : 6.47 GiB (96%)
Language                                 : English
Encoded date                             : UTC 2020-01-01 23:28:03
Tagged date                              : UTC 2020-01-01 23:28:03
Color range                              : Limited
Color primaries                          : BT.709
Transfer characteristics                 : BT.709
Matrix coefficients                      : BT.709
Codec configuration box                  : avcC

Audio
ID                                       : 2
Format                                   : AAC LC
Format/Info                              : Advanced Audio Codec Low Complexity
Codec ID                                 : mp4a-40-2
Duration                                 : 3 h 30 min
Source duration                          : 3 h 30 min
Bit rate mode                            : Variable
Bit rate                                 : 192 kb/s
Maximum bit rate                         : 276 kb/s
Channel(s)                               : 2 channels
Channel layout                           : L R
Sampling rate                            : 48.0 kHz
Frame rate                               : 46.875 FPS (1024 SPF)
Compression mode                         : Lossy
Stream size                              : 285 MiB (4%)
Source stream size                       : 285 MiB (4%)
Language                                 : English
Encoded date                             : UTC 2020-01-01 23:28:03
Tagged date                              : UTC 2020-01-01 23:28:03



C:\Users\User\Desktop\pprogenproj>

答案1

使用ffmpeg重新编码视频和音频,或者以较低的音频比特率和较低的视频配置文件重新录制。

由 barlop 添加

将其重新编码为 mp4 的默认设置 -vcodec libx264 使其变得更小,因为它将其编码为比原始低得多的比特率,因此这产生了最大的差异。此外,由于视频主要像幻灯片一样,我调整了帧速率。执行 -r 3 是每秒 3 帧的帧速率。这也会大大降低比特率。

ffmpeg -i input.mp4 -r 3 output.mp4 这与

ffmpeg -i input.mp4 -vcodec libx264 -acodec aac -r 3 output.mp4

答案2

有人向我推荐了这个 ffmpeg,它使视频变得更小了。

ffmpeg -i GenVideo.mp4 -pix_fmt yuv420p out.mp4

C:\Users\User\Desktop\pprogenproj>ffmpeg -i GenVideo.mp4 -pix_fmt yuv420p out.mp4

C:\Users\User\Desktop\pprogenproj>dir GenVideo.mp4
 Volume in drive C has no label.
 Volume Serial Number is 4645-5DCE

 Directory of C:\Users\User\Desktop\pprogenproj

02/01/2020  01:23     7,253,511,627 GenVideo.mp4
               1 File(s)  7,253,511,627 bytes
               0 Dir(s)  113,148,440,576 bytes free

C:\Users\User\Desktop\pprogenproj>dir out.mp4
 Volume in drive C has no label.
 Volume Serial Number is 4645-5DCE

 Directory of C:\Users\User\Desktop\pprogenproj

03/04/2020  22:50       465,971,012 out.mp4
               1 File(s)    465,971,012 bytes
               0 Dir(s)  113,148,375,040 bytes free

C:\Users\User\Desktop\pprogenproj>

添加

我会接受 K7AYY 的回答,因为它比我之前的回答有了显著的改进

调整帧率 -

ffmpeg -i GenVideo.mp4 -pix_fmt yuv420p -r 3 out2.mp4

C:\Users\User\Desktop\pprogenproj>ffmpeg -i GenVideo.mp4 -pix_fmt yuv420p -r 3 out2.mp4

C:\Users\User\Desktop\pprogenproj>dir out2.mp4
 Volume in drive C has no label.
 Volume Serial Number is 4645-5DCE

 Directory of C:\Users\User\Desktop\pprogenproj

04/04/2020  00:23       244,072,990 out2.mp4
               1 File(s)    244,072,990 bytes
               0 Dir(s)  112,900,947,968 bytes free

C:\Users\User\Desktop\pprogenproj>

重新调整比特率。看起来调整帧速率,-r 3,(每秒 3 帧),会降低比特率。

执行此行ffmpeg -i GenVideo.mp4 -pix_fmt yuv420p out.mp4 不会-pix_fmt yuv420p产生任何差异,因为原始文件已经是那样了。例如 mediainfo 显示它是 YUV 和色度采样 4:2:0,即 yuv420p。而 ffmpeg -i Genvideo.mp4 显示 yuv420p。应该指定编解码器(-vcodec 和 -acodec)。默认似乎是 -vcodec libx264 -acodec aac。

那么,ffmpeg -i GenVideo.mp4 -vcodec libx264 -acodec aac -r 3 out.mp4就很好了。

C:\Users\User\Desktop\pprogenproj>ffmpeg -i GenVideo.mp4 -vcodec libx264 -acodec aac -r 3 GenVideoSmaller4.mp4

C:\Users\User\Desktop\pprogenproj>dir GenVideoSmaller4.mp4
 Volume in drive C has no label.
 Volume Serial Number is 4645-5DCE

 Directory of C:\Users\User\Desktop\pprogenproj

04/04/2020  22:16       244,072,990 GenVideoSmaller4.mp4
               1 File(s)    244,072,990 bytes
               0 Dir(s)  110,397,407,232 bytes free

C:\Users\User\Desktop\pprogenproj>

ffmpeg -i input.mp4 output.mp4(即 -vcodec libx264 -acodec aac),可将比特率从 4000kb/s 大幅降低至 171kb/s。(将 7GB 变为 400MB,或将 35MB 变为 2MB)。添加 -r 3 可将其降低至 45kb/s,将 400MB 文件变为约 240M,将 2MB 变为约 2.1MB 至 1.2MB。

相关内容