IINA is a good player.
You can even play videos from YouTube (via youtube-dl
)
But how to choose videos quality?
By default youtube-dl
uses best possible quality. If video is 4K – you'll get 4K. Sometimes it is overkill for notebooks.
IINA is a good player.
You can even play videos from YouTube (via youtube-dl
)
But how to choose videos quality?
By default youtube-dl
uses best possible quality. If video is 4K – you'll get 4K. Sometimes it is overkill for notebooks.
You can configure youtube-dl inside of IINA.
To set up max qulity of youtube videos:
Go to Settings / Network / Youtube-dl
Write in Raw options
section
format="bestvideo[height<=?1440]+bestaudio/best[height<=?1440]"
Where 1440
is maximum height that you want (it equals to 1440p).
This parameter tells player:
bestvideo[height<=?1440]
— to pick best video up to width=1440px
+bestaudio
— mix it with best audio available in source.
/best[height<=?1440]
— if something goes wrong - take just best video&audio pair (under 1440px of height)
Restart IINA
You can view more details about format selction in youtube-dl
documentation
Also you can read documentation for IINA & youtube-dl
format=bestaudio
(or whatever you prefer :). –
Parkerparkhurst © 2022 - 2024 — McMap. All rights reserved.
/best[height<=?1440]
at the end. – Remanence