StreamingCommunity 2.7.0__tar.gz → 2.9.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.7.0/StreamingCommunity.egg-info → StreamingCommunity-2.9.0}/PKG-INFO +164 -90
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/README.md +163 -89
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Player/ddl.py +2 -2
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Player/maxstream.py +7 -13
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Player/supervideo.py +7 -33
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Player/vixcloud.py +8 -80
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/1337xx/__init__.py +8 -1
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/1337xx/site.py +10 -16
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/1337xx/title.py +4 -1
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/animeunity/__init__.py +9 -2
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/animeunity/film_serie.py +7 -1
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/animeunity/site.py +8 -10
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py +1 -1
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/cb01new/__init__.py +8 -1
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/cb01new/film.py +10 -6
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/cb01new/site.py +16 -15
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py +9 -2
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/ddlstreamitaly/series.py +7 -1
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/ddlstreamitaly/site.py +10 -15
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py +1 -1
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/guardaserie/__init__.py +9 -2
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/guardaserie/series.py +13 -8
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/guardaserie/site.py +12 -17
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py +1 -1
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/mostraguarda/__init__.py +6 -2
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/mostraguarda/film.py +10 -8
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/streamingcommunity/__init__.py +9 -2
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/streamingcommunity/film.py +11 -6
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/streamingcommunity/series.py +17 -10
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/streamingcommunity/site.py +10 -15
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py +2 -2
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Template/Util/__init__.py +0 -1
- StreamingCommunity-2.9.0/StreamingCommunity/Api/Template/Util/get_domain.py +99 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Template/Util/manage_ep.py +10 -5
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Template/config_loader.py +8 -8
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Template/site.py +3 -6
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/Downloader/HLS/downloader.py +15 -14
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/Downloader/HLS/segments.py +11 -31
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/Downloader/MP4/downloader.py +12 -9
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/Downloader/TOR/downloader.py +109 -101
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/FFmpeg/__init__.py +1 -1
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/FFmpeg/capture.py +10 -12
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/FFmpeg/command.py +15 -14
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/FFmpeg/util.py +9 -38
- StreamingCommunity-2.9.0/StreamingCommunity/Lib/M3U8/decryptor.py +91 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/M3U8/estimator.py +8 -16
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/M3U8/parser.py +25 -27
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/M3U8/url_fixer.py +1 -4
- StreamingCommunity-2.9.0/StreamingCommunity/Lib/TMBD/__init__.py +4 -0
- StreamingCommunity-2.9.0/StreamingCommunity/Lib/TMBD/obj_tmbd.py +25 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/TMBD/tmdb.py +4 -9
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/TelegramHelp/telegram_bot.py +50 -50
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Upload/update.py +3 -2
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Upload/version.py +1 -1
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Util/color.py +1 -1
- StreamingCommunity-2.7.0/StreamingCommunity/Util/_jsonConfig.py → StreamingCommunity-2.9.0/StreamingCommunity/Util/config_json.py +148 -54
- StreamingCommunity-2.9.0/StreamingCommunity/Util/headers.py +20 -0
- StreamingCommunity-2.9.0/StreamingCommunity/Util/logger.py +92 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Util/message.py +8 -3
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Util/os.py +41 -93
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Util/table.py +8 -17
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/run.py +26 -34
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0/StreamingCommunity.egg-info}/PKG-INFO +164 -90
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity.egg-info/SOURCES.txt +1 -5
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity.egg-info/requires.txt +1 -2
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/setup.py +1 -1
- StreamingCommunity-2.7.0/StreamingCommunity/Api/Template/Util/get_domain.py +0 -141
- StreamingCommunity-2.7.0/StreamingCommunity/Api/Template/Util/recall_search.py +0 -37
- StreamingCommunity-2.7.0/StreamingCommunity/Lib/Downloader/HLS/proxyes.py +0 -110
- StreamingCommunity-2.7.0/StreamingCommunity/Lib/M3U8/decryptor.py +0 -165
- StreamingCommunity-2.7.0/StreamingCommunity/Lib/TMBD/__init__.py +0 -2
- StreamingCommunity-2.7.0/StreamingCommunity/Lib/TMBD/obj_tmbd.py +0 -39
- StreamingCommunity-2.7.0/StreamingCommunity/Util/call_stack.py +0 -42
- StreamingCommunity-2.7.0/StreamingCommunity/Util/console.py +0 -12
- StreamingCommunity-2.7.0/StreamingCommunity/Util/headers.py +0 -56
- StreamingCommunity-2.7.0/StreamingCommunity/Util/logger.py +0 -62
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/LICENSE +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/MANIFEST.in +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Player/Helper/Vixcloud/util.py +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Template/Class/SearchType.py +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Api/Template/__init__.py +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/Downloader/__init__.py +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Lib/M3U8/__init__.py +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/TelegramHelp/__init__.py +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/Util/ffmpeg_installer.py +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity/__init__.py +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity.egg-info/dependency_links.txt +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity.egg-info/entry_points.txt +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.0}/StreamingCommunity.egg-info/top_level.txt +0 -0
- {StreamingCommunity-2.7.0 → StreamingCommunity-2.9.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.9.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
|
|
@@ -280,13 +280,39 @@ The configuration file is divided into several main sections:
|
|
|
280
280
|
|
|
281
281
|
```json
|
|
282
282
|
{
|
|
283
|
-
"
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
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
|
+
}
|
|
290
316
|
}
|
|
291
317
|
```
|
|
292
318
|
|
|
@@ -295,17 +321,21 @@ The configuration file is divided into several main sections:
|
|
|
295
321
|
### Path examples:
|
|
296
322
|
* Windows: `C:\\MyLibrary\\Folder` or `\\\\MyServer\\MyLibrary` (if you want to use a network folder)
|
|
297
323
|
* Linux/MacOS: `Desktop/MyLibrary/Folder`
|
|
298
|
-
|
|
324
|
+
<br/><br/>
|
|
299
325
|
|
|
300
|
-
- `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
|
|
301
327
|
* Can be changed from terminal with `--movie_folder_name`
|
|
302
328
|
<br/><br/>
|
|
303
329
|
|
|
304
|
-
- `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
|
|
305
331
|
* Can be changed from terminal with `--serie_folder_name`
|
|
306
332
|
<br/><br/>
|
|
307
333
|
|
|
308
|
-
- `
|
|
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
|
|
309
339
|
|
|
310
340
|
### Episode name usage:
|
|
311
341
|
|
|
@@ -314,59 +344,66 @@ The configuration file is divided into several main sections:
|
|
|
314
344
|
* `%(season)` : Is the number of the season
|
|
315
345
|
* `%(episode)` : Is the number of the episode
|
|
316
346
|
* `%(episode_name)` : Is the name of the episode
|
|
317
|
-
`<br/><br/>`
|
|
318
347
|
* Can be changed from terminal with `--map_episode_name`
|
|
319
|
-
<br
|
|
348
|
+
<br><br>
|
|
320
349
|
|
|
321
|
-
- `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
|
|
322
351
|
* Can be changed from terminal with `--add_siteName true/false`
|
|
323
352
|
<br/><br/>
|
|
324
353
|
|
|
325
|
-
|
|
326
|
-
* Can be changed from terminal with `--disable_searchDomain true/false`
|
|
327
|
-
<br/><br/>
|
|
328
|
-
|
|
329
|
-
- `not_close`: If set to true, keeps the program running after the download is complete.
|
|
330
|
-
* Can be changed from terminal with `--not_close true/false`
|
|
331
|
-
<br/><br/>
|
|
332
|
-
|
|
333
|
-
### qBittorrent Configuration
|
|
354
|
+
## QBIT_CONFIG Settings
|
|
334
355
|
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
}
|
|
356
|
+
```json
|
|
357
|
+
{
|
|
358
|
+
"QBIT_CONFIG": {
|
|
359
|
+
"host": "192.168.1.51",
|
|
360
|
+
"port": "6666",
|
|
361
|
+
"user": "admin",
|
|
362
|
+
"pass": "adminadmin"
|
|
343
363
|
}
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
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
|
+
```
|
|
347
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).
|
|
348
368
|
|
|
349
369
|
## REQUESTS Settings
|
|
350
370
|
|
|
351
371
|
```json
|
|
352
372
|
{
|
|
353
|
-
"
|
|
354
|
-
|
|
373
|
+
"REQUESTS": {
|
|
374
|
+
"verify": false,
|
|
375
|
+
"timeout": 20,
|
|
376
|
+
"max_retry": 8
|
|
377
|
+
}
|
|
355
378
|
}
|
|
356
379
|
```
|
|
357
380
|
|
|
381
|
+
- `verify`: Verifies SSL certificates
|
|
358
382
|
- `timeout`: Maximum timeout (in seconds) for each request
|
|
359
383
|
- `max_retry`: Number of retry attempts per segment during M3U8 index download
|
|
360
384
|
|
|
361
|
-
|
|
362
385
|
## M3U8_DOWNLOAD Settings
|
|
363
386
|
|
|
364
387
|
```json
|
|
365
388
|
{
|
|
366
|
-
"
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
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
|
+
}
|
|
370
407
|
}
|
|
371
408
|
```
|
|
372
409
|
|
|
@@ -379,66 +416,88 @@ The configuration file is divided into several main sections:
|
|
|
379
416
|
* Can be changed from terminal with `--default_audio_worker <number>`
|
|
380
417
|
<br/><br/>
|
|
381
418
|
|
|
382
|
-
- `
|
|
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/>
|
|
383
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/>
|
|
384
431
|
|
|
432
|
+
- `cleanup_tmp_folder`: Remove temporary .ts files after download
|
|
385
433
|
|
|
386
|
-
|
|
434
|
+
## Available Language Codes
|
|
387
435
|
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
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 | | |
|
|
391
446
|
|
|
447
|
+
## M3U8_CONVERSION Settings
|
|
392
448
|
|
|
393
|
-
```
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
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
|
+
}
|
|
405
460
|
```
|
|
406
461
|
|
|
407
|
-
|
|
408
|
-
|
|
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.)
|
|
409
468
|
|
|
469
|
+
### Advanced M3U8 Conversion Options
|
|
410
470
|
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
- Free and open-source
|
|
433
|
-
|
|
434
|
-
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.
|
|
435
492
|
|
|
436
493
|
## M3U8_PARSER Settings
|
|
437
494
|
|
|
438
495
|
```json
|
|
439
496
|
{
|
|
440
|
-
"
|
|
441
|
-
|
|
497
|
+
"M3U8_PARSER": {
|
|
498
|
+
"force_resolution": "Best",
|
|
499
|
+
"get_only_link": false
|
|
500
|
+
}
|
|
442
501
|
}
|
|
443
502
|
```
|
|
444
503
|
|
|
@@ -458,7 +517,25 @@ You can download VLC Media Player from the [official website](https://www.videol
|
|
|
458
517
|
|
|
459
518
|
- `get_only_link`: Return M3U8 playlist/index URL instead of downloading
|
|
460
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
|
+
```
|
|
461
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
|
+
|
|
462
539
|
## Update Domains
|
|
463
540
|
|
|
464
541
|
There are two ways to update the domains for the supported websites:
|
|
@@ -518,9 +595,6 @@ python test_run.py --specific_list_audio ita,eng --specific_list_subtitles eng,s
|
|
|
518
595
|
|
|
519
596
|
# Keep console open after download
|
|
520
597
|
python test_run.py --not_close true
|
|
521
|
-
|
|
522
|
-
# Disable domain search and add site name
|
|
523
|
-
python test_run.py --disable_searchDomain true --add_siteName true
|
|
524
598
|
```
|
|
525
599
|
|
|
526
600
|
# Docker
|