StreamingCommunity 1.9.8__tar.gz → 2.0.0__tar.gz

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 StreamingCommunity might be problematic. Click here for more details.

Files changed (103) hide show
  1. streamingcommunity-2.0.0/MANIFEST.in +1 -0
  2. streamingcommunity-2.0.0/PKG-INFO +456 -0
  3. {StreamingCommunity-1.9.8 → streamingcommunity-2.0.0}/README.md +66 -37
  4. streamingcommunity-2.0.0/StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py +143 -0
  5. streamingcommunity-2.0.0/StreamingCommunity/Api/Player/Helper/Vixcloud/util.py +145 -0
  6. streamingcommunity-2.0.0/StreamingCommunity/Api/Player/ddl.py +89 -0
  7. streamingcommunity-2.0.0/StreamingCommunity/Api/Player/maxstream.py +151 -0
  8. streamingcommunity-2.0.0/StreamingCommunity/Api/Player/supervideo.py +194 -0
  9. streamingcommunity-2.0.0/StreamingCommunity/Api/Player/vixcloud.py +273 -0
  10. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/1337xx/__init__.py +51 -0
  11. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/1337xx/costant.py +15 -0
  12. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/1337xx/site.py +86 -0
  13. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/1337xx/title.py +66 -0
  14. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/altadefinizione/__init__.py +51 -0
  15. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/altadefinizione/costant.py +15 -0
  16. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/altadefinizione/film.py +74 -0
  17. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/altadefinizione/site.py +89 -0
  18. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/animeunity/__init__.py +51 -0
  19. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/animeunity/costant.py +15 -0
  20. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/animeunity/film_serie.py +135 -0
  21. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/animeunity/site.py +167 -0
  22. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py +97 -0
  23. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/cb01new/__init__.py +52 -0
  24. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/cb01new/costant.py +15 -0
  25. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/cb01new/film.py +73 -0
  26. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/cb01new/site.py +76 -0
  27. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py +58 -0
  28. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/ddlstreamitaly/costant.py +16 -0
  29. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/ddlstreamitaly/series.py +146 -0
  30. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/ddlstreamitaly/site.py +95 -0
  31. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py +85 -0
  32. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/guardaserie/__init__.py +53 -0
  33. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/guardaserie/costant.py +15 -0
  34. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/guardaserie/series.py +199 -0
  35. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/guardaserie/site.py +86 -0
  36. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py +110 -0
  37. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/ilcorsaronero/__init__.py +52 -0
  38. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/ilcorsaronero/costant.py +15 -0
  39. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/ilcorsaronero/site.py +63 -0
  40. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/ilcorsaronero/title.py +46 -0
  41. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/ilcorsaronero/util/ilCorsarScraper.py +141 -0
  42. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/mostraguarda/__init__.py +49 -0
  43. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/mostraguarda/costant.py +15 -0
  44. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/mostraguarda/film.py +103 -0
  45. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/streamingcommunity/__init__.py +56 -0
  46. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/streamingcommunity/costant.py +15 -0
  47. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/streamingcommunity/film.py +75 -0
  48. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/streamingcommunity/series.py +206 -0
  49. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/streamingcommunity/site.py +138 -0
  50. streamingcommunity-2.0.0/StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py +123 -0
  51. streamingcommunity-2.0.0/StreamingCommunity/Api/Template/Class/SearchType.py +101 -0
  52. streamingcommunity-2.0.0/StreamingCommunity/Api/Template/Util/__init__.py +5 -0
  53. streamingcommunity-2.0.0/StreamingCommunity/Api/Template/Util/get_domain.py +173 -0
  54. streamingcommunity-2.0.0/StreamingCommunity/Api/Template/Util/manage_ep.py +179 -0
  55. streamingcommunity-2.0.0/StreamingCommunity/Api/Template/Util/recall_search.py +37 -0
  56. streamingcommunity-2.0.0/StreamingCommunity/Api/Template/__init__.py +3 -0
  57. streamingcommunity-2.0.0/StreamingCommunity/Api/Template/site.py +87 -0
  58. streamingcommunity-2.0.0/StreamingCommunity/Lib/Downloader/HLS/downloader.py +946 -0
  59. streamingcommunity-2.0.0/StreamingCommunity/Lib/Downloader/HLS/proxyes.py +110 -0
  60. streamingcommunity-2.0.0/StreamingCommunity/Lib/Downloader/HLS/segments.py +561 -0
  61. streamingcommunity-2.0.0/StreamingCommunity/Lib/Downloader/MP4/downloader.py +155 -0
  62. streamingcommunity-2.0.0/StreamingCommunity/Lib/Downloader/TOR/downloader.py +296 -0
  63. streamingcommunity-2.0.0/StreamingCommunity/Lib/Downloader/__init__.py +5 -0
  64. streamingcommunity-2.0.0/StreamingCommunity/Lib/FFmpeg/__init__.py +4 -0
  65. streamingcommunity-2.0.0/StreamingCommunity/Lib/FFmpeg/capture.py +170 -0
  66. streamingcommunity-2.0.0/StreamingCommunity/Lib/FFmpeg/command.py +296 -0
  67. streamingcommunity-2.0.0/StreamingCommunity/Lib/FFmpeg/util.py +249 -0
  68. streamingcommunity-2.0.0/StreamingCommunity/Lib/M3U8/__init__.py +6 -0
  69. streamingcommunity-2.0.0/StreamingCommunity/Lib/M3U8/decryptor.py +164 -0
  70. streamingcommunity-2.0.0/StreamingCommunity/Lib/M3U8/estimator.py +176 -0
  71. streamingcommunity-2.0.0/StreamingCommunity/Lib/M3U8/parser.py +666 -0
  72. streamingcommunity-2.0.0/StreamingCommunity/Lib/M3U8/url_fixer.py +52 -0
  73. streamingcommunity-2.0.0/StreamingCommunity/Lib/TMBD/__init__.py +2 -0
  74. streamingcommunity-2.0.0/StreamingCommunity/Lib/TMBD/obj_tmbd.py +39 -0
  75. streamingcommunity-2.0.0/StreamingCommunity/Lib/TMBD/tmdb.py +346 -0
  76. streamingcommunity-2.0.0/StreamingCommunity/Upload/update.py +68 -0
  77. streamingcommunity-2.0.0/StreamingCommunity/Upload/version.py +5 -0
  78. streamingcommunity-2.0.0/StreamingCommunity/Util/_jsonConfig.py +204 -0
  79. streamingcommunity-2.0.0/StreamingCommunity/Util/call_stack.py +42 -0
  80. streamingcommunity-2.0.0/StreamingCommunity/Util/color.py +20 -0
  81. streamingcommunity-2.0.0/StreamingCommunity/Util/console.py +12 -0
  82. streamingcommunity-2.0.0/StreamingCommunity/Util/ffmpeg_installer.py +311 -0
  83. streamingcommunity-2.0.0/StreamingCommunity/Util/headers.py +147 -0
  84. streamingcommunity-2.0.0/StreamingCommunity/Util/logger.py +53 -0
  85. streamingcommunity-2.0.0/StreamingCommunity/Util/message.py +64 -0
  86. streamingcommunity-2.0.0/StreamingCommunity/Util/os.py +554 -0
  87. streamingcommunity-2.0.0/StreamingCommunity/Util/table.py +229 -0
  88. streamingcommunity-2.0.0/StreamingCommunity/__init__.py +0 -0
  89. streamingcommunity-2.0.0/StreamingCommunity.egg-info/PKG-INFO +456 -0
  90. streamingcommunity-2.0.0/StreamingCommunity.egg-info/SOURCES.txt +96 -0
  91. {StreamingCommunity-1.9.8 → streamingcommunity-2.0.0}/StreamingCommunity.egg-info/entry_points.txt +0 -1
  92. {StreamingCommunity-1.9.8 → streamingcommunity-2.0.0}/setup.py +8 -9
  93. StreamingCommunity-1.9.8/MANIFEST.in +0 -6
  94. StreamingCommunity-1.9.8/PKG-INFO +0 -413
  95. StreamingCommunity-1.9.8/StreamingCommunity.egg-info/PKG-INFO +0 -413
  96. StreamingCommunity-1.9.8/StreamingCommunity.egg-info/SOURCES.txt +0 -12
  97. StreamingCommunity-1.9.8/requirements.txt +0 -15
  98. {StreamingCommunity-1.9.8 → streamingcommunity-2.0.0}/LICENSE +0 -0
  99. {StreamingCommunity-1.9.8 → streamingcommunity-2.0.0}/StreamingCommunity/run.py +0 -0
  100. {StreamingCommunity-1.9.8 → streamingcommunity-2.0.0}/StreamingCommunity.egg-info/dependency_links.txt +0 -0
  101. {StreamingCommunity-1.9.8 → streamingcommunity-2.0.0}/StreamingCommunity.egg-info/requires.txt +0 -0
  102. {StreamingCommunity-1.9.8 → streamingcommunity-2.0.0}/StreamingCommunity.egg-info/top_level.txt +0 -0
  103. {StreamingCommunity-1.9.8 → streamingcommunity-2.0.0}/setup.cfg +0 -0
