Skip to content

Commit c6d7329

Browse files
v3.6.5
1 parent a79abd3 commit c6d7329

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.6.5 2021 Sep 15
2+
- Improve format selection
3+
14
## 3.6.4 2021 Sep 15
25
- Fix old references to youtube-dl
36

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "vidl"
3-
version = "3.6.4"
3+
version = "3.6.5"
44
description = "Downloads video/audio from anywhere, adding thumbnails and mp3 metadata if applicable"
55
authors = ["kasper.space"]
66
readme = "README.md"

vidl/dl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def callback(value):
9797
ytdl_args += ['-x']
9898
# yt-dlp specific: best audio, even if it has video
9999
ytdl_args += ['-f', 'ba/ba*']
100-
ytdl_args += ['--format-sort-force', '--format-sort', 'abr,codec']
100+
ytdl_args += ['--format-sort-force', '--format-sort', 'abr,acodec']
101101
# in yt-dlp, "--audio-format mp3 --audio-quality 0" seems to not work
102102
ytdl_args += ['--audio-format', options['file_format']]
103103
ytdl_args += ['--audio-quality', '0']

0 commit comments

Comments
 (0)