jaseg / python-mpv

Python interface to the awesome mpv media player
https://git.jaseg.de/python-mpv.git
Other
554 stars 69 forks source link

limit quality of stream #76

Closed joural closed 6 years ago

joural commented 6 years ago

hello, not sure if this is an issue. im wondering if there is way to restrict youtube videos to max of 1080 resolution? i have that in mpv.conf but i guess it doesnt have any affect thank you

joural commented 6 years ago

okey i just realised i can just pass quality argument to yt_dl like this: quality = 'bestvideo[height<=?1080][fps<=?30][vcodec!=?vp9]+bestaudio/best' mp = MPV(ytdl=True, ytdl_format= quality, input_default_bindings=True, input_vo_keyboard=True) thank you