@@ -0,0 +1 @@
1
+ recursive-include StreamingCommunity/ *.py
@@ -0,0 +1,456 @@
1
+ Metadata-Version: 2.1
2
+ Name: StreamingCommunity
3
+ Version: 2.0.0
4
+ Summary: A streaming community package
5
+ Home-page: https://github.com/Lovi-0/StreamingCommunity
6
+ Author: Lovi-0
7
+ Project-URL: Bug Reports, https://github.com/Lovi-0/StreamingCommunity/issues
8
+ Project-URL: Source, https://github.com/Lovi-0/StreamingCommunity
9
+ Keywords: Streaming Community
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: httpx
14
+ Requires-Dist: cffi
15
+ Requires-Dist: bs4
16
+ Requires-Dist: rich
17
+ Requires-Dist: tqdm
18
+ Requires-Dist: m3u8
19
+ Requires-Dist: psutil
20
+ Requires-Dist: unidecode
21
+ Requires-Dist: jsbeautifier
22
+ Requires-Dist: pathvalidate
23
+ Requires-Dist: pycryptodomex
24
+ Requires-Dist: fake-useragent==1.1.3
25
+ Requires-Dist: qbittorrent-api
26
+ Requires-Dist: python-qbittorrent
27
+ Requires-Dist: googlesearch-python
28
+
29
+ <p align="center">
30
+ <img src="https://i.ibb.co/PFnjvBc/immagine-2024-12-26-180318047.png" alt="Project Logo" width="700"/>
31
+ </p>
32
+
33
+ <p align="center">
34
+ <a href="https://pypi.org/project/streamingcommunity">
35
+ <img src="https://img.shields.io/pypi/v/streamingcommunity?logo=pypi&labelColor=555555&style=for-the-badge" alt="PyPI"/>
36
+ </a>
37
+ <a href="https://www.python.org">
38
+ <img src="https://img.shields.io/badge/Python->=3.8-3776AB?style=for-the-badge&logo=python&logoColor=white" alt="Python"/>
39
+ </a>
40
+ <a href="https://www.paypal.com/donate/?hosted_button_id=UXTWMT8P6HE2C">
41
+ <img src="https://img.shields.io/badge/_-Donate-red.svg?logo=githubsponsors&labelColor=555555&style=for-the-badge" alt="Donate"/>
42
+ </a>
43
+ <a href="https://github.com/Lovi-0/StreamingCommunity/blob/main/LICENSE">
44
+ <img src="https://img.shields.io/badge/License-GPL_3.0-blue.svg?style=for-the-badge" alt="License"/>
45
+ </a>
46
+ <a href="https://github.com/Lovi-0/StreamingCommunity/commits">
47
+ <img src="https://img.shields.io/github/commit-activity/m/Lovi-0/StreamingCommunity?label=commits&style=for-the-badge" alt="Commits"/>
48
+ </a>
49
+ <a href="https://github.com/Lovi-0/StreamingCommunity/commits">
50
+ <img src="https://img.shields.io/github/last-commit/Lovi-0/StreamingCommunity/main?label=&style=for-the-badge&display_timestamp=committer" alt="Last Commit"/>
51
+ </a>
52
+ </p>
53
+
54
+ <p align="center">
55
+ <a href="https://pypi.org/project/streamingcommunity">
56
+ <img src="https://img.shields.io/pypi/dm/streamingcommunity?style=for-the-badge" alt="PyPI Downloads"/>
57
+ </a>
58
+ <a href="https://github.com/Lovi-0/StreamingCommunity/network/members">
59
+ <img src="https://img.shields.io/github/forks/Lovi-0/StreamingCommunity?style=for-the-badge" alt="Forks"/>
60
+ </a>
61
+ <a href="https://github.com/Lovi-0/StreamingCommunity">
62
+ <img src="https://img.shields.io/github/languages/code-size/Lovi-0/StreamingCommunity?style=for-the-badge" alt="Code Size"/>
63
+ </a>
64
+ <a href="https://github.com/Lovi-0/StreamingCommunity">
65
+ <img src="https://img.shields.io/github/repo-size/Lovi-0/StreamingCommunity?style=for-the-badge" alt="Repo Size"/>
66
+ </a>
67
+ </p>
68
+
69
+ # 📋 Table of Contents
70
+
71
+ - 🌐 [Website available](#website-status)
72
+ - 🛠️ [Installation](#installation)
73
+ - 📦 [PyPI Installation](#1-pypi-installation)
74
+ - 🔄 [Automatic Installation](#2-automatic-installation)
75
+ - 📝 [Manual Installation](#3-manual-installation)
76
+ - 💻 [Win 7](https://github.com/Ghost6446/StreamingCommunity_api/wiki/Installation#win-7)
77
+ - 📱 [Termux](https://github.com/Ghost6446/StreamingCommunity_api/wiki/Termux)
78
+ - ⚙️ [Configuration](#configuration)
79
+ - 🔧 [Default](#default-settings)
80
+ - 📩 [Request](#requests-settings)
81
+ - 📥 [Download](#m3u8_download-settings)
82
+ - 🔍 [Parser](#m3u8_parser-settings)
83
+ - 🐳 [Docker](#docker)
84
+ - 🎓 [Tutorial](#tutorials)
85
+ - 📝 [To do](#to-do)
86
+ - 💬 [Support](#support)
87
+ - 🤝 [Contribute](#contributing)
88
+ - ⚠️ [Disclaimer](#disclaimer)
89
+ - ⚡ [Contributors](#contributors)
90
+
91
+ # Installation
92
+
93
+ ## 1. PyPI Installation
94
+
95
+ Install directly from PyPI:
96
+
97
+ ```bash
98
+ pip install StreamingCommunity
99
+ ```
100
+
101
+ ### Creating a Run Script
102
+
103
+ Create `run_streaming.py`:
104
+
105
+ ```python
106
+ from StreamingCommunity.run import main
107
+
108
+ if __name__ == "__main__":
109
+ main()
110
+ ```
111
+
112
+ Run the script:
113
+ ```bash
114
+ python run_streaming.py
115
+ ```
116
+
117
+ ## Updating via PyPI
118
+
119
+ ```bash
120
+ pip install --upgrade StreamingCommunity
121
+ ```
122
+
123
+ ## 2. Automatic Installation
124
+
125
+ ### Supported Operating Systems 💿
126
+
127
+ | OS | Automatic Installation Support |
128
+ |:----------------|:------------------------------:|
129
+ | Windows 10/11 | ✔️ |
130
+ | Windows 7 | ❌ |
131
+ | Debian Linux | ✔️ |
132
+ | Arch Linux | ✔️ |
133
+ | CentOS Stream 9 | ✔️ |
134
+ | FreeBSD | ⏳ |
135
+ | MacOS | ✔️ |
136
+ | Termux | ❌ |
137
+
138
+ ### Installation Steps
139
+
140
+ #### On Windows:
141
+
142
+ ```powershell
143
+ .\Installer\win_install.bat
144
+ ```
145
+
146
+ #### On Linux/MacOS/BSD:
147
+
148
+ ```bash
149
+ sudo chmod +x Installer/unix_install.sh && ./Installer/unix_install.sh
150
+ ```
151
+
152
+ ### Usage
153
+
154
+ #### On Windows:
155
+
156
+ ```powershell
157
+ python .\test_run.py
158
+ ```
159
+
160
+ or
161
+
162
+ ```powershell
163
+ source .venv/bin/activate && python test_run.py && deactivate
164
+ ```
165
+
166
+ #### On Linux/MacOS/BSD:
167
+
168
+ ```bash
169
+ ./test_run.py
170
+ ```
171
+
172
+ ## 3. Manual Installation
173
+
174
+ ### Requirements 📋
175
+
176
+ Prerequisites:
177
+ * [Python](https://www.python.org/downloads/) > 3.8
178
+ * [FFmpeg](https://www.gyan.dev/ffmpeg/builds/)
179
+
180
+ ### Install Python Dependencies
181
+
182
+ ```bash
183
+ pip install -r requirements.txt
184
+ ```
185
+
186
+ ### Usage
187
+
188
+ #### On Windows:
189
+
190
+ ```powershell
191
+ python test_run.py
192
+ ```
193
+
194
+ #### On Linux/MacOS:
195
+
196
+ ```bash
197
+ python3 test_run.py
198
+ ```
199
+
200
+ ## Update
201
+
202
+ Keep your script up to date with the latest features by running:
203
+
204
+ ### On Windows:
205
+
206
+ ```powershell
207
+ python update.py
208
+ ```
209
+
210
+ ### On Linux/MacOS:
211
+
212
+ ```bash
213
+ python3 update.py
214
+ ```
215
+
216
+ <br>
217
+
218
+ # Configuration
219
+
220
+ You can change some behaviors by tweaking the configuration file.
221
+
222
+ The configuration file is divided into several main sections:
223
+
224
+ ## DEFAULT Settings
225
+
226
+ ```json
227
+ {
228
+ "root_path": "Video",
229
+ "movie_folder_name": "Movie",
230
+ "serie_folder_name": "TV",
231
+ "map_episode_name": "%(tv_name)_S%(season)E%(episode)_%(episode_name)",
232
+ "not_close": false
233
+ }
234
+ ```
235
+
236
+ - `root_path`: Directory where all videos will be saved
237
+
238
+ ### Path examples:
239
+ * Windows: `C:\\MyLibrary\\Folder` or `\\\\MyServer\\MyLibrary` (if you want to use a network folder)
240
+ * Linux/MacOS: `Desktop/MyLibrary/Folder`
241
+ `<br/><br/>`
242
+
243
+ - `movie_folder_name`: The name of the subdirectory where movies will be stored.
244
+ - `serie_folder_name`: The name of the subdirectory where TV series will be stored.
245
+
246
+ - `map_episode_name`: Template for TV series episode filenames
247
+
248
+ ### Episode name usage:
249
+
250
+ You can choose different vars:
251
+
252
+
253
+ * `%(tv_name)` : Is the name of TV Show
254
+ * `%(season)` : Is the number of the season
255
+ * `%(episode)` : Is the number of the episode
256
+ * `%(episode_name)` : Is the name of the episode
257
+ `<br/><br/>`
258
+
259
+ - `not_close`: If true, continues running after downloading
260
+
261
+ ### qBittorrent Configuration
262
+
263
+ ```json
264
+ {
265
+ "config_qbit_tor": {
266
+ "host": "192.168.1.59",
267
+ "port": "8080",
268
+ "user": "admin",
269
+ "pass": "adminadmin"
270
+ }
271
+ }
272
+ ```
273
+
274
+ To enable qBittorrent integration, follow the setup guide [here](https://github.com/lgallard/qBittorrent-Controller/wiki/How-to-enable-the-qBittorrent-Web-UI).
275
+
276
+ <br>
277
+
278
+ ## REQUESTS Settings
279
+
280
+ ```json
281
+ {
282
+ "timeout": 20,
283
+ "max_retry": 3
284
+ }
285
+ ```
286
+
287
+ - `timeout`: Maximum timeout (in seconds) for each request
288
+ - `max_retry`: Number of retry attempts per segment during M3U8 index download
289
+
290
+ <br>
291
+
292
+ ## M3U8_DOWNLOAD Settings
293
+
294
+ ```json
295
+ {
296
+ "tqdm_delay": 0.01,
297
+ "tqdm_use_large_bar": true,
298
+ "default_video_workser": 12,
299
+ "default_audio_workser": 12,
300
+ "cleanup_tmp_folder": true
301
+ }
302
+ ```
303
+
304
+ - `tqdm_delay`: Delay between progress bar updates
305
+ - `tqdm_use_large_bar`: Use detailed progress bar (recommended for desktop) set to false for mobile
306
+ - `default_video_workser`: Number of threads for video download
307
+ - `default_audio_workser`: Number of threads for audio download
308
+ - `cleanup_tmp_folder`: Remove temporary .ts files after download
309
+
310
+
311
+ <br>
312
+
313
+ ### Language Settings
314
+
315
+ The following codes can be used for `specific_list_audio` and `specific_list_subtitles`:
316
+
317
+ ```
318
+ ara - Arabic eng - English ita - Italian por - Portuguese
319
+ baq - Basque fil - Filipino jpn - Japanese rum - Romanian
320
+ cat - Catalan fin - Finnish kan - Kannada rus - Russian
321
+ chi - Chinese fre - French kor - Korean spa - Spanish
322
+ cze - Czech ger - German mal - Malayalam swe - Swedish
323
+ dan - Danish glg - Galician may - Malay tam - Tamil
324
+ dut - Dutch gre - Greek nob - Norw. Bokm tel - Telugu
325
+ heb - Hebrew nor - Norwegian tha - Thai
326
+ forced-ita hin - Hindi pol - Polish tur - Turkish
327
+ hun - Hungarian ukr - Ukrainian
328
+ ind - Indonesian vie - Vietnamese
329
+ ```
330
+
331
+ > [!IMPORTANT]
332
+ > Language code availability may vary by site. Some platforms might:
333
+ >
334
+ > - Use different language codes
335
+ > - Support only a subset of these languages
336
+ > - Offer additional languages not listed here
337
+ >
338
+ > Check the specific site's available options if downloads fail.
339
+
340
+ > [!TIP]
341
+ > You can configure multiple languages by adding them to the lists:
342
+ >
343
+ > ```json
344
+ > "specific_list_audio": ["ita", "eng", "spa"],
345
+ > "specific_list_subtitles": ["ita", "eng", "spa"]
346
+ > ```
347
+
348
+ ## M3U8_PARSER Settings
349
+
350
+ ```json
351
+ {
352
+ "force_resolution": -1,
353
+ "get_only_link": false
354
+ }
355
+ ```
356
+
357
+ - `force_resolution`: Force specific resolution (-1 for best available, or specify 1080, 720, 360)
358
+ - `get_only_link`: Return M3U8 playlist/index URL instead of downloading
359
+
360
+ <br>
361
+
362
+
363
+ # COMMAND
364
+
365
+
366
+ - Download a specific season by entering its number.
367
+ * **Example:** `1` will download *Season 1* only.
368
+
369
+ - Use the wildcard `*` to download every available season.
370
+ * **Example:** `*` will download all seasons in the series.
371
+
372
+ - Specify a range of seasons using a hyphen `-`.
373
+ * **Example:** `1-2` will download *Seasons 1 and 2*.
374
+
375
+ - Enter a season number followed by `-*` to download from that season to the end.
376
+ * **Example:** `3-*` will download from *Season 3* to the final season.
377
+
378
+ <br>
379
+
380
+ # Docker
381
+
382
+ You can run the script in a docker container, to build the image just run
383
+
384
+ ```
385
+ docker build -t streaming-community-api .
386
+ ```
387
+
388
+ and to run it use
389
+
390
+ ```
391
+ docker run -it -p 8000:8000 streaming-community-api
392
+ ```
393
+
394
+ By default the videos will be saved in `/app/Video` inside the container, if you want to to save them in your machine instead of the container just run
395
+
396
+ ```
397
+ docker run -it -p 8000:8000 -v /path/to/download:/app/Video streaming-community-api
398
+ ```
399
+
400
+ ### Docker quick setup with Make
401
+
402
+ Inside the Makefile (install `make`) are already configured two commands to build and run the container:
403
+
404
+ ```
405
+ make build-container
406
+
407
+ # set your download directory as ENV variable
408
+ make LOCAL_DIR=/path/to/download run-container
409
+ ```
410
+
411
+ The `run-container` command mounts also the `config.json` file, so any change to the configuration file is reflected immediately without having to rebuild the image.
412
+
413
+ # Website Status
414
+
415
+ | Website | Status |
416
+ |:-------------------|:------:|
417
+ | 1337xx | ✅ |
418
+ | Altadefinizione | ✅ |
419
+ | AnimeUnity | ✅ |
420
+ | Ilcorsaronero | ✅ |
421
+ | CB01New | ✅ |
422
+ | DDLStreamItaly | ✅ |
423
+ | GuardaSerie | ✅ |
424
+ | MostraGuarda | ✅ |
425
+ | StreamingCommunity | ✅ |
426
+
427
+ # Tutorials
428
+
429
+ - [Windows Tutorial](https://www.youtube.com/watch?v=mZGqK4wdN-k)
430
+ - [Linux Tutorial](https://www.youtube.com/watch?v=0qUNXPE_mTg)
431
+ - [Pypy Tutorial](https://www.youtube.com/watch?v=C6m9ZKOK0p4)
432
+ - [Compiled .exe Tutorial](https://www.youtube.com/watch?v=pm4lqsxkTVo)
433
+
434
+ # To Do
435
+
436
+ - Create website API -> https://github.com/Lovi-0/StreamingCommunity/tree/test_gui_1
437
+
438
+ # Contributing
439
+
440
+ Contributions are welcome! Steps:
441
+ 1. Fork the repository
442
+ 2. Create feature branch (`git checkout -b feature/AmazingFeature`)
443
+ 3. Commit changes (`git commit -m 'Add some AmazingFeature'`)
444
+ 4. Push to branch (`git push origin feature/AmazingFeature`)
445
+ 5. Open Pull Request
446
+
447
+
448
+ # Disclaimer
449
+
450
+ This software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software.
451
+
452
+ ## Contributors
453
+
454
+ <a href="https://github.com/Lovi-0/StreamingCommunity/graphs/contributors" alt="View Contributors">
455
+ <img src="https://contrib.rocks/image?repo=Lovi-0/StreamingCommunity&max=1000&columns=10" alt="Contributors" />
456
+ </a>
@@ -1,35 +1,64 @@
1
- # StreamingCommunity Downloader
2
-
3
- ![Project Logo](https://i.ibb.co/f4h5Y2m/min-logo.png)
4
-
5
- A versatile script designed to download films and series from various supported streaming platforms.
6
-
7
- # 🤝 Join our Community
8
-
9
- Chat, contribute, and have fun in our **Git_StreamingCommunity** Discord [Server](https://discord.com/invite/8vV68UGRc7)
1
+ <p align="center">
2
+ <img src="https://i.ibb.co/PFnjvBc/immagine-2024-12-26-180318047.png" alt="Project Logo" width="700"/>
3
+ </p>
4
+
5
+ <p align="center">
6
+ <a href="https://pypi.org/project/streamingcommunity">
7
+ <img src="https://img.shields.io/pypi/v/streamingcommunity?logo=pypi&labelColor=555555&style=for-the-badge" alt="PyPI"/>
8
+ </a>
9
+ <a href="https://www.python.org">
10
+ <img src="https://img.shields.io/badge/Python->=3.8-3776AB?style=for-the-badge&logo=python&logoColor=white" alt="Python"/>
11
+ </a>
12
+ <a href="https://www.paypal.com/donate/?hosted_button_id=UXTWMT8P6HE2C">
13
+ <img src="https://img.shields.io/badge/_-Donate-red.svg?logo=githubsponsors&labelColor=555555&style=for-the-badge" alt="Donate"/>
14
+ </a>
15
+ <a href="https://github.com/Lovi-0/StreamingCommunity/blob/main/LICENSE">
16
+ <img src="https://img.shields.io/badge/License-GPL_3.0-blue.svg?style=for-the-badge" alt="License"/>
17
+ </a>
18
+ <a href="https://github.com/Lovi-0/StreamingCommunity/commits">
19
+ <img src="https://img.shields.io/github/commit-activity/m/Lovi-0/StreamingCommunity?label=commits&style=for-the-badge" alt="Commits"/>
20
+ </a>
21
+ <a href="https://github.com/Lovi-0/StreamingCommunity/commits">
22
+ <img src="https://img.shields.io/github/last-commit/Lovi-0/StreamingCommunity/main?label=&style=for-the-badge&display_timestamp=committer" alt="Last Commit"/>
23
+ </a>
24
+ </p>
25
+
26
+ <p align="center">
27
+ <a href="https://pypi.org/project/streamingcommunity">
28
+ <img src="https://img.shields.io/pypi/dm/streamingcommunity?style=for-the-badge" alt="PyPI Downloads"/>
29
+ </a>
30
+ <a href="https://github.com/Lovi-0/StreamingCommunity/network/members">
31
+ <img src="https://img.shields.io/github/forks/Lovi-0/StreamingCommunity?style=for-the-badge" alt="Forks"/>
32
+ </a>
33
+ <a href="https://github.com/Lovi-0/StreamingCommunity">
34
+ <img src="https://img.shields.io/github/languages/code-size/Lovi-0/StreamingCommunity?style=for-the-badge" alt="Code Size"/>
35
+ </a>
36
+ <a href="https://github.com/Lovi-0/StreamingCommunity">
37
+ <img src="https://img.shields.io/github/repo-size/Lovi-0/StreamingCommunity?style=for-the-badge" alt="Repo Size"/>
38
+ </a>
39
+ </p>
10
40
 
11
41
  # 📋 Table of Contents
12
42
 
13
- - [Website available](#website-status)
14
- - [Installation](#installation)
15
- - [PyPI Installation](#1-pypi-installation)
16
- - [Automatic Installation](#2-automatic-installation)
17
- - [Manual Installation](#3-manual-installation)
18
- - [Win 7](https://github.com/Ghost6446/StreamingCommunity_api/wiki/Installation#win-7)
19
- - [Termux](https://github.com/Ghost6446/StreamingCommunity_api/wiki/Termux)
20
- - [Configuration](#configuration)
21
- - [Default](#default-settings)
22
- - [Request](#requests-settings)
23
- - [Download](#m3u8_download-settings)
24
- - [Parser](#m3u8_parser-settings)
25
- - [Docker](#docker)
26
- - [Tutorial](#tutorials)
27
- - [To Do](#to-do)
28
- - [Support](#support)
29
- - [Contribute](#contributing)
30
- - [Disclamer](#disclaimer)
31
-
32
-
43
+ - 🌐 [Website available](#website-status)
44
+ - 🛠️ [Installation](#installation)
45
+ - 📦 [PyPI Installation](#1-pypi-installation)
46
+ - 🔄 [Automatic Installation](#2-automatic-installation)
47
+ - 📝 [Manual Installation](#3-manual-installation)
48
+ - 💻 [Win 7](https://github.com/Ghost6446/StreamingCommunity_api/wiki/Installation#win-7)
49
+ - 📱 [Termux](https://github.com/Ghost6446/StreamingCommunity_api/wiki/Termux)
50
+ - ⚙️ [Configuration](#configuration)
51
+ - 🔧 [Default](#default-settings)
52
+ - 📩 [Request](#requests-settings)
53
+ - 📥 [Download](#m3u8_download-settings)
54
+ - 🔍 [Parser](#m3u8_parser-settings)
55
+ - 🐳 [Docker](#docker)
56
+ - 🎓 [Tutorial](#tutorials)
57
+ - 📝 [To do](#to-do)
58
+ - 💬 [Support](#support)
59
+ - 🤝 [Contribute](#contributing)
60
+ - ⚠️ [Disclaimer](#disclaimer)
61
+ - ⚡ [Contributors](#contributors)
33
62
 
34
63
  # Installation
35
64
 
@@ -83,13 +112,13 @@ pip install --upgrade StreamingCommunity
83
112
  #### On Windows:
84
113
 
85
114
  ```powershell
86
- .\win_install.bat
115
+ .\Installer\win_install.bat
87
116
  ```
88
117
 
89
118
  #### On Linux/MacOS/BSD:
90
119
 
91
120
  ```bash
92
- sudo chmod +x unix_install.sh && ./unix_install.sh
121
+ sudo chmod +x Installer/unix_install.sh && ./Installer/unix_install.sh
93
122
  ```
94
123
 
95
124
  ### Usage
@@ -378,12 +407,6 @@ The `run-container` command mounts also the `config.json` file, so any change to
378
407
 
379
408
  - Create website API -> https://github.com/Lovi-0/StreamingCommunity/tree/test_gui_1
380
409
 
381
- # Support
382
-
383
- If you'd like to support this project, consider making a donation!
384
-
385
- [![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.com/donate/?hosted_button_id=UXTWMT8P6HE2C)
386
-
387
410
  # Contributing
388
411
 
389
412
  Contributions are welcome! Steps:
@@ -397,3 +420,9 @@ Contributions are welcome! Steps:
397
420
  # Disclaimer
398
421
 
399
422
  This software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software.
423
+
424
+ ## Contributors
425
+
426
+ <a href="https://github.com/Lovi-0/StreamingCommunity/graphs/contributors" alt="View Contributors">
427
+ <img src="https://contrib.rocks/image?repo=Lovi-0/StreamingCommunity&max=1000&columns=10" alt="Contributors" />
428
+ </a>