StreamingCommunity 2.6.1__tar.gz → 2.8.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.
- {StreamingCommunity-2.6.1/StreamingCommunity.egg-info → StreamingCommunity-2.8.0}/PKG-INFO +202 -111
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/README.md +201 -110
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Player/ddl.py +4 -4
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Player/maxstream.py +10 -16
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Player/supervideo.py +9 -35
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Player/vixcloud.py +18 -92
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/1337xx/__init__.py +8 -1
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/1337xx/site.py +16 -15
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/1337xx/title.py +7 -5
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/animeunity/__init__.py +9 -2
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/animeunity/film_serie.py +12 -5
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/animeunity/site.py +14 -10
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py +9 -10
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/cb01new/__init__.py +8 -1
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/cb01new/film.py +7 -1
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/cb01new/site.py +24 -15
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py +9 -2
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/ddlstreamitaly/series.py +7 -1
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/ddlstreamitaly/site.py +16 -15
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py +3 -3
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/guardaserie/__init__.py +9 -2
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/guardaserie/series.py +9 -1
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/guardaserie/site.py +23 -22
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py +5 -4
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/mostraguarda/__init__.py +6 -2
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/mostraguarda/film.py +10 -6
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/streamingcommunity/__init__.py +9 -2
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/streamingcommunity/film.py +9 -2
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/streamingcommunity/series.py +15 -6
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/streamingcommunity/site.py +16 -14
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py +10 -11
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Template/Util/__init__.py +0 -1
- StreamingCommunity-2.8.0/StreamingCommunity/Api/Template/Util/get_domain.py +99 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Template/Util/manage_ep.py +10 -5
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Template/config_loader.py +14 -10
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Template/site.py +3 -6
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/Downloader/HLS/downloader.py +12 -15
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/Downloader/HLS/segments.py +14 -34
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/Downloader/MP4/downloader.py +14 -11
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/Downloader/TOR/downloader.py +109 -101
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/FFmpeg/__init__.py +1 -1
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/FFmpeg/capture.py +10 -12
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/FFmpeg/command.py +15 -14
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/FFmpeg/util.py +9 -38
- StreamingCommunity-2.8.0/StreamingCommunity/Lib/M3U8/decryptor.py +91 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/M3U8/estimator.py +8 -16
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/M3U8/parser.py +1 -17
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/M3U8/url_fixer.py +1 -4
- StreamingCommunity-2.8.0/StreamingCommunity/Lib/TMBD/__init__.py +4 -0
- StreamingCommunity-2.8.0/StreamingCommunity/Lib/TMBD/obj_tmbd.py +25 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/TMBD/tmdb.py +4 -9
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/TelegramHelp/telegram_bot.py +50 -50
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Upload/update.py +6 -5
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Upload/version.py +1 -1
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Util/color.py +1 -1
- StreamingCommunity-2.8.0/StreamingCommunity/Util/config_json.py +435 -0
- StreamingCommunity-2.8.0/StreamingCommunity/Util/headers.py +20 -0
- StreamingCommunity-2.8.0/StreamingCommunity/Util/logger.py +92 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Util/message.py +8 -3
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Util/os.py +41 -93
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Util/table.py +8 -17
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/run.py +39 -43
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0/StreamingCommunity.egg-info}/PKG-INFO +202 -111
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity.egg-info/SOURCES.txt +1 -9
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity.egg-info/requires.txt +1 -3
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/setup.py +1 -1
- StreamingCommunity-2.6.1/StreamingCommunity/Api/Site/ilcorsaronero/__init__.py +0 -53
- StreamingCommunity-2.6.1/StreamingCommunity/Api/Site/ilcorsaronero/site.py +0 -64
- StreamingCommunity-2.6.1/StreamingCommunity/Api/Site/ilcorsaronero/title.py +0 -42
- StreamingCommunity-2.6.1/StreamingCommunity/Api/Site/ilcorsaronero/util/ilCorsarScraper.py +0 -149
- StreamingCommunity-2.6.1/StreamingCommunity/Api/Template/Util/get_domain.py +0 -202
- StreamingCommunity-2.6.1/StreamingCommunity/Api/Template/Util/recall_search.py +0 -37
- StreamingCommunity-2.6.1/StreamingCommunity/Lib/Downloader/HLS/proxyes.py +0 -110
- StreamingCommunity-2.6.1/StreamingCommunity/Lib/M3U8/decryptor.py +0 -165
- StreamingCommunity-2.6.1/StreamingCommunity/Lib/TMBD/__init__.py +0 -2
- StreamingCommunity-2.6.1/StreamingCommunity/Lib/TMBD/obj_tmbd.py +0 -39
- StreamingCommunity-2.6.1/StreamingCommunity/Util/_jsonConfig.py +0 -241
- StreamingCommunity-2.6.1/StreamingCommunity/Util/call_stack.py +0 -42
- StreamingCommunity-2.6.1/StreamingCommunity/Util/console.py +0 -12
- StreamingCommunity-2.6.1/StreamingCommunity/Util/headers.py +0 -49
- StreamingCommunity-2.6.1/StreamingCommunity/Util/logger.py +0 -62
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/LICENSE +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/MANIFEST.in +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Player/Helper/Vixcloud/util.py +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Template/Class/SearchType.py +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Api/Template/__init__.py +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/Downloader/__init__.py +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Lib/M3U8/__init__.py +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/TelegramHelp/__init__.py +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/Util/ffmpeg_installer.py +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity/__init__.py +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity.egg-info/dependency_links.txt +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity.egg-info/entry_points.txt +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/StreamingCommunity.egg-info/top_level.txt +0 -0
- {StreamingCommunity-2.6.1 → StreamingCommunity-2.8.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: StreamingCommunity
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.8.0
|
|
4
4
|
Home-page: https://github.com/Lovi-0/StreamingCommunity
|
|
5
5
|
Author: Lovi-0
|
|
6
6
|
Project-URL: Bug Reports, https://github.com/Lovi-0/StreamingCommunity/issues
|
|
@@ -43,7 +43,7 @@ License-File: LICENSE
|
|
|
43
43
|
|
|
44
44
|
# 📋 Table of Contents
|
|
45
45
|
|
|
46
|
-
-
|
|
46
|
+
- 🔄 [Update Domains](#update-domains)
|
|
47
47
|
- 🛠️ [Installation](#installation)
|
|
48
48
|
- 📦 [PyPI Installation](#1-pypi-installation)
|
|
49
49
|
- 🔄 [Automatic Installation](#2-automatic-installation)
|
|
@@ -70,18 +70,15 @@ License-File: LICENSE
|
|
|
70
70
|
# Installation
|
|
71
71
|
|
|
72
72
|
<p align="center">
|
|
73
|
-
<a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_win.exe">
|
|
73
|
+
<a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_win.exe" style="margin: 0 20px;">
|
|
74
74
|
<img src="https://img.shields.io/badge/-Windows-blue.svg?style=for-the-badge&logo=windows" alt="Windows">
|
|
75
75
|
</a>
|
|
76
|
-
<a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_mac">
|
|
76
|
+
<a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_mac" style="margin: 0 20px;">
|
|
77
77
|
<img src="https://img.shields.io/badge/-macOS-black.svg?style=for-the-badge&logo=apple" alt="macOS">
|
|
78
78
|
</a>
|
|
79
|
-
<a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_linux">
|
|
79
|
+
<a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_linux" style="margin: 0 20px;">
|
|
80
80
|
<img src="https://img.shields.io/badge/-Linux-orange.svg?style=for-the-badge&logo=linux" alt="Linux">
|
|
81
81
|
</a>
|
|
82
|
-
<a href="https://github.com/Arrowar/StreamingCommunity/releases">
|
|
83
|
-
<img src="https://img.shields.io/badge/-All_Versions-lightgrey.svg?style=for-the-badge" alt="All Versions">
|
|
84
|
-
</a>
|
|
85
82
|
</p>
|
|
86
83
|
|
|
87
84
|
|
|
@@ -283,13 +280,39 @@ The configuration file is divided into several main sections:
|
|
|
283
280
|
|
|
284
281
|
```json
|
|
285
282
|
{
|
|
286
|
-
"
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
283
|
+
"DEFAULT": {
|
|
284
|
+
"debug": false,
|
|
285
|
+
"show_message": true,
|
|
286
|
+
"clean_console": true,
|
|
287
|
+
"show_trending": true,
|
|
288
|
+
"use_api": true,
|
|
289
|
+
"not_close": false,
|
|
290
|
+
"telegram_bot": false
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
```
|
|
294
|
+
|
|
295
|
+
- `debug`: Enables debug logging
|
|
296
|
+
- `show_message`: Displays informational messages
|
|
297
|
+
- `clean_console`: Clears the console between operations
|
|
298
|
+
- `show_trending`: Shows trending content
|
|
299
|
+
- `use_api`: Uses API for domain updates instead of local configuration
|
|
300
|
+
- `not_close`: If set to true, keeps the program running after download is complete
|
|
301
|
+
* Can be changed from terminal with `--not_close true/false`
|
|
302
|
+
- `telegram_bot`: Enables Telegram bot integration
|
|
303
|
+
|
|
304
|
+
## OUT_FOLDER Settings
|
|
305
|
+
|
|
306
|
+
```json
|
|
307
|
+
{
|
|
308
|
+
"OUT_FOLDER": {
|
|
309
|
+
"root_path": "Video",
|
|
310
|
+
"movie_folder_name": "Movie",
|
|
311
|
+
"serie_folder_name": "Serie",
|
|
312
|
+
"anime_folder_name": "Anime",
|
|
313
|
+
"map_episode_name": "E%(episode)_%(episode_name)",
|
|
314
|
+
"add_siteName": false
|
|
315
|
+
}
|
|
293
316
|
}
|
|
294
317
|
```
|
|
295
318
|
|
|
@@ -298,17 +321,21 @@ The configuration file is divided into several main sections:
|
|
|
298
321
|
### Path examples:
|
|
299
322
|
* Windows: `C:\\MyLibrary\\Folder` or `\\\\MyServer\\MyLibrary` (if you want to use a network folder)
|
|
300
323
|
* Linux/MacOS: `Desktop/MyLibrary/Folder`
|
|
301
|
-
|
|
324
|
+
<br/><br/>
|
|
302
325
|
|
|
303
|
-
- `movie_folder_name`: The name of the subdirectory where movies will be stored
|
|
326
|
+
- `movie_folder_name`: The name of the subdirectory where movies will be stored
|
|
304
327
|
* Can be changed from terminal with `--movie_folder_name`
|
|
305
328
|
<br/><br/>
|
|
306
329
|
|
|
307
|
-
- `serie_folder_name`: The name of the subdirectory where TV series will be stored
|
|
330
|
+
- `serie_folder_name`: The name of the subdirectory where TV series will be stored
|
|
308
331
|
* Can be changed from terminal with `--serie_folder_name`
|
|
309
332
|
<br/><br/>
|
|
310
333
|
|
|
311
|
-
- `
|
|
334
|
+
- `anime_folder_name`: The name of the subdirectory where anime will be stored
|
|
335
|
+
* Can be changed from terminal with `--anime_folder_name`
|
|
336
|
+
<br/><br/>
|
|
337
|
+
|
|
338
|
+
- `map_episode_name`: Template for episode filenames
|
|
312
339
|
|
|
313
340
|
### Episode name usage:
|
|
314
341
|
|
|
@@ -317,59 +344,66 @@ The configuration file is divided into several main sections:
|
|
|
317
344
|
* `%(season)` : Is the number of the season
|
|
318
345
|
* `%(episode)` : Is the number of the episode
|
|
319
346
|
* `%(episode_name)` : Is the name of the episode
|
|
320
|
-
`<br/><br/>`
|
|
321
347
|
* Can be changed from terminal with `--map_episode_name`
|
|
322
|
-
<br
|
|
348
|
+
<br><br>
|
|
323
349
|
|
|
324
|
-
- `add_siteName`: If set to true, appends the site_name to the root path before the movie and serie folders
|
|
350
|
+
- `add_siteName`: If set to true, appends the site_name to the root path before the movie and serie folders
|
|
325
351
|
* Can be changed from terminal with `--add_siteName true/false`
|
|
326
352
|
<br/><br/>
|
|
327
353
|
|
|
328
|
-
|
|
329
|
-
* Can be changed from terminal with `--disable_searchDomain true/false`
|
|
330
|
-
<br/><br/>
|
|
331
|
-
|
|
332
|
-
- `not_close`: If set to true, keeps the program running after the download is complete.
|
|
333
|
-
* Can be changed from terminal with `--not_close true/false`
|
|
334
|
-
<br/><br/>
|
|
335
|
-
|
|
336
|
-
### qBittorrent Configuration
|
|
354
|
+
## QBIT_CONFIG Settings
|
|
337
355
|
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
}
|
|
356
|
+
```json
|
|
357
|
+
{
|
|
358
|
+
"QBIT_CONFIG": {
|
|
359
|
+
"host": "192.168.1.51",
|
|
360
|
+
"port": "6666",
|
|
361
|
+
"user": "admin",
|
|
362
|
+
"pass": "adminadmin"
|
|
346
363
|
}
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
To enable qBittorrent integration, follow the setup guide [here](https://github.com/lgallard/qBittorrent-Controller/wiki/How-to-enable-the-qBittorrent-Web-UI).
|
|
364
|
+
}
|
|
365
|
+
```
|
|
350
366
|
|
|
367
|
+
To enable qBittorrent integration, follow the setup guide [here](https://github.com/lgallard/qBittorrent-Controller/wiki/How-to-enable-the-qBittorrent-Web-UI).
|
|
351
368
|
|
|
352
369
|
## REQUESTS Settings
|
|
353
370
|
|
|
354
371
|
```json
|
|
355
372
|
{
|
|
356
|
-
"
|
|
357
|
-
|
|
373
|
+
"REQUESTS": {
|
|
374
|
+
"verify": false,
|
|
375
|
+
"timeout": 20,
|
|
376
|
+
"max_retry": 8
|
|
377
|
+
}
|
|
358
378
|
}
|
|
359
379
|
```
|
|
360
380
|
|
|
381
|
+
- `verify`: Verifies SSL certificates
|
|
361
382
|
- `timeout`: Maximum timeout (in seconds) for each request
|
|
362
383
|
- `max_retry`: Number of retry attempts per segment during M3U8 index download
|
|
363
384
|
|
|
364
|
-
|
|
365
385
|
## M3U8_DOWNLOAD Settings
|
|
366
386
|
|
|
367
387
|
```json
|
|
368
388
|
{
|
|
369
|
-
"
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
389
|
+
"M3U8_DOWNLOAD": {
|
|
390
|
+
"tqdm_delay": 0.01,
|
|
391
|
+
"default_video_workser": 12,
|
|
392
|
+
"default_audio_workser": 12,
|
|
393
|
+
"segment_timeout": 8,
|
|
394
|
+
"download_audio": true,
|
|
395
|
+
"merge_audio": true,
|
|
396
|
+
"specific_list_audio": [
|
|
397
|
+
"ita"
|
|
398
|
+
],
|
|
399
|
+
"download_subtitle": true,
|
|
400
|
+
"merge_subs": true,
|
|
401
|
+
"specific_list_subtitles": [
|
|
402
|
+
"ita",
|
|
403
|
+
"eng"
|
|
404
|
+
],
|
|
405
|
+
"cleanup_tmp_folder": true
|
|
406
|
+
}
|
|
373
407
|
}
|
|
374
408
|
```
|
|
375
409
|
|
|
@@ -382,66 +416,88 @@ The configuration file is divided into several main sections:
|
|
|
382
416
|
* Can be changed from terminal with `--default_audio_worker <number>`
|
|
383
417
|
<br/><br/>
|
|
384
418
|
|
|
385
|
-
- `
|
|
419
|
+
- `segment_timeout`: Timeout for downloading individual segments
|
|
420
|
+
- `download_audio`: Whether to download audio tracks
|
|
421
|
+
- `merge_audio`: Whether to merge audio with video
|
|
422
|
+
- `specific_list_audio`: List of audio languages to download
|
|
423
|
+
* Can be changed from terminal with `--specific_list_audio ita,eng`
|
|
424
|
+
<br/><br/>
|
|
386
425
|
|
|
426
|
+
- `download_subtitle`: Whether to download subtitles
|
|
427
|
+
- `merge_subs`: Whether to merge subtitles with video
|
|
428
|
+
- `specific_list_subtitles`: List of subtitle languages to download
|
|
429
|
+
* Can be changed from terminal with `--specific_list_subtitles ita,eng`
|
|
430
|
+
<br/><br/>
|
|
387
431
|
|
|
432
|
+
- `cleanup_tmp_folder`: Remove temporary .ts files after download
|
|
388
433
|
|
|
389
|
-
|
|
434
|
+
## Available Language Codes
|
|
390
435
|
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
436
|
+
| European | Asian | Middle Eastern | Others |
|
|
437
|
+
|-----------------|-----------------|-----------------|-----------------|
|
|
438
|
+
| ita - Italian | chi - Chinese | ara - Arabic | eng - English |
|
|
439
|
+
| spa - Spanish | jpn - Japanese | heb - Hebrew | por - Portuguese|
|
|
440
|
+
| fre - French | kor - Korean | tur - Turkish | fil - Filipino |
|
|
441
|
+
| ger - German | hin - Hindi | | ind - Indonesian|
|
|
442
|
+
| rus - Russian | mal - Malayalam | | may - Malay |
|
|
443
|
+
| swe - Swedish | tam - Tamil | | vie - Vietnamese|
|
|
444
|
+
| pol - Polish | tel - Telugu | | |
|
|
445
|
+
| ukr - Ukrainian | tha - Thai | | |
|
|
394
446
|
|
|
447
|
+
## M3U8_CONVERSION Settings
|
|
395
448
|
|
|
396
|
-
```
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
ind - Indonesian vie - Vietnamese
|
|
449
|
+
```json
|
|
450
|
+
{
|
|
451
|
+
"M3U8_CONVERSION": {
|
|
452
|
+
"use_codec": false,
|
|
453
|
+
"use_vcodec": true,
|
|
454
|
+
"use_acodec": true,
|
|
455
|
+
"use_bitrate": true,
|
|
456
|
+
"use_gpu": false,
|
|
457
|
+
"default_preset": "ultrafast"
|
|
458
|
+
}
|
|
459
|
+
}
|
|
408
460
|
```
|
|
409
461
|
|
|
410
|
-
|
|
411
|
-
|
|
462
|
+
- `use_codec`: Use specific codec settings
|
|
463
|
+
- `use_vcodec`: Use specific video codec
|
|
464
|
+
- `use_acodec`: Use specific audio codec
|
|
465
|
+
- `use_bitrate`: Apply bitrate settings
|
|
466
|
+
- `use_gpu`: Enable GPU acceleration (if available)
|
|
467
|
+
- `default_preset`: FFmpeg encoding preset (ultrafast, fast, medium, slow, etc.)
|
|
412
468
|
|
|
469
|
+
### Advanced M3U8 Conversion Options
|
|
413
470
|
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
- Free and open-source
|
|
436
|
-
|
|
437
|
-
You can download VLC Media Player from the [official website](https://www.videolan.org/vlc/).
|
|
471
|
+
The software supports various advanced encoding options via FFmpeg:
|
|
472
|
+
|
|
473
|
+
#### Encoding Presets
|
|
474
|
+
The `default_preset` configuration can be set to one of the following values:
|
|
475
|
+
- `ultrafast`: Extremely fast conversion but larger file size
|
|
476
|
+
- `superfast`: Very fast with good quality/size ratio
|
|
477
|
+
- `veryfast`: Fast with good compression
|
|
478
|
+
- `faster`: Optimal balance for most users
|
|
479
|
+
- `fast`: Good compression, moderate time
|
|
480
|
+
- `medium`: FFmpeg default setting
|
|
481
|
+
- `slow`: High quality, slower process
|
|
482
|
+
- `slower`: Very high quality, slow process
|
|
483
|
+
- `veryslow`: Maximum quality, very slow process
|
|
484
|
+
|
|
485
|
+
#### GPU Acceleration
|
|
486
|
+
When `use_gpu` is enabled, the system will use available hardware acceleration:
|
|
487
|
+
- NVIDIA: NVENC
|
|
488
|
+
- AMD: AMF
|
|
489
|
+
- Intel: QSV
|
|
490
|
+
|
|
491
|
+
You need to have updated drivers and FFmpeg compiled with hardware acceleration support.
|
|
438
492
|
|
|
439
493
|
## M3U8_PARSER Settings
|
|
440
494
|
|
|
441
495
|
```json
|
|
442
496
|
{
|
|
443
|
-
"
|
|
444
|
-
|
|
497
|
+
"M3U8_PARSER": {
|
|
498
|
+
"force_resolution": "Best",
|
|
499
|
+
"get_only_link": false
|
|
500
|
+
}
|
|
445
501
|
}
|
|
446
502
|
```
|
|
447
503
|
|
|
@@ -461,6 +517,58 @@ You can download VLC Media Player from the [official website](https://www.videol
|
|
|
461
517
|
|
|
462
518
|
- `get_only_link`: Return M3U8 playlist/index URL instead of downloading
|
|
463
519
|
|
|
520
|
+
## SITE_EXTRA Settings
|
|
521
|
+
|
|
522
|
+
```json
|
|
523
|
+
{
|
|
524
|
+
"SITE_EXTRA": {
|
|
525
|
+
"ddlstreamitaly": {
|
|
526
|
+
"ips4_device_key": "",
|
|
527
|
+
"ips4_member_id": "",
|
|
528
|
+
"ips4_login_key": ""
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
```
|
|
533
|
+
|
|
534
|
+
- Site-specific configuration for `ddlstreamitaly`:
|
|
535
|
+
- `ips4_device_key`: Device key for authentication
|
|
536
|
+
- `ips4_member_id`: Member ID for authentication
|
|
537
|
+
- `ips4_login_key`: Login key for authentication
|
|
538
|
+
|
|
539
|
+
## Update Domains
|
|
540
|
+
|
|
541
|
+
There are two ways to update the domains for the supported websites:
|
|
542
|
+
|
|
543
|
+
### 1. Using Local Configuration
|
|
544
|
+
|
|
545
|
+
1. Create a `domains.json` file in the root directory of the project
|
|
546
|
+
|
|
547
|
+
2. Add your domain configuration in the following format:
|
|
548
|
+
```json
|
|
549
|
+
{
|
|
550
|
+
"altadefinizione": {
|
|
551
|
+
"domain": "si",
|
|
552
|
+
"full_url": "https://altadefinizione.si/"
|
|
553
|
+
},
|
|
554
|
+
...
|
|
555
|
+
}
|
|
556
|
+
```
|
|
557
|
+
|
|
558
|
+
3. Set `use_api` to `false` in the `DEFAULT` section of your `config.json`:
|
|
559
|
+
```json
|
|
560
|
+
{
|
|
561
|
+
"DEFAULT": {
|
|
562
|
+
"use_api": false
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
```
|
|
566
|
+
|
|
567
|
+
### 2. Using API (Legacy)
|
|
568
|
+
|
|
569
|
+
The API-based domain updates are currently deprecated. To use it anyway, set `use_api` to `true` in your `config.json` file.
|
|
570
|
+
|
|
571
|
+
Note: If `use_api` is set to `false` and no `domains.json` file is found, the script will raise an error.
|
|
464
572
|
|
|
465
573
|
# COMMAND
|
|
466
574
|
|
|
@@ -487,9 +595,6 @@ python test_run.py --specific_list_audio ita,eng --specific_list_subtitles eng,s
|
|
|
487
595
|
|
|
488
596
|
# Keep console open after download
|
|
489
597
|
python test_run.py --not_close true
|
|
490
|
-
|
|
491
|
-
# Disable domain search and add site name
|
|
492
|
-
python test_run.py --disable_searchDomain true --add_siteName true
|
|
493
598
|
```
|
|
494
599
|
|
|
495
600
|
# Docker
|
|
@@ -571,20 +676,6 @@ Start the bot from the folder /StreamingCommunity/TelegramHelp
|
|
|
571
676
|
python3 telegram_bot.py
|
|
572
677
|
```
|
|
573
678
|
|
|
574
|
-
# Website Status
|
|
575
|
-
|
|
576
|
-
| Website | Status | Command |
|
|
577
|
-
|:-------------------|:------:|:--------:|
|
|
578
|
-
| [1337xx](https://1337xx.to/) | ✅ | -133 |
|
|
579
|
-
| [AnimeUnity](https://animeunity.so/) | ✅ | -ANI |
|
|
580
|
-
| [Ilcorsaronero](https://ilcorsaronero.link/) | ✅ | `-ILC` |
|
|
581
|
-
| [CB01New](https://cb01new.gold/) | ✅ | -CB0 |
|
|
582
|
-
| [DDLStreamItaly](https://ddlstreamitaly.co/) | ✅ | -DDL |
|
|
583
|
-
| [GuardaSerie](https://guardaserie.now/) | ✅ | -GUA |
|
|
584
|
-
| [MostraGuarda](https://mostraguarda.stream/) | ✅ | -MOS |
|
|
585
|
-
| [StreamingCommunity](https://streamingcommunity.lu/) | ✅ | -STR |
|
|
586
|
-
|
|
587
|
-
|
|
588
679
|
# Tutorials
|
|
589
680
|
|
|
590
681
|
- [Windows Tutorial](https://www.youtube.com/watch?v=mZGqK4wdN-k)
|