gpt4 book ai didi

FFMPEG 转换和编解码器

转载 作者:行者123 更新时间:2023-12-04 23:08:15 25 4
gpt4 key购买 nike

我有一个 CENTOS,我安装了 ffmpeg:yum install ffmpeg命令

我正在尝试使用以下命令转换视频:

ffmpeg -y -i "C:\home\app\cedoc\convert\TREINO_PSC_ACD_PR_02_09_14_IMAGEM_GOROTO_PRESO.MXF" -crf 18.0 -vcodec libx264 -filter:v scale=1920:1080 -preset veryslow -acodec libvo_aacenc -ar 48000 -b:a 192k -coder 1 -flags +loop -cmp chroma -partitions +parti4x4+partp8x8+partb8x8 -me_method hex -subq 6 -me_range 16 -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -b_strategy 1 -threads 0 "C:\Users\lanhellas\Documents\TREINO_PSC_ACD_PR_02_09_14_IMAGEM_GOROTO_PRESO.mp4"

但我得到以下信息:
Unknown encoder 'libvo_aacenc'

这是我的 ffmpeg 配置:
ffmpeg version 2.6.8 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-4)
configuration: --prefix=/usr --bindir=/usr/bin --datadir=/usr/share/ffmpeg --incdir=/usr/include/ffmpeg --libdir=/usr/lib64 --mandir=/usr/share/man --arch=x86_64 --optflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic' --enable-bzlib --disable-crystalhd --enable-gnutls --enable-ladspa --enable-libass --enable-libcdio --enable-libdc1394 --enable-libfaac --enable-nonfree --enable-libfdk-aac --enable-nonfree --disable-indev=jack --enable-libfreetype --enable-libgsm --enable-libmp3lame --enable-openal --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libv4l2 --enable-libx264 --enable-libx265 --enable-libxvid --enable-x11grab --enable-avfilter --enable-avresample --enable-postproc --enable-pthreads --disable-static --enable-shared --enable-gpl --disable-debug --disable-stripping --shlibdir=/usr/lib64 --enable-runtime-cpudetect
libavutil 54. 20.100 / 54. 20.100
libavcodec 56. 26.100 / 56. 26.100
libavformat 56. 25.101 / 56. 25.101
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 11.102 / 5. 11.102
libavresample 2. 1. 0 / 2. 1. 0
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 1.100 / 1. 1.100
libpostproc 53. 3.100 / 53. 3.100
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...

最佳答案

libvo_aacenc 产生低质量的音频,最终是 removed from FFmpeg .

可用的 AAC 编码器有:

  • aac原生 FFmpeg AAC 编码器。大多数用户都可以正常工作,但您的版本太旧,无法包含此编码器的主要改进。一个简单的更新方法是download an already compiled ffmpeg ,然后可选择将其移至 /usr/local/bin .
  • libfdk_aac FFmpeg 支持的最高质量 AAC 编码器,但需要您 compile .

  • FFmpeg Wiki: AAC .

    您的命令还有一些其他问题:
  • 该命令看起来适用于 Windows ( C:\ ),但您的 ffmpeg info 看起来像是在 Linux 上,因此您可能必须修复文件的路径。
  • 您有许多不应该使用的选项。 -preset处理所有额外的东西,所以一旦你更新 ffmpeg您的命令可以简单地类似于:
    ffmpeg -i input.mxf -c:v libx264 -vf scale=1920:1080 -preset veryslow -c:a aac -b:a 192k output.mp4
  • 关于FFMPEG 转换和编解码器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49214807/

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