media-downloader 0.10.0__py2.py3-none-any.whl → 0.11.1__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of media-downloader might be problematic. Click here for more details.
- media_downloader/version.py +1 -1
- {media_downloader-0.10.0.dist-info → media_downloader-0.11.1.dist-info}/METADATA +39 -9
- media_downloader-0.11.1.dist-info/RECORD +9 -0
- media_downloader-0.10.0.dist-info/RECORD +0 -9
- {media_downloader-0.10.0.dist-info → media_downloader-0.11.1.dist-info}/LICENSE +0 -0
- {media_downloader-0.10.0.dist-info → media_downloader-0.11.1.dist-info}/WHEEL +0 -0
- {media_downloader-0.10.0.dist-info → media_downloader-0.11.1.dist-info}/entry_points.txt +0 -0
- {media_downloader-0.10.0.dist-info → media_downloader-0.11.1.dist-info}/top_level.txt +0 -0
media_downloader/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: media-downloader
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.11.1
|
|
4
4
|
Summary: Download audio/videos from the internet!
|
|
5
5
|
Home-page: https://github.com/Knuckles-Team/media-downloader
|
|
6
6
|
Author: Audel Rouhi
|
|
@@ -43,9 +43,11 @@ Requires-Dist: yt-dlp (>=2023.3.4)
|
|
|
43
43
|

|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
*Version: 0.
|
|
46
|
+
*Version: 0.11.1*
|
|
47
47
|
|
|
48
|
-
Download videos and audio from the internet!
|
|
48
|
+
Download videos and audio from the internet!
|
|
49
|
+
|
|
50
|
+
This is a wrapper for the pytube library to simplify downloading from these various sources.
|
|
49
51
|
|
|
50
52
|
This repository is actively maintained - Contributions are welcome!
|
|
51
53
|
|
|
@@ -81,23 +83,34 @@ media-downloader --file "C:\Users\videos.txt" --directory "C:\Users\Downloads" -
|
|
|
81
83
|
|
|
82
84
|
Use directly in Python
|
|
83
85
|
```python
|
|
86
|
+
# Import library
|
|
84
87
|
from media_downloader import MediaDownloader
|
|
85
88
|
|
|
89
|
+
# Set URL of video/audio here
|
|
86
90
|
url = "https://YootToob.com/video"
|
|
87
91
|
|
|
92
|
+
# Instantiate vide_downloader_instance
|
|
88
93
|
video_downloader_instance = MediaDownloader()
|
|
89
94
|
|
|
90
|
-
|
|
95
|
+
# Set the location to save the video
|
|
96
|
+
video_downloader_instance.set_save_path("C:/Users/you/Downloads")
|
|
91
97
|
|
|
92
|
-
|
|
98
|
+
# Add URL to download
|
|
99
|
+
video_downloader_instance.append_link(url)
|
|
93
100
|
|
|
94
|
-
|
|
101
|
+
# Download all videos appended
|
|
102
|
+
video_downloader_instance.download_all()
|
|
103
|
+
```
|
|
95
104
|
|
|
96
|
-
|
|
105
|
+
```python
|
|
106
|
+
# Optional - Set Audio to True, Default is False if unspecified.
|
|
107
|
+
video_downloader_instance.set_audio(audio=True)
|
|
97
108
|
|
|
98
|
-
|
|
109
|
+
# Optional - Open a file of video/audio URL(s)
|
|
110
|
+
video_downloader_instance.open_file("FILE")
|
|
99
111
|
|
|
100
|
-
|
|
112
|
+
# Optional - Enter a YouTube channel name and download their latest videos
|
|
113
|
+
video_downloader_instance.get_channel_videos("YT-Channel Name")
|
|
101
114
|
```
|
|
102
115
|
</details>
|
|
103
116
|
|
|
@@ -111,6 +124,23 @@ python -m pip install media-downloader
|
|
|
111
124
|
```
|
|
112
125
|
</details>
|
|
113
126
|
|
|
127
|
+
## Geniusbot Application
|
|
128
|
+
|
|
129
|
+
Use Rom Manager tool with a GUI through Geniusbot
|
|
130
|
+
|
|
131
|
+
Visit our [GitHub](https://github.com/Knuckles-Team/geniusbot) for more information
|
|
132
|
+
|
|
133
|
+
<details>
|
|
134
|
+
<summary><b>Installation Instructions with Geniusbot:</b></summary>
|
|
135
|
+
|
|
136
|
+
Install Python Package
|
|
137
|
+
|
|
138
|
+
```bash
|
|
139
|
+
python -m pip install geniusbot
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
</details>
|
|
143
|
+
|
|
114
144
|
<details>
|
|
115
145
|
<summary><b>Repository Owners:</b></summary>
|
|
116
146
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
media_downloader/__init__.py,sha256=iCl7rzarsiHgt6a5R_A1aANqNfD5rhJi4Zvj8oQ47zo,348
|
|
2
|
+
media_downloader/media_downloader.py,sha256=w84xa7AZWmjIO_PqSH8KVys4jD4xid194vW_lgkhCQI,9232
|
|
3
|
+
media_downloader/version.py,sha256=GVRmwctgvKZRrMYyHE6oU-tCv5bJd08MS_PLSbEPNjE,117
|
|
4
|
+
media_downloader-0.11.1.dist-info/LICENSE,sha256=wtI1_YjppxJA2UTLHLbj_goBi-f3DebTfIFbe_XqJmY,1059
|
|
5
|
+
media_downloader-0.11.1.dist-info/METADATA,sha256=Bec73Nl9EZ_y7ubjqQS3wPY5Cpjot9GZnd0H2qdoDtk,5279
|
|
6
|
+
media_downloader-0.11.1.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
7
|
+
media_downloader-0.11.1.dist-info/entry_points.txt,sha256=ZYFDwE25i9D2Mc_ZkLbA0ASaUJo_IEOGDU2gXO7OQnE,77
|
|
8
|
+
media_downloader-0.11.1.dist-info/top_level.txt,sha256=B2OBmgONOm0hIyx2HJ8qFPOI_p5HOeolrYvmslVC1fc,17
|
|
9
|
+
media_downloader-0.11.1.dist-info/RECORD,,
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
media_downloader/__init__.py,sha256=iCl7rzarsiHgt6a5R_A1aANqNfD5rhJi4Zvj8oQ47zo,348
|
|
2
|
-
media_downloader/media_downloader.py,sha256=w84xa7AZWmjIO_PqSH8KVys4jD4xid194vW_lgkhCQI,9232
|
|
3
|
-
media_downloader/version.py,sha256=BbZk6pmlrn8USO-ua_cmvcpuUjtK9Qlz9U9ELMaEdM8,117
|
|
4
|
-
media_downloader-0.10.0.dist-info/LICENSE,sha256=wtI1_YjppxJA2UTLHLbj_goBi-f3DebTfIFbe_XqJmY,1059
|
|
5
|
-
media_downloader-0.10.0.dist-info/METADATA,sha256=tNhqLP74a1KnX8WwUgawHIHohFTEEVZyr_q3yTR7Y60,4466
|
|
6
|
-
media_downloader-0.10.0.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
7
|
-
media_downloader-0.10.0.dist-info/entry_points.txt,sha256=ZYFDwE25i9D2Mc_ZkLbA0ASaUJo_IEOGDU2gXO7OQnE,77
|
|
8
|
-
media_downloader-0.10.0.dist-info/top_level.txt,sha256=B2OBmgONOm0hIyx2HJ8qFPOI_p5HOeolrYvmslVC1fc,17
|
|
9
|
-
media_downloader-0.10.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|