Site icon TechGit

How to Install FFmpeg 4.3 in Ubuntu via PPA

How to install ffmpeg 4.3 in Ubuntu via PPA. ffmpeg is a video and audio converter for Linux Ubuntu that can also grab from a live audio/video source. It can also convert between arbitrary sample rates and resize video on the fly with a high quality polyphase filter.

ffmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge.

It contains libavcodec, libavutil, libavformat, libavfilter, libavdevice, libswscale and libswresample which can be used by applications. As well as ffmpeg, ffplay and ffprobe which can be used by end users for transcoding and playing.

FFmpeg

FFmpeg is a collection of libraries and tools to process multimedia content such as audio, video, subtitles and related metadata.

Libraries

Tools

Installing ffmpeg

Run the following commands in terminal to install FFmpeg 4.3 in Ubuntu via PPA:

sudo apt-get update
sudo apt-get upgrade
sudo add-apt-repository ppa:jonathonf/ffmpeg-4
sudo apt-get update
sudo apt install ffmpeg

Once installed, run the command ffmpeg -version to check the version of the ffmpeg installed.

Using ffmpeg

Using ffmpeg is very easy. For example to convert a video file from mp4 to webm format:

ffmpeg -i input.mp4 output.webm

And to convert an audio file from mp3 to ogg file:

ffmpeg -i input.mp3 output.ogg

For more help, you can visit the official FFmpeg Documentation page.

How to Install FFmpeg 4.3 in Ubuntu via PPA originally posted on Source Digit – Linux, Ubuntu Tutorials & News, Technology, Gadgets & Gizmos.

FacebookTwitterTumblrRedditLinkedInHacker NewsDiggBufferGoogle ClassroomThreadsXINGShare
Exit mobile version