Многие пользователи Steam Deck сталкиваются с ошибкой при скачивании OpenH264:
Aborted due to failure (while downloading http://ciscobinary.openh264.org/libopenh264-2.1.1-linux64.6.so.bz2: Error resolving "ciscobinary.openh264.org": Name or service not known)
Из-за этого Discord не запускается, Telegram не показывает видео, а другие Flatpak-приложения, которым нужен кодек OpenH264, работают с ошибками.
Flatpak пытается скачать устаревшую версию библиотеки (2.1.1) с сервера Cisco ciscobinary.openh264.org. Этот сервер либо недоступен, либо блокируется провайдерами, поэтому загрузка срывается.
В репозитории лежит актуальная версия OpenH264 (2.5.1) и скрипт для автоматической установки.
Установка (Steam Deck, одной командой):
bash <(curl -fsSL https://raw.githubusercontent.com/Nospire/fx/main/i)Скрипт:
- Скачает
openh264_installer.tar.gzиз последнего релиза. - Распакует архив.
- Запустит
install_openh264.sh, который установит кодек в:/var/lib/flatpak/runtime/org.freedesktop.Platform.openh264/x86_64/2.5.1 - Выполнит
flatpak repairдля регистрации кодека.
После установки приложения, которые раньше не работали с видео, будут функционировать нормально. Перезагрузка не обязательна, но может быть полезна.
Many Steam Deck users encounter this error when downloading OpenH264:
Aborted due to failure (while downloading http://ciscobinary.openh264.org/libopenh264-2.1.1-linux64.6.so.bz2: Error resolving "ciscobinary.openh264.org": Name or service not known)
This causes Discord to fail to start, Telegram to not show videos, and other Flatpak apps that require OpenH264 to break.
Flatpak is trying to download an outdated version (2.1.1) of the library from Cisco’s ciscobinary.openh264.org. This server is either unreachable or blocked by some ISPs, causing the download to fail.
This repository contains the latest working version of OpenH264 (2.5.1) along with an automatic installer script.
Installation (Steam Deck, single command):
bash <(curl -fsSL https://raw.githubusercontent.com/Nospire/fx/main/i)The script will:
- Download
openh264_installer.tar.gzfrom the latest release. - Extract it.
- Run
install_openh264.shto install the codec into:/var/lib/flatpak/runtime/org.freedesktop.Platform.openh264/x86_64/2.5.1 - Execute
flatpak repairto register the codec.
After installation, apps that previously failed to play videos should work normally. A reboot is optional but may be helpful.
i— the lightweight installer script for quick setup via curl.openh264_installer.tar.gz(in Releases) — archive containing:install_openh264.sh— the installation scriptopenh264-2.5.1.tar.gz— the codec itself.
MIT