Skip to content

Commit

Permalink
Fixed yt_dlp sort order
Browse files Browse the repository at this point in the history
  • Loading branch information
MattBlackOnly authored Oct 23, 2024
1 parent 60267cc commit bdc36d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tubetube/yt_downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def _download_item(self, download_id):
"no_overwrites": True,
"verbose": self.verbose_ytdlp,
"no_mtime": True,
"format_sort": "vcodec:vp9,vext:mp4,size,acodec:aac",
"format_sort": ["vcodec:vp9", "vext:mp4", "size", "acodec:aac"],
}

post_processors = [
Expand Down

0 comments on commit bdc36d2

Please sign in to comment.