ID = linux_ask_00
Question
How to install ffmpeg in Ubuntu 20.04?
Answer
Got the answer from the information provided Ubuntu.
Key point is to use $ ffmpeg -version
Follow the following precedure to make it.
Step1: Check status
$ ffmpeg -version
Command 'ffmpeg' not found, but can be installed with:
sudo apt install ffmpeg
Step2: Install
$ sudo apt install ffmpeg
Step3: Check result
$ ffmpeg -version
ffmpeg version 4.2.2-1ubuntu1 Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 9 (Ubuntu 9.3.0-3ubuntu1)
本文介绍在Ubuntu20.04系统中安装FFmpeg的详细步骤。首先,通过检查命令验证当前系统是否已安装FFmpeg。若未安装,使用sudo apt install ffmpeg命令进行安装。最后,再次运行检查命令确认安装成功,显示版本为4.2.2,由Ubuntu9.3.0-3ubuntu1的gcc9编译。
1294

被折叠的 条评论
为什么被折叠?



