mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-12 04:52:53 +01:00
19 lines
435 B
Text
19 lines
435 B
Text
|
<!
|
||
|
local opts = {
|
||
|
-- Enable hardware decoding
|
||
|
vo = "gpu-next",
|
||
|
profile = "gpu-hq",
|
||
|
hwdec = "auto",
|
||
|
["hwdec-codecs"] = "all",
|
||
|
|
||
|
-- YTDL: Don't go over 1080p
|
||
|
["ytdl-format"] = "bestvideo[height<=1080]+bestaudio/best[height<=1080]",
|
||
|
|
||
|
-- YTDL: Mark Sponsorblock segments (YT-DLP Only, also doesn't work lol)
|
||
|
--["ytdl-raw-options"] = "sponsorblock-mark=all",
|
||
|
}
|
||
|
!>
|
||
|
<! for k, v in pairs(opts) do !>
|
||
|
<% k %>=<% v %>
|
||
|
<! end !>
|