Skip to content

Commit 3b1665b

Browse files
committed
bump to 1.2.5, replace yoiutube-dl by youtube-dlc
1 parent e6a1861 commit 3b1665b

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# auto-ytdl
22

3-
![](https://img.shields.io/badge/Release-v1.2.2-green.svg)
3+
![](https://img.shields.io/badge/Release-v1.2.5-green.svg)
44

55
I know, _yet another_ youtube-dl wrapper. But this one does something others don't: ability to automate your new music downloads, just like package managers automate your updates.
66

@@ -11,7 +11,7 @@ aytdl update
1111
And that's it.
1212
(Some initial setup is required of course, so auto-ytdl knows what music to download, but the most used commands are that simple)
1313

14-
## v1.2.4 changelog
14+
## v1.2.5 changelog
1515

1616
> Soundcloud is now explicitly supported, though the user should tweak config options to not be limited to free-tier low quality audio.
1717
@@ -20,6 +20,7 @@ And that's it.
2020
> fix music with no length bug
2121
2222
> Fix --playing option not working in chrome 86
23+
> Youtube-dl dependency is replaced by youtube-dlc since former was not updated to a working version yet. I expect youtube-dlc to release fixes faster now that the whole RIAA thing has seriously hurt youtube-dl
2324
2425
# Table of Contents
2526

@@ -94,7 +95,7 @@ see also [Usage](#usage) and [Examples](#examples)
9495

9596
# Dependencies
9697

97-
- youtube-dl (need to be in the PATH or current folder)
98+
- youtube-dlc (need to be in the PATH or current folder)
9899
- ffmpeg (need to be in the PATH or current folder)
99100
- pip/python3-pip (need to be in the PATH or current folder)
100101

autoytdl/AYTDL.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def prepare_ytdl_commmand_line(dateafter):
7272
url = "\""+url+"\""
7373

7474
# here we run youtube-dl
75-
exit_code = os.system("youtube-dl " +
75+
exit_code = os.system("youtube-dlc " +
7676
prepare_ytdl_commmand_line(dateafter) + " " + url)
7777
if exit_code != 0: # may be a youtube-dl error taht is recoverable
7878
ask = "Y"

autoytdl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# follows semantic versionning
2-
__version__ = "1.2.4"
2+
__version__ = "1.2.5"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
long_description_content_type="text/markdown",
2020
url="https://github.com/michaelb/auto-ytdl",
2121
packages=find_namespace_packages(),
22-
install_requires=['youtube-dl', 'ffmpeg',
22+
install_requires=['youtube-dlc', 'ffmpeg',
2323
'toml', 'pathlib', 'argparse', 'toml', 'music_tag'],
2424
entry_points={
2525
'console_scripts': [

0 commit comments

Comments
 (0)