Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save choyan/303d3f711b1ec24cbd06c54ebedd55a5 to your computer and use it in GitHub Desktop.
Save choyan/303d3f711b1ec24cbd06c54ebedd55a5 to your computer and use it in GitHub Desktop.
Install libffmpeg.so for Vivaldi and Opera

Install libffmpeg.so for Vivaldi and Opera

Troubleshooting videos issues in chromium based browsers

WARNING

Be aware that this manipulation could cause your browser to not launch anymore or make your pages crash !
So be sure to have a backup of your datas before doing it.

Find the chromium version your browser is based on

Goto opera://about or vivaldi://about,
then Ctrl+F to find 'Chrome' in the user-agent,
version number is Chrome/XX.other_numbers .

Download libffmpeg.so

× METHOD 1 ( EASY )

Go here and get your file based on your chromium version.
(If link is dead check the first link in Resources below)

× METHOD 2 ( ALTERNATIVE )

1. Download .deb package

Go here and download the chromium-codecs-ffmpeg-extra_XX where XX is your chromium version.
( i386 refers to 32bits & amd64 to 64bits version)

2. Extract data.tar.xz

cd <directory-where-you-download-.deb>
ar x <.deb-you-just-download> data.tar.xz

3. then Extract libffmpeg.so

tar -xJf data.tar.xz --strip-components=4 ./usr/lib/chromium-browser/libffmpeg.so

Copy libffmpeg.so in the browser folder

Find where the browser folder is ! Usually :

# Vivaldi
cp libffmpeg.so /opt/vivaldi/lib/

# Opera
cp libffmpeg.so /usr/lib/x86_64-linux-gnu/opera

Notes

On the browser's update, libffmpeg.so could become incompatible again, and make you repeat all the process 😮‍💨

Resources

OperaBrowser Wiki (Reddit) - you will find some great advices there, go checkout !
Original Gist - "Install libffmpeg.so in vivaldi"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment