Accelerated Video Playback/ru: Difference between revisions
Created page with "=== MPV === Вы можете разместить следующую конфигурацию в {{ic|~/.config/mpv/mpv.conf}}:" |
Created page with "== Приложения ==" Tags: Mobile edit Mobile web edit |
||
Line 45: | Line 45: | ||
See [https://wiki.archlinux.org/index.php/Hardware_video_acceleration#Verification Arch Linux wiki#Hardware video acceleration] for more information. | See [https://wiki.archlinux.org/index.php/Hardware_video_acceleration#Verification Arch Linux wiki#Hardware video acceleration] for more information. | ||
</div> | </div> | ||
< | <span id="Applications"></span> | ||
== | == Приложения == | ||
=== Chromium === | === Chromium === |
Revision as of 14:06, 21 July 2024
Ускорение воспроизведения видео в NixOS обычно осуществляется путем добавления соответствующих пакетов в
hardware.opengl.extraPackages
.
Installation
Intel
/etc/nixos/configuration.nix
{
hardware.graphics = { # hardware.opengl in 24.05 and older
enable = true;
extraPackages = with pkgs; [
intel-media-driver # For Broadwell (2014) or newer processors. LIBVA_DRIVER_NAME=iHD
intel-vaapi-driver # For older processors. LIBVA_DRIVER_NAME=i965
];
};
environment.sessionVariables = { LIBVA_DRIVER_NAME = "iHD"; }; # Optionally, set the environment variable
}
Note, intel-vaapi-driver
still performs better for browsers (gecko/chromium based) on newer Skylake (2015) processors.[1]
Для поддержки 32-битной версии используйте hardware.graphics.extraPackages32
:
/etc/nixos/configuration.nix
{
# hardware.opengl.extraPackages32 in 24.05
hardware.graphics.extraPackages32 = with pkgs.pkgsi686Linux; [ intel-vaapi-driver ];
}
AMD
Конфигурация AMD (по крайней мере, для iGPU Ryzen 5) работает из коробки:
/etc/nixos/configuration.nix
{
hardware.opengl.enable = true;
}
Проверьте вашу конфигурацию
Вы можете протестировать вашу конфигурацию выполнив:
nix-shell -p libva-utils --run vainfo
See Arch Linux wiki#Hardware video acceleration for more information.
Приложения
Chromium
См. Chromium#Accelerated_video_playback.
Firefox
MPV
Вы можете разместить следующую конфигурацию в ~/.config/mpv/mpv.conf
:
hwdec=auto-safe
vo=gpu
profile=gpu-hq
gpu-context=wayland ; Только для Wayland
See Arch Linux wiki#mpv.
Also see
- Arch Linux wiki#Hardware video acceleration.
- nixos-hardware has example configurations for various types of hardware.