Welcome to World of IPTV

With

+23k members
+11k threads
+106k posts

we are the most popular IPTV community on the web. 

IMPORTANT NOTE:
WE HAVE RECENTLY NOTICED THAT TOO MANY DOUBLE FAKE ACCOUNTS ARE CREATED IN THE PAST.
TO PREVENT THIS ISSUE THE DECISION WAS MADE THAT IN THE FUTURE A ANNUALLY FEE 20 EURO WILL BE RAISED FOR NEW MEMBERSHIPS.

Join now to the World of IPTV

Forum Rules

Before you start, check out the forum rules first

Account upgrade

Upgrade your account to get access to full features

Advertising

Would you like to place your advertisement with us ?

Resources Manager

Hundreds of IPTV scripts and apps are available for download

How to Install and Use FFmpeg on Ubuntu 20.04

mrcell

Extended Member
Ext. Member
Joined
Oct 20, 2019
Messages
2
Reaction score
7
Points
11
Location
brazil
FFmpeg is a free and open-source collection of tools for handling multimedia files. It contains a set of shared audio and video libraries such as libavcodec, libavformat, and libavutil. With FFmpeg, you can convert between various video and audio formats, set sample rates, capture streaming audio/video, and resize videos.
Neste tutorial, mostraremos como instalar o FFmpeg no Ubuntu 20.04 .

Prerequisites
Before starting installation, you must have a non-root user account on your server with sudo privileges.
Installing FFmpeg on Ubuntu 20.04
The FFmpeg package is included in standard Ubuntu repositories and can be installed using apt package manager. Currently, at the time of writing this article, the version of FFmpeg is 4.2.x available in the Ubuntu repositories.
Perform the following steps to install FFmpeg on Ubuntu 20.04:
1. Update package index list
First, you should update the package index list of your system
$ sudo apt update
2. Install FFmpeg
To install FFmpeg run the following command:

$ sudo apt install ffmpeg
3. Verify Installation
To verify the installation, use the ffmpeg -version command, which prints the FFmpeg version:
$ ffmpeg -version
The output should look something like this:
ffmpeg version 4.2.4-1ubuntu0.1 Copyright (c) 2000-2020 the FFmpeg developers
built with gcc 9 (Ubuntu 9.3.0-10ubuntu2)
To print all available FFmpeg’s encoders and decoders type:
$ ffmpeg -encoders
$ ffmpeg -decoders
That’s it. FFmpeg is now installed on your system, and you can start using it.
FFmpeg Examples
Following are the few basic examples for using the ffmpeg utility. While you convert the audio and video files using ffmpeg it will consider the files format itself.
  • Convert a video file from mp4 to webm:$ ffmpeg -i input.mp4 output.webm
  • Convert an audio file from mp3 to ogg:$ ffmpeg -i input.mp3 output.ogg
Use Specifying codecs
When converting files, use the -c option to specify the codecs. It can be a name of any supported decoder/encoder or a special value copy that simply copies the input stream.
    • Convert a video file from mp4 to webm using the libvpx video codec and libvorbis audio codec:
$ ffmpeg -i input.mp4 -c:v libvpx -c:a libvorbis output.webm
    • Convert an audio file from mp3 to ogg encoded with the libopus codec.
$ ffmpeg -i input.mp3 -c:a libopus output.ogg
Conclusion
You have learned how to install FFmpeg on Ubuntu 20.04 system. To know more about convert and your video and audio files visit the official FFmpeg
 
shape1
shape2
shape3
shape4
shape5
shape6
Top
AdBlock Detected

We know, ad-blocking software do a great job at blocking ads. But our site is sponsored by advertising. 

For the best possible site experience please take a moment to disable your AdBlocker.
You can create a Account with us or if you already have account, you can prefer an Account Upgrade.

I've Disabled AdBlock