gpt4 book ai didi

video - Avconv/FFmpeg - VOB 到 mp4

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

我正在使用 avconv/ffmpeg 将从 DVD 复制的 VOB 文件转换为 mp4。我正在使用的命令是

avconv -i "concat:1.VOB|2.VOB|3.VOB|4.VOB|5.VOB" -c:v libx264 -crf 28 -c:a libvo_aacenc -b:a 128k output.mp4

这是可行的,但我已经看到许多不同的命令使用不同类型的参数,我想知道这是否是“正确”的方法,以及是否有人对我应该(不)使用哪些参数提出建议和为什么不)。该文件应与移动设备和智能电视兼容。我还看到“libmp3lame”被用作音频编解码器,使用 AAC 还是 MP3 更好?

持续时间为 00:58:37 的视频文件大小为 732.6MB,这合理吗?
也许我可以使用一些东西来进一步减小文件大小而不会造成太大的质量损失?

我也对 Avconv 和 FFmpeg 之间的区别感到困惑。我认为 FFmpeg 已被弃用,而 Avconv 是“更新和更好”,我有两个 Linux Mint 安装,当我在 17.1 安装上运行“avconv --help”时,我看到
avconv version 9.20-6:9.20-0ubuntu0.14.04.1, Copyright (c) 2000-2014 the Libav developers

当我在 18.1 安装上运行相同的命令时,我看到
ffmpeg version 2.8.11-0ubuntu0.16.04.1 Copyright (c) 2000-2017 the FFmpeg developers

avconv 是否比 ffmpeg 更新,或者它只是同一事物的不同名称?

最佳答案

VOB 文件可能是奇怪的野兽,所以要将 VOB 与 ffmpeg 连接起来通常建议使用 dvd2concat FFmpeg 源代码中包含的工具。但是,它在存储库中不可用,但您可以下载它。此外,2.8 版本分支已经过时,所以升级你的 ffmpeg也。就是这样:

sudo apt install lsdvd
mkdir ~/bin
cd ~/bin
wget https://raw.githubusercontent.com/FFmpeg/FFmpeg/master/tools/dvd2concat
chmod +x dvd2concat
wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-64bit-static.tar.xz
tar xvf ffmpeg-git-64bit-static.tar.xz
mv ffmpeg-git*/ff* .
source ~/.profile

如果您想撤消其中任何操作:
sudo apt remove lsdvd
rm -rf ~/bin/ff*
hash -r

现在运行编码命令:
dvd2concat /path/to/vob/files dvd.concat
ffmpeg -f concat -safe 0 -protocol_whitelist "file,subfile" -i dvd.concat -vf format=yadif,yuv420p -c:v libx264 -crf 28 -c:a aac -b:a 128k -movflags +faststart -metadata title="Movie Title" output.mp4

注意 dvd2concat 的控制台输出/ lsdvd信息量不大,因此请检查它是否实际创建了 dvd.concat .这是一个文本文件, ffmpeg将用于引用输入的 VOB 文件。

The file should be compatible with mobile devices and smart TV's.



添加 -profile:v main输出选项将有助于兼容旧设备。如果您的硬件相当现代,您可以省略 -profile:v允许 x264 自动选择配置文件。

FFmpeg Wiki: H.264了解更多信息。

I've also seen "libmp3lame" being used as audio codec, is it better to use AAC or MP3?



AAC。我见过一些播放器对某些包含 MP3 音频的 MP4 文件有问题。

FFmpeg Wiki: AAC用于编码建议。

The file size is 732.6MB for a video lasting 00:58:37, is this reasonable?



使用 -crf 时无法猜测输出文件大小.文件大小将取决于输入的编码复杂性、持续时间和使用的编码选项。

Maybe I can use something to reduce the filesize further without too much quality loss?



增加 -crf值(value)较低的质量,因此较小的文件大小。如果您必须针对特定的输出文件大小,请使用两遍编码。否则,只需使用 -crf 进行单次通过即可。就像我们 99% 的人通常做的那样。见 FFmpeg Wiki: H.264了解更多信息。

I'm also confused about the difference between Avconv and FFmpeg. I thought that FFmpeg is deprecated and Avconv is "newer and better". Is avconv newer than ffmpeg or is it just a different name for the same thing?



FFmpeg 项目,也不是 ffmpeg命令行工具,曾经被弃用。该消息来自 Libav 分支,指的是他们自己的短命、假的“ ffmpeg”工具。 Libav 没有区分 FFmpeg/real ffmpeg以及他们的假“ ffmpeg”,这让普通用户感到困惑是可以理解的。有关更多信息,请参阅:
  • Why was ffmpeg removed from Debian?
  • What are the differences and similarities between ffmpeg, libav, and avconv?
  • 关于video - Avconv/FFmpeg - VOB 到 mp4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45866087/

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