1
1
mirror of https://github.com/neosubhamoy/pytubepp.git synced 2025-12-19 22:53:05 +05:30

(refactor): switched base from pytube to pytubefix for inconsistency

This commit is contained in:
2024-08-11 23:20:59 +05:30
parent 93598c9a6f
commit 34dabad1ef
4 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@
* Highly Configurable and Many More 😉 * Highly Configurable and Many More 😉
### **🧩 Dependencies** ### **🧩 Dependencies**
* [pytube](https://pypi.org/project/pytube/) * [pytubefix](https://pypi.org/JuanBindez/pytubefix)
* [FFmpeg (Not Pre-Included)](https://ffmpeg.org/) * [FFmpeg (Not Pre-Included)](https://ffmpeg.org/)
* [ffmpy](https://pypi.org/project/ffmpy/) * [ffmpy](https://pypi.org/project/ffmpy/)
* [mutagen](https://pypi.org/project/mutagen/) * [mutagen](https://pypi.org/project/mutagen/)

View File

@@ -1,4 +1,4 @@
from pytube import YouTube from pytubefix import YouTube
from mutagen.id3 import ID3, APIC, TIT2, TPE1, TALB from mutagen.id3 import ID3, APIC, TIT2, TPE1, TALB
from tabulate import tabulate from tabulate import tabulate
from tqdm import tqdm from tqdm import tqdm

View File

@@ -1,4 +1,4 @@
pytube pytubefix
requests requests
ffmpy ffmpy
mutagen mutagen

View File

@@ -22,7 +22,7 @@ setup(
], ],
}, },
install_requires=[ install_requires=[
'pytube', 'pytubefix',
'requests', 'requests',
'ffmpy', 'ffmpy',
'mutagen', 'mutagen',