axcore / tartube

A GUI front-end for youtube-dl, partly based on youtube-dl-gui and written in Python 3 / Gtk 3
GNU Lesser General Public License v2.1
2.05k stars 111 forks source link

How to Add a Specific Resolution? #582

Closed Jain2098 closed 10 months ago

Jain2098 commented 1 year ago

Sometime video of 480p is little different in like source like 486p. How can I add a 486p resolution and download it. I get Error in those video: Requested format is not available. Use --list-formats for a list of available formats

axcore commented 1 year ago

In the Videos tab, right-click the video and select Fetch > Available formats

This will show a list of all available formats, with the format ID on the left.

formats

The last format ID on the list is 244. To download it, the yt-dlp command is

yt-dlp -f 244 URL

In Tartube, you can put the -f 244 part in the download options window.

options