FFmpeg:修订间差异

来自Gea-Suan Lin's Wiki
跳到导航 跳到搜索
此页面具有访问限制。如果您看见此消息,则说明您没有权限访问此页面。
第14行: 第14行:
sudo add-apt-repository -y ppa:sergey-dryabzhinsky/ffmpeg; sudo apt update; sudo apt install -y ffmpeg; sudo apt clean
sudo add-apt-repository -y ppa:sergey-dryabzhinsky/ffmpeg; sudo apt update; sudo apt install -y ffmpeg; sudo apt clean
</syntaxhighlight>
</syntaxhighlight>
== 使用 ==
* 大多數的情況下可以加上<code>-nostdin</code>,避免FFmpeg吃到stdin的資料。


== 外部連結 ==
== 外部連結 ==

2021年11月2日 (二) 17:36的版本

FFmpeg是一个多媒体(影像与声音)的处理软件。

安装

一般性的安装可以直接装Ubuntu系统的:

sudo apt install -y ffmpeg; sudo apt clean

但我们这边建议装SergeyD的版本,主要是我会用到svt-av1与fdk-aac:

sudo add-apt-repository -y ppa:sergey-dryabzhinsky/ffmpeg; sudo apt update; sudo apt install -y ffmpeg; sudo apt clean

使用

  • 大多数的情况下可以加上-nostdin,避免FFmpeg吃到stdin的资料。

外部链接