Skip to content

Commit

Permalink
Fix order of Format Sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
MattBlackOnly authored Jan 15, 2025
1 parent c71ac25 commit 4367aea
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 @@ -188,7 +188,7 @@ def _download_item(self, download_id):
"no_overwrites": True,
"verbose": self.verbose_ytdlp,
"no_mtime": True,
"format_sort": ["quality", "size", f"lang:{self.selected_language}", "acodec:aac", "vcodec:vp9", "vext:mp4"],
"format_sort": [f"lang:{self.selected_language}", "acodec:aac", "quality", "size", "vcodec:vp9", "vext:mp4"],
}

post_processors = [
Expand Down

0 comments on commit 4367aea

Please sign in to comment.