gpt4 book ai didi

video - 为 ipod classic 编码视频

转载 作者:行者123 更新时间:2023-11-28 21:41:13 24 4
gpt4 key购买 nike

我刚刚使用这些说明在 debian wheezy 上安装了 ffmpeg - http://trac.ffmpeg.org/wiki/UbuntuCompilationGuide .现在我想编码视频以在我的 iPod classic 上播放.该视频包含以下信息:

$ mediainfo in.mp4 
General
Complete name : in.mp4
Format : MPEG-4
Format profile : Base Media / Version 2
Codec ID : mp42
File size : 1.21 GiB
Duration : 55mn 10s
Overall bit rate mode : Variable
Overall bit rate : 3 130 Kbps
Encoded date : UTC 2010-08-25 23:38:59
Tagged date : UTC 2010-08-25 23:38:59

Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L3.2
Format settings, CABAC : Yes
Format settings, ReFrames : 2 frames
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Duration : 55mn 10s
Bit rate mode : Variable
Bit rate : 3 000 Kbps
Maximum bit rate : 5 000 Kbps
Width : 1 280 pixels
Height : 720 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 29.970 fps
Standard : NTSC
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.109
Stream size : 1.16 GiB (96%)
Language : English
Encoded date : UTC 2010-07-21 13:28:49
Tagged date : UTC 2010-07-21 13:28:49
Color primaries : BT.709-5, BT.1361, IEC 61966-2-4, SMPTE RP177
Transfer characteristics : BT.709-5, BT.1361
Matrix coefficients : BT.709-5, BT.1361, IEC 61966-2-4 709, SMPTE RP177

Audio
ID : 2
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : 40
Duration : 55mn 10s
Bit rate mode : Variable
Bit rate : 125 Kbps
Maximum bit rate : 270 Kbps
Channel(s) : 2 channels
Channel positions : Front: L R
Sampling rate : 44.1 KHz
Compression mode : Lossy
Stream size : 49.4 MiB (4%)
Language : English
Encoded date : UTC 2010-07-21 13:28:49
Tagged date : UTC 2010-07-21 13:28:49
mdhd_Duration : 3310353

我已经尝试使用 banshee 将视频复制到 IPod,但视频只显示黑屏。在 Ipod 上播放视频的最佳格式是什么?我应该使用哪些 ffmpeg 参数?我想在最小化文件大小的同时最大化分辨率。

最佳答案

您可能需要重新编码,因为根据 specs,iPod Classic 最多可以处理 640x480。你提供了,但你的视频是 1280x720。视频可以是 H.264、Baseline Profile、Level 3.0:

ffmpeg -i in.mp4 -vcodec libx264 -crf 23 -preset fast -profile:v baseline \
-level 3 -refs 6 -vf "scale=640:-1,pad=iw:480:0:(oh-ih)/2,format=yuv420p" \
-acodec copy output.mp4
  • 使用 -crf 控制质量,使用 -preset 控制编码速度。查看FFmpeg and x264 Encoding Guide有关这些选项的更多信息。

  • -level 目前没有为这个编码器设置-refs,所以需要手动设置。有一个待定补丁可以解决此问题,因此应该会尽快修复。

  • scale video filter在这种情况下会将输出缩放到 640x360。 -1 值在高度维度上保持原始的 16:9 纵横比,而 640 值设置新的宽度。

  • pad video filter指定视频的新的最大宽度和高度,以及以像素为单位的侧边距和顶部边距。这是将原始 16:9 视频信箱转换为 iPod classic 所需的 4:3 纵横比所必需的。如果不这样做,则 iPod 将扩展视频以适应屏幕高度,并在播放过程中裁剪掉视频的两侧。要计算此参数的必要值,请考虑:

    1280*x = 640 # x is the resize factor in the width dimension
    x = 640/1280 = 0.5 # now we know x
    720*x + 2*p = 480 # scaling the original video height by x, then adding
    # equal padding p above and below the video must give the new desired
    # video height of 480. solve for p
    360 + 2*p = 480
    p = 60
  • format video filter将确保输出使用兼容的色度子采样方案。 ffmpeg 在使用 libx264 时默认尝试避免或最小化色度二次采样,但基于非 FFmpeg 的播放器和设备不支持除 yuv420p 以外的任何内容,因此包含此内容将确保兼容性。这与您可能在其他示例中看到的使用 -pix_fmt yuv420p 相同,但是使用 format 可以让您具体说明它将应用到哪些地方过滤器(并不是说在这种情况下它真的太重要了)。

  • 因为音频可能没问题 stream copied (重新混合)而不是重新编码。

关于video - 为 ipod classic 编码视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23260944/

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