Кодеки для оперы обновить линукс

Кодек H.264 для браузера Opera

Интернет-серфинг не может существовать без переходов на сайты, просмотра видеофайлов и прослушивания музыки. К сожалению, многие пользователи сталкиваются с проблемами воспроизведения. Однако не нужно унывать. Об ошибке, когда отсутствует кодек H264 для браузера Opera.

Подробности

В действительности данный сбой больше не наблюдается у пользователей. Дело в том, что кодек больше не распространяется как отдельный установочный пакет для Windows. Все необходимые компоненты для воспроизведения медиафайлов на веб-ресурсах давнее время встроены либо в операционную систему, либо непосредственно в интернет-обозреватель.

Так что на последних версиях Opera такой ошибки попросту быть не может. А если она у вас все же наблюдается, то не нужно искать никакие программы на просторах интернета. Тем более, что ничего путного скачать не получится, а в худшем случае – получите вирус. Единственное решение данной неполадки заключается в обновлении программы.

Инструкция

Вся процедура загрузки новой версии браузера умещается в несколько простых действий:

  1. Вызовите основное меню.
  2. Далее, кликните по предпоследнему пункту.
  3. Дождитесь проведения всех проверок.
  4. Нажмите на синюю кнопку.
  5. Программа перезапустится уже в обновленном виде, больше подобных сбоев возникать не должно.

Дополнение

Если у вас все же возникают какие-либо проблемы с воспроизведением медиафайла, то обратитесь к данным рекомендациям:

  • Обновление драйверов на видеокарту нередко помогает, а также повышает производительность компьютера.
  • Не загружайте сильно интернет, если планируете посмотреть ролик.
  • Если у вас слабый компьютер, то выберите более низкое качество видео.
  • Попробуйте закрыть лишние программы и вкладки браузера.
  • Проверьте компьютер на наличие угроз с помощью любого антивируса.

Источник

Решение проблемы браузера Opera с воспроизведением видео в Ubuntu и подобных дистрибутивах (Linux Mint, KDE neon)

Ошибки воспроизведения выглядят следующим образом:

В настоящий момент ваш браузер не распознаёт ни один из доступных видеоформатов

Именно такую ошибку можно увидеть при попытке просмотра прямого эфира в Youtube . При этом некоторые другие видео могут быть доступны только в качестве 360, без возможности повысить качество воспроизведения.

Невозможно воспроизвести видео в данном браузере. Попробуйте другой браузер

Такое сообщение можно встретить при просмотре видео в Twitter. Браузер менять мы не будем, это не наш путь. Зато мы расскажем о легком решении данной проблемы.

Исправляем ошибку воспроизведения видео браузером Opera в дистрибутивах Ubuntu и подобных

  • В первую очередь нужно установить пакет chromium-codecs-ffmpeg-extra. Сделать это можно с помощью терминала следующей командой:
  • Обычно вторым этапом идет создание симлинка для файла libffmpeg.so, но так как теперь браузер Opera поставляет файл с таким названием (но не решающим проблему), то мы его удалим и затем создадим симлинк на новый файл. Удаление файла:
  • Создаём симлинк:

Таким образом решается проблема с воспроизведением видео браузером Opera в Ubuntu.

Продолжительное время данная проблема была актуальна и для линукс версии Яндекс браузера (как минимум в течении нескольких последних релизов в ЯБ проблема не повторяется). Там она решалась аналогичным способом. Файл libffmpeg.so в Яндекс браузере расположен в каталоге /opt/yandex/browser-beta/lib/. Соответственно симлинк нужно было создавать по следующему пути:

Нашли опечатку? Выделите и нажмите Ctrl + Enter

Читайте также:  Не могу установить windows с диска через биос

Источник

Кодеки для оперы обновить линукс

The Linux community has long been asking Opera to support the h.264 codec in Opera Browser for Linux.

We know that h.264 is a proprietary format. However, Firefox browser worked around this problem, it uses the codec x264 (free and open-source software library which uses GNU General Public License and it is developed by VideoLAN)

