我有一个视频,其中只有一张图片和一条音轨。它非常大,我想让它变小一点。由于只有一个图像/帧,我认为如果只保存并显示这一帧,而不是在每一帧中都有图像的副本,那么效率会更高。如何在 Linux 上使用 ffmpeg 制作这样的视频?
到目前为止我已经使用过命令
ffmpeg -i input.mp4 -vcodec libx265 -crf 28 output.mp4
这大大减少了文件大小。我不太清楚它是如何做到的,但由于结果几乎和音轨(我提取出来进行比较)一样小,所以 condec 似乎是一个不错的选择。
但是转换过程需要花费太多时间,而且我还想转换其他几个视频。有没有办法加快转换过程或选择其他命令?
例如,我在想,我是否可以告诉 ffmpeg 它只是一张图像,它应该只使用第 n 帧,而不必费心对其余部分进行编码。
编辑:使用 Баяр Гончикжапов 的想法来使用以下命令:
file="input.mp4"
ffmpeg -i "$file" -f image2 -frames:v 1 /tmp/tmp.jpg
ffmpeg -i "$file" -i /tmp/tmp.jpg -map 0:a -map 1:v -c:a copy -c:v copy output.mp4
$ mediainfo "$file"
General
Complete name : 1 Hour Epic Music _ Best Of Two Steps From Hell Voll. III.mp4
Format : MPEG-4
Format profile : Base Media / Version 2
Codec ID : mp42
File size : 134 MiB
Duration : 1h 0mn
Overall bit rate mode : Variable
Overall bit rate : 308 Kbps
Encoded date : UTC 2013-11-28 04:41:00
Tagged date : UTC 2013-11-28 04:41:00
gsst : 0
gstd : 3648063
gssd : B5CC58185HH1408390296880239
gshh : r2---sn-9nj-q0ne.googlevideo.com
Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : Baseline@L3
Format settings, CABAC : No
Format settings, ReFrames : 1 frame
Format settings, GOP : M=1, N=60
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Duration : 1h 0mn
Bit rate : 210 Kbps
Maximum bit rate : 2 389 Kbps
Width : 640 pixels
Height : 360 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 24.000 fps
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.038
Stream size : 91.3 MiB (68%)
Encoded date : UTC 1904-01-01 00:00:00
Tagged date : UTC 2013-11-28 04:41:19
Audio
ID : 2
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : 40
Duration : 1h 0mn
Bit rate mode : Variable
Bit rate : 96.0 Kbps
Maximum bit rate : 102 Kbps
Channel(s) : 2 channels
Channel positions : Front: L R
Sampling rate : 44.1 KHz
Compression mode : Lossy
Stream size : 41.7 MiB (31%)
Title : IsoMedia File Produced by Google, 5-11-2011
Encoded date : UTC 2013-11-28 04:41:10
Tagged date : UTC 2013-11-28 04:41:19
$ mediainfo /tmp/output.mp4
General
Complete name : /tmp/output2.mp4
Format : MPEG-4
Format profile : Base Media
Codec ID : isom
File size : 42.4 MiB
Duration : 1h 0mn
Overall bit rate mode : Constant
Overall bit rate : 97.4 Kbps
Encoded date : UTC 1904-01-01 00:00:00
Tagged date : UTC 1904-01-01 00:00:00
Writing application : Lavf57.83.100
Video
ID : 2
Format : JPEG
Codec ID : 6C
Duration : 40ms
Bit rate mode : Constant
Bit rate : 4 215 Kbps
Width : 640 pixels
Height : 360 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
Compression mode : Lossy
Bits/(Pixel*Frame) : 0.732
Stream size : 20.6 KiB (0%)
Encoded date : UTC 1904-01-01 00:00:00
Tagged date : UTC 1904-01-01 00:00:00
Audio
ID : 1
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : 40
Duration : 1h 0mn
Bit rate mode : Constant
Bit rate : 96.0 Kbps
Channel(s) : 2 channels
Channel positions : Front: L R
Sampling rate : 44.1 KHz
Compression mode : Lossy
Stream size : 41.7 MiB (99%)
Encoded date : UTC 1904-01-01 00:00:00
Tagged date : UTC 1904-01-01 00:00:00
- 但是,正如人们所注意到的,音频并没有真正被复制。我如何确定音频确实被复制了?
- VLC Player 也存在问题:启动视频时,幻灯片(显示时间)不会移动。如果我将其移动到 00:00 以后的位置,它会再次移动...
- 我该如何表达我想提取与第一个不同的帧?
答案1
将一个视频帧转换为临时文件,然后将临时文件与音频合并:
ffmpeg -i input.mp4 -frames:v 1 -map 0:v -c:v libx265 -crf 18 -y tmp.mp4
ffmpeg -i input.mp4 -i tmp.mp4 -map 0:a -map 1 -c:a copy -c:v copy -y output.mp4
这些行创建的视频与 VLC 播放器不兼容。因此,我建议选择转换为 MP3。
ffmpeg -i input.mp4 -f image2 -frames:v 1 -y /tmp/tmp.jpg
ffmpeg -i input.mp4 -i /tmp/tmp.jpg -map 0:a -map 1 -c:a libmp3lame -c:v copy -y /tmp/output.mp3
vlc /tmp/output.mp3