.用 PNG 压缩的 MOV 视频没有 alpha 通道

.用 PNG 压缩的 MOV 视频没有 alpha 通道

我有一个使用 PNG 编解码器压缩的带 alpha 通道的 QuickTime 文件 .mov。我需要使用 ffmpeg 创建此文件的较小版本。一切正常,只是新 mov 没有 alpha(Adobe After Effects 和 Premiere 只能看到 RGB,ffprobe 说新文件有 RBG 和 A 通道。:| 请帮忙。

这是我的命令行最简单的版本:

ffmpeg -i inPNG.mov -vcodec copy -y outPNG.mov

我尝试了以下开关但没有成功:

  • -vcodec png
  • -pix_fmt rgb32 or bgra

Adobe Premiere 对新创建的文件说了一些有趣的话:QuickTime 详细信息:这是一部引用电影。没有进一步的详细信息。

以下是 FFMPEG 的答案:

[ec2-user@domU-12-31-39-14-69-CF ec]$ ffmpeg -i "content/13400/13400 HD 1080.mov" -vcodec copy -y "content/13400/13400 HD 720.mov"
FFmpeg version SVN-r26400, Copyright (c) 2000-2011 the FFmpeg developers
  built on May 21 2012 22:25:19 with gcc 4.4.5 20110214 (Red Hat 4.4.5-6)
  configuration: --enable-avfilter --enable-libmp3lame --disable-mmx --arch=x86_64 --enable-libfaac --enable-nonfree --enable-filter=movie --enable-libx264 --enable-gpl
  libavutil     50.36. 0 / 50.36. 0
  libavcore      0.16. 1 /  0.16. 1
  libavcodec    52.108. 0 / 52.108. 0
  libavformat   52.93. 0 / 52.93. 0
  libavdevice   52. 2. 3 / 52. 2. 3
  libavfilter    1.74. 0 /  1.74. 0
  libswscale     0.12. 0 /  0.12. 0
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'content/13400/13400 HD 1080.mov':
  Metadata:
    major_brand     : qt
    minor_version   : 537199360
    compatible_brands: qt
    creation_time   : 2012-11-01 11:51:39
  Duration: 00:00:02.00, start: 0.000000, bitrate: 51822 kb/s
    Stream #0.0(eng): Video: png, bgra, 1920x1080, 51793 kb/s, PAR 1920:1920 DAR 16:9, 25 fps, 25 tbr, 25 tbn, 25 tbc
    Metadata:
      creation_time   : 2012-11-01 11:51:39
    Stream #0.1(eng): Data: tmcd / 0x64636D74, 0 kb/s
    Metadata:
      creation_time   : 2012-11-01 11:51:58
Output #0, mov, to 'content/13400/13400 HD 720.mov':
  Metadata:
    major_brand     : qt
    minor_version   : 537199360
    compatible_brands: qt
    creation_time   : 2012-11-01 11:51:39
    encoder         : Lavf52.93.0
    Stream #0.0(eng): Video: png, bgra, 1920x1080 [PAR 1:1 DAR 16:9], q=2-31, 51793 kb/s, 25 tbn, 25 tbc
    Metadata:
      creation_time   : 2012-11-01 11:51:39
Stream mapping:
  Stream #0.0 -> #0.0
Press [q] to stop encoding
frame=   50 fps=  0 q=-1.0 Lsize=   12646kB time=2.00 bitrate=51797.6kbits/s
video:12645kB audio:0kB global headers:0kB muxing overhead 0.008295%

相关内容