Easy methods to Set up FFmpeg on Ubuntu 22.04. FFmpeg is
This tutorial covers the steps required to put in FFmpeg on Ubuntu 22.04. Additionally, you will discover ways to use ffmpeg
This tutorial is examined on Google Cloud for automated picture and video processing.
Stipulations
A Ubuntu system with sudo
privileges.
Step 1: Replace Packages
Replace your server packages to the newest model accessible.
sudo apt replace sudo apt improve
Step 2: Set up FFmpeg on Ubuntu
FFmpeg 4 is obtainable by default within the Ubuntu Jammy Jellyfish repositories. So you’ll be able to set up it straight utilizing the apt set up
command
sudo apt set up ffmpeg
Confirm FFmpeg set up utilizing the beneath command.
ffmpeg -version
The output will probably be one thing much like this.
Output
ffmpeg model 4.4.1-3ubuntu5 Copyright (c) 2000-2021 the FFmpeg builders
constructed with gcc 11 (Ubuntu 11.2.0-18ubuntu1)
configuration: --prefix=/usr --extra-version=3ubuntu5 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/embrace/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared
libavutil 56. 70.100 / 56. 70.100
libavcodec 58.134.100 / 58.134.100
libavformat 58. 76.100 / 58. 76.100
libavdevice 58. 13.100 / 58. 13.100
libavfilter 7.110.100 / 7.110.100
libswscale 5. 9.100 / 5. 9.100
libswresample 3. 9.100 / 3. 9.100
libpostproc 55. 9.100 / 55. 9.100
Now, FFmpeg is put in efficiently and prepared for use.
Step 3: FFmpeg Examples
On this half, we are going to have a look at some fundamental examples to make use of the ffmpeg
utility.
Fundamental conversion
Whereas changing the audio and the video information ffmpeg
Convert a video file from webm
to mp4
ffmpeg -i enter.webm output.mp4
Convert an audio file from ogg
to mp3
ffmpeg enter.ogg output.mp3
Specifying codecs
You may specify the codecs you wish to use with -c
Convert a video file from webm
to mp4
utilizing the libvpx
video codec and libvorbis
audio codec
ffmpeg -i enter.webm -c:v libvpx -c:a libvorbis output.mp4
Convert an audio file from ogg
to mp3
encoded with the libopus
codec.
ffmpeg -i enter.ogg -c:a libopus output.mp3
Conclusion
Now you have got discovered easy methods to set up FFmpeg on Ubuntu 22.04 and in addition use some fundamental examples for changing information.
Thanks in your time. When you face any downside or any suggestions, simply go away a remark beneath.