ffmpeg未知libfaac Ubuntu 14.04


8

我已经在Ubuntu 14.04中安装了ffmpeg 2.3

ffmpeg -i demo.mpg -acodec libfaac demo.mp4
ffmpeg version 2.3 Copyright (c) 2000-2014 the FFmpeg developers
  built on Aug 13 2014 22:15:33 with gcc 4.8 (Ubuntu 4.8.2-19ubuntu1)
  configuration: 
  libavutil      52. 92.100 / 52. 92.100
  libavcodec     55. 69.100 / 55. 69.100
  libavformat    55. 48.100 / 55. 48.100
  libavdevice    55. 13.102 / 55. 13.102
  libavfilter     4. 11.100 /  4. 11.100
  libswscale      2.  6.100 /  2.  6.100
  libswresample   0. 19.100 /  0. 19.100
Input #0, mpeg, from 'demo.mpg':
  Duration: 00:04:19.96, start: 0.000000, bitrate: 1646 kb/s
    Stream #0:0[0x1c0]: Audio: mp2, 44100 Hz, stereo, s16p, 128 kb/s
    Stream #0:1[0x1e0]: Video: mpeg1video, yuv420p(tv), 640x480 [SAR 1:1 DAR 4:3], 104857 kb/s, 29.97 fps, 29.97 tbr, 90k tbn, 29.97 tbc
Unknown encoder 'libfaac'

我也安装了libavcodec-extra-54

linux:~$ apt-cache policy libavcodec-extra-54
libavcodec-extra-54:
  Installed: 7:1.2.6-1~trusty1
  Candidate: 7:1.2.6-1~trusty1
  Version table:
 *** 7:1.2.6-1~trusty1 0

我不知道现在该怎么办才能使用acodec libfaac转换视频

Answers:


10

您只需要使用它即可aac

ffmpeg -i demo.mpg -acodec aac -strict experimental demo.mp4

5
AAC和libfaac具有相同的质量?因为我使用libaac的时间超过了一年,而且我不知道它们两者之间的区别。我很好奇
周六山姆

0

实际上使用libfdk_aac代替。

ffmpeg -i demo.mpg -acodec libfdk_aac demo.mp4

至于为什么呢?好吧,ffmpeg在玩编解码器并获取列表时向我建议了它。


可能会帮助OP包含一个使用libfdk_aac的命令,并可能包括一些有关为什么它将是更好的解决方案的背景知识。
Arronical

0

在/etc/apt/sources.list中启用您的额外存储库,然后您可以找到libfaac-dev

编辑:您可能需要重新编译ffmpeg?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.