The x264 codec allows browsers to support h.264 codec videos.

For my Opera browser to support h.264, I need to open the terminal and type this command with each new Opera browser update:
curl -L -O https://github.com/iteufel/nwjs-ffmpeg-prebuilt/releases/download/0.39.2/0.39.2-linux-x64.zip

sudo mv libffmpeg.so /usr/lib/x86_64-linux-gnu/libffmpeg_h264.so

sudo mv /usr/lib/x86_64-linux-gnu/opera/libffmpeg.so /usr/lib/x86_64-linux-gnu/opera/libffmpeg.so.orig

sudo ln -s /usr/lib/x86_64-linux-gnu/libffmpeg_h264.so /usr/lib/x86_64-linux-gnu/opera/libffmpeg.so

But less experienced users don’t even know there is this option, they simply can’t watch videos on Facebook.com, Twitter.com and Youtube.com Live videos, as they rely on the h.264 codec

That’s why Opera Browser needs to support the h.264 codec or at least x264 codec (which will not generate license costs for Opera and will once and for all solve this problem that only affects Opera Browser on Linux since Google Chrome and Firefox have been supporting the h.264 codec for a long time, even indirectly via the x264 codec)

I have Lubuntu 18.04.3 LTS (based on Ubuntu 18.04.3 LTS) 64bits and Linux 4.15.0-58 kernel

First, x264 is an encoder, aka the «tool» you will need to convert a video file to h264, not an actual lib for playing (= decoding) that file.
https://www.videolan.org/developers/x264.html

Second, firefox uses libopenh264 for its h264 needs, which is made by cisco.
http://www.openh264.org/
And that lib is also a direct dependency of ffmpeg’s libav* libs.

Third. howtos like this one should start with «proceed at your own risk», and let me explain why in detail.
As I have analysed in detail on the post on my signature, the overall «problem» of the average opera user in linux is finding that «magical» libffmpeg compiled in such a way so it plays everything.
However, most of those are not supposed to be used in opera, because they were compiled with a different set of compilers, libs etc.

The one in your howto is the libffmpeg from nwjs, but there are others too. In fact, every electron-based (-poor-excuse-for-an-) app ships with its own libffmpeg. Skypeforlinux, atom, vs code, spotify and so on, ALL have a libffmpeg in their package (regardless if they need it for their usage or not).
But no one has ever mentioned them on a similar howto.

So, as I have also said in the post on my signature, if you are on ubuntu or some derivative, install chromium ffmpeg codecs and you are done.

