- Joined
- Oct 18, 2019
- Messages
- 148
- Reaction score
- 14
- Points
- 18
- Location
- Indonesia
- Website
- www.anymusics.com
Offline
Introduction
FFmpeg is an open source command line tool for video and audio encoding/decoding. Its main features are high speed, quality and small file sizes.
Prerequisites
Edit the source list:
Add the following lines at the end of the file:
Save ("Ctrl+O") and close the file ("Ctrl+X").
Update the package list and install deb-multimedia keyring:
Install FFmpeg with the following command:
Debian 9 "Stretch"
Update the package list.
Install FFmpeg.
Confirm the installation
Now run the following command:
Upon success, you will see information about the installed FFmpeg version. Your setup is now complete.
FFmpeg is an open source command line tool for video and audio encoding/decoding. Its main features are high speed, quality and small file sizes.
Prerequisites
- A newly deployed Vultr Debian 8 or Debian 9 server instance.
- A sudo user.
Edit the source list:
Code:
sudo nano /etc/apt/sources.list
Add the following lines at the end of the file:
Code:
# deb-multimedia
deb http://www.deb-multimedia.org jessie main non-free
deb-src http://www.deb-multimedia.org jessie main non-free
# jessie-backports
deb http://httpredir.debian.org/debian/ jessie-backports main
Save ("Ctrl+O") and close the file ("Ctrl+X").
Update the package list and install deb-multimedia keyring:
Code:
sudo apt-get update
sudo apt-get install deb-multimedia-keyring
sudo apt-get update
Install FFmpeg with the following command:
Code:
sudo apt-get install ffmpeg
Debian 9 "Stretch"
Update the package list.
Code:
sudo apt-get update
Install FFmpeg.
Code:
sudo apt-get install ffmpeg
Confirm the installation
Now run the following command:
Code:
ffmpeg -version
Upon success, you will see information about the installed FFmpeg version. Your setup is now complete.