That’s why Opera Browser needs to support the h.264 codec or at least x264 codec (which will not generate license costs for Opera

It is not true. Chrome use built in codecs (ffmpeg+x264). But Google paid royalty for it.

Open Source it’s not kind sort of «I don’t care about any patents and licenses».

Second, firefox uses libopenh264 for its h264 needs, which is made by cisco.

No. OpenH264 in Firefox is only for WebRTC Calling.

i totally agree.

i’ve had to change to the Snap package to get around this situation.

plus, Vivaldi on Linux doesn’t have this problem.

My fault. x264 it’s only ENCODER.

Read my comment as:

It is not true. Chrome use built in open source codecs (ffmpeg). But Google paid royalty for it.

Vivaldi is an electon app, so it may use electron’s libffmpeg, like the other electron based apps do.

Читайте также:  Что такое checking media presence при загрузке windows 10

plus, Vivaldi on Linux doesn’t have this problem.

It’s hard to say «doesn’t have this problem»

plus, Vivaldi on Linux doesn’t have this problem.

It’s hard to say «doesn’t have this problem»

i should of said: «i’ve never had this problem with Vivaldi»

So Opera can introduce OpenH264 codec inside Opera browser. It is open source and free too.

So Opera can introduce OpenH264 codec inside Opera browser. It is open source and free too.

No.. It’s described in Bugzilla bugreport (link is upper in this thread).
The are not any free and normal codecs to use for commercial browser.

Hi, first post here
@pinportal Thanks for the solution. It worked!

Hope this helps!
M.

The Linux community has long been asking Opera to support the h.264 codec in Opera Browser for Linux.

We know that h.264 is a proprietary format. However, Firefox browser worked around this problem, it uses the codec x264 (free and open-source software library which uses GNU General Public License and it is developed by VideoLAN)

The x264 codec allows browsers to support h.264 codec videos.

For my Opera browser to support h.264, I need to open the terminal and type this command with each new Opera browser update:
curl -L -O https://github.com/iteufel/nwjs-ffmpeg-prebuilt/releases/download/0.39.2/0.39.2-linux-x64.zip

sudo mv libffmpeg.so /usr/lib/x86_64-linux-gnu/libffmpeg_h264.so

sudo mv /usr/lib/x86_64-linux-gnu/opera/libffmpeg.so /usr/lib/x86_64-linux-gnu/opera/libffmpeg.so.orig

sudo ln -s /usr/lib/x86_64-linux-gnu/libffmpeg_h264.so /usr/lib/x86_64-linux-gnu/opera/libffmpeg.so

But less experienced users don’t even know there is this option, they simply can’t watch videos on Facebook.com, Twitter.com and Youtube.com Live videos, as they rely on the h.264 codec

That’s why Opera Browser needs to support the h.264 codec or at least x264 codec (which will not generate license costs for Opera and will once and for all solve this problem that only affects Opera Browser on Linux since Google Chrome and Firefox have been supporting the h.264 codec for a long time, even indirectly via the x264 codec)

I have Lubuntu 18.04.3 LTS (based on Ubuntu 18.04.3 LTS) 64bits and Linux 4.15.0-58 kernel

Thank you for this information! I have Linux Mint LTS 20.0 Cinnamon 64B. I just followed your directions and all videos are now working perfectly including on Twitter.

Earlier I had also installed the following packages, so I just left them and followed your directions.

Источник

Установка кодеков в дистрибутиве Ubuntu 20.04

Когда вы только что установили свежий выпуск дистрибутива Ubuntu, настроили, установили при необходимости драйвера, и решили посмотреть какое нибудь видео. В этот момент возможно, вы сталкнетесь с тем, что видео попросту не запустится, или как вариант, не будет звука. То же самое касается и некоторых аудио форматов. Это связано с тем, что по умолчанию в дистрибутиве не установлены необходимые кодеки. Так как некоторые из них могут быть проприетарные, в результате чего они и могут отсутствовать в системе. В данной статье мы разберемся как установить данные кодеки в Ubuntu и ее производных, таких как Kubuntu, Xubuntu и Lubuntu.

Установка кодеков в Ubuntu – Xubuntu

И так, начнем мы с главного дистрибутива – Ubuntu, не будем затягивать и сразу же для установки кодеков переходим в терминал и выполняем команду:

sudo apt install ubuntu-restricted-extras

При установки кодеков так же будут установлены шрифты, для их установки нажмите клавишу “tab”, а затем когда подсветиться кнопка “OK” нажмите “Enter”:

После чего появиться лицензионное соглашение, выберите кнопку “Да” для продолжения установки:

Установка кодеков в Kubuntu

Установка кодеков в производном дистрибутиве Kubuntu по сути своей похожа на предыдущую, с одной лишь разницей в начале команды. Не стану заострять внимания на этом, да и на самой установке, так как она практически не отличается, вводим команду:

Читайте также:  Windows microsoft create user account

sudo apt install kubuntu-restricted-extras

Установка кодеков в Lubuntu

Установка кодеков в Lubuntu так же мало чем отличается от установки, разве что вначале команды стоит название самого дистрибутива “Lubuntu”. Соответственно, вводим команду:

sudo apt install lubuntu-restricted-extras

Заключение

Как видите, установка кодеков довольно таки простое занятие, их не нужно искать в сети, все они имеются в репозиториях. После установки кодеков вы сможете просмативать видео и слушать музыку. А вот отсутствие данных кодеков может сказаться так же и на просмотре видео в интернете. Стоит отметить, что в некоторых дистрибутивах так же основанных на Ubuntu, эти кодеки уже имеются в системе, к примеру тот же Linux Mint.

А на этом сегодня все. Надеюсь данная статья будет вам полезна.
Журнал Cyber-X

Источник

Arch Linux User Repository

Search Criteria

Package Details: opera-beta-ffmpeg-codecs 94.0.4606.54-2

Package Actions

Git Clone URL: https://aur.archlinux.org/opera-beta-ffmpeg-codecs.git (read-only, click to copy)
Package Base: opera-beta-ffmpeg-codecs
Description: additional support for proprietary codecs for opera-beta
Upstream URL: https://ffmpeg.org/
Licenses: LGPL2.1
Submitter: BlackIkeEagle
Maintainer: BlackIkeEagle
Last Packager: BlackIkeEagle
Votes: 9
Popularity: 0.000050
First Submitted: 2015-11-08 21:54
Last Updated: 2021-10-04 06:31

Dependencies (12)

  • glibc (glibc-git, glibc-force-mmap, lib32-glibc-force-mmap, glibc-minimal-git, glibc-linux4, glibc-dso)
  • gn (gn-git) (make)
  • gtk3 (gtk3-adwaita-3-32-git, gtk3-git, gtk3-ubuntu, gtk3-no_deadkeys_underline, gtk3-classic, gtk3-patched-filechooser-icon-view, gtk3-typeahead) (make)
  • libexif (libexif-git) (make)
  • libva (libva-git, libva-hantro-h264-git, libva-minimal-git, libva-headless, intel-media-stack-bin) (make)
  • libxss(make)
  • ninja (ninja-git, ninja-samurai, ninja-mem, ninja-kitware, ninja-bin) (make)
  • nodejs (nodejs6-bin, nodejs-git, nodejs-nightly, nodejs-lts-erbium, nodejs-lts-fermium) (make)
  • nss (nss-hg) (make)
  • pciutils (pciutils-git) (make)
  • python (python-dbg, python35, python38, python36, python310, python311, python37) (make)
  • xdg-utils (mimi-git, sx-open, busking-git, xdg-utils-git, linopen, xdg-utils-mimeo, xdg-utils-handlr, xdg-utils-slock, mimi-bachoseven-git, mimejs-git) (make)

Required by (2)

Sources (1)

Pinned Comments

BlackIkeEagle commented on 2016-05-25 20:55

For the people not willing to download 500MB of chromium source to build this package:

You can install it from my repo: https://repo.herecura.eu

Note: When the version here in AUR updates you should keep in mind it can take up to 30 minutes until its available in my repo.

If you are using an AUR helper you must make sure you have enough space where the helper wants to build. If your helper uses /tmp or something you are very likely to run out of «diskspace» while building this package.

Latest Comments

Kepos commented on 2019-08-30 12:36

Took a hell of a time to install this, but it worked. Additionally, it installed Vulkan related files, which compromises amdgpu-pro support for AMD graphics.

Infinite.New1 commented on 2019-07-29 22:48

This update is so a pain to build, any other way to have this package and not take

45 minutes each and every time? This being said, I’ve not been mentioning the CPU usage while the update occurs.

Thank you in advance.

FabioLolix commented on 2017-11-01 22:52

BlackIkeEagle commented on 2016-05-25 20:55

For the people not willing to download 500MB of chromium source to build this package:

You can install it from my repo: https://repo.herecura.eu

Note: When the version here in AUR updates you should keep in mind it can take up to 30 minutes until its available in my repo.

If you are using an AUR helper you must make sure you have enough space where the helper wants to build. If your helper uses /tmp or something you are very likely to run out of «diskspace» while building this package.

Copyright © 2004-2021 aurweb Development Team.

AUR packages are user produced content. Any use of the provided files is at your own risk.

Источник

Оцените статью