StreamingCommunity 2.9.5__py3-none-any.whl → 2.9.7__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 StreamingCommunity might be problematic. Click here for more details.
- StreamingCommunity/Api/Player/sweetpixel.py +49 -0
- StreamingCommunity/Api/Site/1337xx/site.py +3 -3
- StreamingCommunity/Api/Site/1337xx/title.py +4 -6
- StreamingCommunity/Api/Site/altadefinizione/film.py +1 -1
- StreamingCommunity/Api/Site/altadefinizione/series.py +1 -2
- StreamingCommunity/Api/Site/altadefinizione/site.py +3 -3
- StreamingCommunity/Api/Site/animeunity/film_serie.py +3 -4
- StreamingCommunity/Api/Site/animeunity/site.py +4 -4
- StreamingCommunity/Api/Site/animeworld/__init__.py +71 -0
- StreamingCommunity/Api/Site/animeworld/serie.py +107 -0
- StreamingCommunity/Api/Site/animeworld/site.py +111 -0
- StreamingCommunity/Api/Site/animeworld/util/ScrapeSerie.py +79 -0
- StreamingCommunity/Api/Site/cb01new/film.py +1 -1
- StreamingCommunity/Api/Site/cb01new/site.py +3 -3
- StreamingCommunity/Api/Site/ddlstreamitaly/series.py +2 -2
- StreamingCommunity/Api/Site/ddlstreamitaly/site.py +3 -3
- StreamingCommunity/Api/Site/guardaserie/series.py +1 -1
- StreamingCommunity/Api/Site/guardaserie/site.py +3 -3
- StreamingCommunity/Api/Site/mostraguarda/film.py +1 -1
- StreamingCommunity/Api/Site/streamingcommunity/film.py +1 -1
- StreamingCommunity/Api/Site/streamingcommunity/series.py +1 -2
- StreamingCommunity/Api/Site/streamingcommunity/site.py +3 -3
- StreamingCommunity/Lib/Downloader/HLS/segments.py +1 -3
- StreamingCommunity/Lib/Downloader/TOR/downloader.py +397 -227
- StreamingCommunity/Lib/FFmpeg/util.py +12 -0
- StreamingCommunity/Lib/M3U8/estimator.py +5 -8
- StreamingCommunity/Upload/update.py +1 -1
- StreamingCommunity/Upload/version.py +1 -1
- StreamingCommunity/run.py +10 -0
- {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.7.dist-info}/METADATA +20 -12
- {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.7.dist-info}/RECORD +35 -30
- {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.7.dist-info}/WHEEL +1 -1
- {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.7.dist-info}/entry_points.txt +0 -0
- {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.7.dist-info/licenses}/LICENSE +0 -0
- {streamingcommunity-2.9.5.dist-info → streamingcommunity-2.9.7.dist-info}/top_level.txt +0 -0
|
@@ -207,6 +207,18 @@ def check_duration_v_a(video_path, audio_path, tolerance=1.0):
|
|
|
207
207
|
video_duration = get_video_duration(video_path)
|
|
208
208
|
audio_duration = get_video_duration(audio_path)
|
|
209
209
|
|
|
210
|
+
# Check if either duration is None and specify which one is None
|
|
211
|
+
if video_duration is None and audio_duration is None:
|
|
212
|
+
console.print("[yellow]Warning: Both video and audio durations are None. Returning 0 as duration difference.[/yellow]")
|
|
213
|
+
return False, 0.0
|
|
214
|
+
elif video_duration is None:
|
|
215
|
+
console.print("[yellow]Warning: Video duration is None. Returning 0 as duration difference.[/yellow]")
|
|
216
|
+
return False, 0.0
|
|
217
|
+
elif audio_duration is None:
|
|
218
|
+
console.print("[yellow]Warning: Audio duration is None. Returning 0 as duration difference.[/yellow]")
|
|
219
|
+
return False, 0.0
|
|
220
|
+
|
|
221
|
+
# Calculate the duration difference
|
|
210
222
|
duration_difference = abs(video_duration - audio_duration)
|
|
211
223
|
|
|
212
224
|
# Check if the duration difference is within the tolerance
|
|
@@ -27,7 +27,6 @@ class M3U8_Ts_Estimator:
|
|
|
27
27
|
- total_segments (int): Length of total segments to download.
|
|
28
28
|
"""
|
|
29
29
|
self.ts_file_sizes = []
|
|
30
|
-
self.now_downloaded_size = 0
|
|
31
30
|
self.total_segments = total_segments
|
|
32
31
|
self.segments_instance = segments_instance
|
|
33
32
|
self.lock = threading.Lock()
|
|
@@ -42,15 +41,13 @@ class M3U8_Ts_Estimator:
|
|
|
42
41
|
else:
|
|
43
42
|
logging.debug("USE_LARGE_BAR is False, speed capture thread not started")
|
|
44
43
|
|
|
45
|
-
def add_ts_file(self, size: int
|
|
44
|
+
def add_ts_file(self, size: int):
|
|
46
45
|
"""Add a file size to the list of file sizes."""
|
|
47
|
-
if size <= 0
|
|
48
|
-
logging.error(f"Invalid input values: size={size}
|
|
46
|
+
if size <= 0:
|
|
47
|
+
logging.error(f"Invalid input values: size={size}")
|
|
49
48
|
return
|
|
50
49
|
|
|
51
50
|
self.ts_file_sizes.append(size)
|
|
52
|
-
self.now_downloaded_size += size_download
|
|
53
|
-
logging.debug(f"Current total downloaded size: {self.now_downloaded_size}")
|
|
54
51
|
|
|
55
52
|
def capture_speed(self, interval: float = 1.5):
|
|
56
53
|
"""Capture the internet speed periodically."""
|
|
@@ -99,9 +96,9 @@ class M3U8_Ts_Estimator:
|
|
|
99
96
|
logging.error("An unexpected error occurred: %s", e)
|
|
100
97
|
return "Error"
|
|
101
98
|
|
|
102
|
-
def update_progress_bar(self, total_downloaded: int,
|
|
99
|
+
def update_progress_bar(self, total_downloaded: int, progress_counter: tqdm) -> None:
|
|
103
100
|
try:
|
|
104
|
-
self.add_ts_file(total_downloaded * self.total_segments
|
|
101
|
+
self.add_ts_file(total_downloaded * self.total_segments)
|
|
105
102
|
|
|
106
103
|
file_total_size = self.calculate_total_size()
|
|
107
104
|
number_file_total_size = file_total_size.split(' ')[0]
|
|
@@ -68,7 +68,7 @@ def update():
|
|
|
68
68
|
|
|
69
69
|
# Check installed version
|
|
70
70
|
if str(__version__).replace('v', '') != str(last_version).replace('v', '') :
|
|
71
|
-
console.print(f"\n[
|
|
71
|
+
console.print(f"\n[cyan]New version available: [yellow]{last_version}")
|
|
72
72
|
|
|
73
73
|
console.print(f"\n[red]{__title__} has been downloaded [yellow]{total_download_count} [red]times, but only [yellow]{percentual_stars}% [red]of users have starred it.\n\
|
|
74
74
|
[cyan]Help the repository grow today by leaving a [yellow]star [cyan]and [yellow]sharing [cyan]it with others online!")
|
StreamingCommunity/run.py
CHANGED
|
@@ -254,8 +254,18 @@ def main(script_id = 0):
|
|
|
254
254
|
}
|
|
255
255
|
|
|
256
256
|
# Add dynamic arguments based on loaded search modules
|
|
257
|
+
used_short_options = set()
|
|
258
|
+
|
|
257
259
|
for alias, (_, use_for) in search_functions.items():
|
|
258
260
|
short_option = alias[:3].upper()
|
|
261
|
+
|
|
262
|
+
original_short_option = short_option
|
|
263
|
+
count = 1
|
|
264
|
+
while short_option in used_short_options:
|
|
265
|
+
short_option = f"{original_short_option}{count}"
|
|
266
|
+
count += 1
|
|
267
|
+
|
|
268
|
+
used_short_options.add(short_option)
|
|
259
269
|
long_option = alias
|
|
260
270
|
parser.add_argument(f'-{short_option}', f'--{long_option}', action='store_true', help=f'Search for {alias.split("_")[0]} on streaming platforms.')
|
|
261
271
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: StreamingCommunity
|
|
3
|
-
Version: 2.9.
|
|
3
|
+
Version: 2.9.7
|
|
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
|
|
@@ -28,12 +28,13 @@ Dynamic: description
|
|
|
28
28
|
Dynamic: description-content-type
|
|
29
29
|
Dynamic: home-page
|
|
30
30
|
Dynamic: keywords
|
|
31
|
+
Dynamic: license-file
|
|
31
32
|
Dynamic: project-url
|
|
32
33
|
Dynamic: requires-dist
|
|
33
34
|
Dynamic: requires-python
|
|
34
35
|
|
|
35
36
|
<p align="center">
|
|
36
|
-
<img src="https://i.ibb.co/v6RnT0wY/s2.jpg" alt="Project Logo" width="
|
|
37
|
+
<img src="https://i.ibb.co/v6RnT0wY/s2.jpg" alt="Project Logo" width="600"/>
|
|
37
38
|
</p>
|
|
38
39
|
|
|
39
40
|
<p align="center">
|
|
@@ -66,6 +67,7 @@ Dynamic: requires-python
|
|
|
66
67
|
# 📋 Table of Contents
|
|
67
68
|
|
|
68
69
|
- 🔄 [Update Domains](#update-domains)
|
|
70
|
+
- 🌐 [Available Sites](https://arrowar.github.io/StreamingDirectory/)
|
|
69
71
|
- 🛠️ [Installation](#installation)
|
|
70
72
|
- 📦 [PyPI Installation](#1-pypi-installation)
|
|
71
73
|
- 🔄 [Automatic Installation](#2-automatic-installation)
|
|
@@ -94,18 +96,23 @@ Dynamic: requires-python
|
|
|
94
96
|
# Installation
|
|
95
97
|
|
|
96
98
|
<p align="center">
|
|
97
|
-
<a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_win.exe"
|
|
99
|
+
<a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_win.exe">
|
|
98
100
|
<img src="https://img.shields.io/badge/-Windows-blue.svg?style=for-the-badge&logo=windows" alt="Windows">
|
|
99
101
|
</a>
|
|
100
|
-
<a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_mac"
|
|
102
|
+
<a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_mac">
|
|
101
103
|
<img src="https://img.shields.io/badge/-macOS-black.svg?style=for-the-badge&logo=apple" alt="macOS">
|
|
102
104
|
</a>
|
|
103
|
-
<a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_linux"
|
|
105
|
+
<a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_linux">
|
|
104
106
|
<img src="https://img.shields.io/badge/-Linux-orange.svg?style=for-the-badge&logo=linux" alt="Linux">
|
|
105
107
|
</a>
|
|
108
|
+
<a href="https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_linux_previous">
|
|
109
|
+
<img src="https://img.shields.io/badge/-Linux Previous-gray.svg?style=for-the-badge&logo=linux" alt="Linux Previous">
|
|
110
|
+
</a>
|
|
111
|
+
<a href="https://github.com/Arrowar/StreamingCommunity/releases">
|
|
112
|
+
<img src="https://img.shields.io/badge/-All Versions-lightgrey.svg?style=for-the-badge&logo=github" alt="All Versions">
|
|
113
|
+
</a>
|
|
106
114
|
</p>
|
|
107
115
|
|
|
108
|
-
|
|
109
116
|
## 1. PyPI Installation
|
|
110
117
|
|
|
111
118
|
Install directly from PyPI:
|
|
@@ -199,13 +206,10 @@ from StreamingCommunity.Download import TOR_downloader
|
|
|
199
206
|
client = TOR_downloader()
|
|
200
207
|
|
|
201
208
|
# Add magnet link
|
|
202
|
-
client.add_magnet_link("magnet:?xt=urn:btih:example_hash&dn=example_name")
|
|
209
|
+
client.add_magnet_link("magnet:?xt=urn:btih:example_hash&dn=example_name", save_path=".")
|
|
203
210
|
|
|
204
211
|
# Start download
|
|
205
212
|
client.start_download()
|
|
206
|
-
|
|
207
|
-
# Move downloaded files to specific location
|
|
208
|
-
client.move_downloaded_files("/downloads/torrents/")
|
|
209
213
|
```
|
|
210
214
|
|
|
211
215
|
See [Torrent example](./Test/Download/TOR.py) for complete usage.
|
|
@@ -386,7 +390,9 @@ The configuration file is divided into several main sections:
|
|
|
386
390
|
"show_trending": true,
|
|
387
391
|
"use_api": true,
|
|
388
392
|
"not_close": false,
|
|
389
|
-
"telegram_bot": false
|
|
393
|
+
"telegram_bot": false,
|
|
394
|
+
"download_site_data": false,
|
|
395
|
+
"validate_github_config": false
|
|
390
396
|
}
|
|
391
397
|
}
|
|
392
398
|
```
|
|
@@ -399,6 +405,8 @@ The configuration file is divided into several main sections:
|
|
|
399
405
|
- `not_close`: If set to true, keeps the program running after download is complete
|
|
400
406
|
* Can be changed from terminal with `--not_close true/false`
|
|
401
407
|
- `telegram_bot`: Enables Telegram bot integration
|
|
408
|
+
- `download_site_data`: If set to false, disables automatic site data download
|
|
409
|
+
- `validate_github_config`: If set to false, disables validation and updating of configuration from GitHub
|
|
402
410
|
|
|
403
411
|
## OUT_FOLDER Settings
|
|
404
412
|
|
|
@@ -1,41 +1,46 @@
|
|
|
1
1
|
StreamingCommunity/__init__.py,sha256=Cw-N0VCg7sef1WqdtvVwrhs1zc4LoUhs5C8k7vpM1lQ,207
|
|
2
2
|
StreamingCommunity/global_search.py,sha256=1U74JtXLWDGC_r5KCsQt4kC-XRO76QIWk3QnUz-1AqY,12126
|
|
3
|
-
StreamingCommunity/run.py,sha256=
|
|
3
|
+
StreamingCommunity/run.py,sha256=OgHnX1bdAFDLEou7pclpDIKXRFhIiqkZaLlYgHuhf0E,13213
|
|
4
4
|
StreamingCommunity/Api/Player/ddl.py,sha256=M_ePETCMBpIHr5K5Yb7EML5VXwqkR7vJHQcGIv4AEQw,2261
|
|
5
5
|
StreamingCommunity/Api/Player/maxstream.py,sha256=WXg8xncFXFiaUmTVXxB3NyknQtbvd0sF1eRaoDO24bU,4822
|
|
6
6
|
StreamingCommunity/Api/Player/supervideo.py,sha256=hr9QViI-XD0Dqhcx90oaH8_j0d6cxpVaf-EuCjMs6hI,5199
|
|
7
|
+
StreamingCommunity/Api/Player/sweetpixel.py,sha256=Def9T7xTNUpGMsvUpGZ7OE_EMrKDh-6YJz9HHaewhuA,1658
|
|
7
8
|
StreamingCommunity/Api/Player/vixcloud.py,sha256=NOZhW59hyBnG5FfmppcnIudAztr7seWzQBzAN3KC_3M,6317
|
|
8
9
|
StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py,sha256=U-8QlD5kGzIk3-4t4D6QyYmiDe8UBrSuVi1YHRQb7AU,4295
|
|
9
10
|
StreamingCommunity/Api/Player/Helper/Vixcloud/util.py,sha256=QLUgbwQrpuPIVNzdBlAiEJXnd-eCj_JQFckZZEEL55w,5214
|
|
10
11
|
StreamingCommunity/Api/Site/1337xx/__init__.py,sha256=En0bGDLm9fTKuR9ApQw2V8HuFcQNRjsy8sAcgjadIfM,2041
|
|
11
|
-
StreamingCommunity/Api/Site/1337xx/site.py,sha256=
|
|
12
|
-
StreamingCommunity/Api/Site/1337xx/title.py,sha256=
|
|
12
|
+
StreamingCommunity/Api/Site/1337xx/site.py,sha256=XHG2Ojhmj2eutyWJPIICZkJUSvpa4IEB7xsNs1Dqcfk,2222
|
|
13
|
+
StreamingCommunity/Api/Site/1337xx/title.py,sha256=8T3cVRb-Mt9QdOtKWVVFHz8iOHqspf7iw28E7bfTV78,1865
|
|
13
14
|
StreamingCommunity/Api/Site/altadefinizione/__init__.py,sha256=dBRK4a3URd3i8IhYSXbKg6hb_lXaY8u1qJ9pDLkKKdk,3266
|
|
14
|
-
StreamingCommunity/Api/Site/altadefinizione/film.py,sha256=
|
|
15
|
-
StreamingCommunity/Api/Site/altadefinizione/series.py,sha256=
|
|
16
|
-
StreamingCommunity/Api/Site/altadefinizione/site.py,sha256=
|
|
15
|
+
StreamingCommunity/Api/Site/altadefinizione/film.py,sha256=8XNFCtuR3BUrAkuoukthU0s6v9tc9QsWNShouBoxZqA,4396
|
|
16
|
+
StreamingCommunity/Api/Site/altadefinizione/series.py,sha256=okrRq1rvQ9FKwOymsyDtpmFzIxEm49rwo2SI5Pr_Voc,7598
|
|
17
|
+
StreamingCommunity/Api/Site/altadefinizione/site.py,sha256=BW-1XqcHcVqvNFdggJEjRPI2kwxw6HOP4QeqdybD_AU,2688
|
|
17
18
|
StreamingCommunity/Api/Site/altadefinizione/util/ScrapeSerie.py,sha256=tdO3ebcmU-cPnJQX4L1PVPN7IHNzu4hS-hjPWo_evCk,2526
|
|
18
19
|
StreamingCommunity/Api/Site/animeunity/__init__.py,sha256=DH6ltjOAh2W5utxRYDQhhx05GcHp5-5xDhICL9DH2jk,3097
|
|
19
|
-
StreamingCommunity/Api/Site/animeunity/film_serie.py,sha256=
|
|
20
|
-
StreamingCommunity/Api/Site/animeunity/site.py,sha256=
|
|
20
|
+
StreamingCommunity/Api/Site/animeunity/film_serie.py,sha256=a0Hn2tjcWW1_L82e9H9DlgIJzASYnVHPPWydO28POtk,6014
|
|
21
|
+
StreamingCommunity/Api/Site/animeunity/site.py,sha256=jxg93WUx5ouBDs4oz1saWqSoJO9Ou1I3qJev0aODMl4,4947
|
|
21
22
|
StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py,sha256=6Vbw5KVwUbgooGjUIRAuXr9cWSkHDkAFP7EiXF2T4OM,2709
|
|
23
|
+
StreamingCommunity/Api/Site/animeworld/__init__.py,sha256=pHQ_qscQYG-4oXe2PJ_98MY1VRAkmPfYqmTaqGC5Hsg,2160
|
|
24
|
+
StreamingCommunity/Api/Site/animeworld/serie.py,sha256=kXhMVozyzRFxDkGj2O0utT6YSdCTaWm5gNrXSyrwR5w,3305
|
|
25
|
+
StreamingCommunity/Api/Site/animeworld/site.py,sha256=zjVvKPgjqPEiPWN6YSYhZg7Y-Bj5TsYBvI9SP3G6mow,3495
|
|
26
|
+
StreamingCommunity/Api/Site/animeworld/util/ScrapeSerie.py,sha256=-k_xo5BKv6m-NJBZSHCt-skGIyh_-YCp-hHDpuuujp4,2617
|
|
22
27
|
StreamingCommunity/Api/Site/cb01new/__init__.py,sha256=C-6-HDxG73xXV6FK6LnQhs5yjkJawke4nq5kBQCVjSM,2081
|
|
23
|
-
StreamingCommunity/Api/Site/cb01new/film.py,sha256=
|
|
24
|
-
StreamingCommunity/Api/Site/cb01new/site.py,sha256=
|
|
28
|
+
StreamingCommunity/Api/Site/cb01new/film.py,sha256=vjd1ftm4LhxxG0TTKEwlOXtx0AYgxBbV5ZlQH8aSxGU,1695
|
|
29
|
+
StreamingCommunity/Api/Site/cb01new/site.py,sha256=_JPKP2BMK5SL_QZPtt7mbDdef_t0J7QO7QDKVw6xm-4,2068
|
|
25
30
|
StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py,sha256=H_Z46fvmoWHfrafhlgTHouhkhDbokxCAaDRmk8d07P8,2183
|
|
26
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/series.py,sha256=
|
|
27
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/site.py,sha256=
|
|
31
|
+
StreamingCommunity/Api/Site/ddlstreamitaly/series.py,sha256=C9kZjnGu7G9SSxDE8VstuAlnhLku7LMF-R7OD_sbKHM,3499
|
|
32
|
+
StreamingCommunity/Api/Site/ddlstreamitaly/site.py,sha256=cq2-fVU7w7-caZYXQTADYuLD7cEXJ3czvZIyDEXR_4s,2451
|
|
28
33
|
StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py,sha256=HY8YEvzWp3sy1q07rFLXLZhGYvapA1amMZByYvs0iJM,2553
|
|
29
34
|
StreamingCommunity/Api/Site/guardaserie/__init__.py,sha256=_VtuSxR-6mWET-TRPg1nHhe5QWHImdnZRB8chQtGrm0,2040
|
|
30
|
-
StreamingCommunity/Api/Site/guardaserie/series.py,sha256=
|
|
31
|
-
StreamingCommunity/Api/Site/guardaserie/site.py,sha256=
|
|
35
|
+
StreamingCommunity/Api/Site/guardaserie/series.py,sha256=Tjjrha2U4mO7TQLQnd-RKBh1izf7aUuujYLaTZFPpAw,5771
|
|
36
|
+
StreamingCommunity/Api/Site/guardaserie/site.py,sha256=zfujdRe-kPsxnPBWFpcYYYsbt5m6z_Lqql2XOWnQmI0,2106
|
|
32
37
|
StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py,sha256=4sZRWm8r5X80q285hemRf7MAWeaN5yfOU6i1SjKU4Tg,3268
|
|
33
38
|
StreamingCommunity/Api/Site/mostraguarda/__init__.py,sha256=RHUGgn_2uSLMHgPrCXAUqDDK6qv7PqimFr5z1mAYtrM,1933
|
|
34
|
-
StreamingCommunity/Api/Site/mostraguarda/film.py,sha256=
|
|
39
|
+
StreamingCommunity/Api/Site/mostraguarda/film.py,sha256=HTn9GWX_oKKICBcm_Hy0FM-jvS3TMfIywxBVeo2QS74,2786
|
|
35
40
|
StreamingCommunity/Api/Site/streamingcommunity/__init__.py,sha256=akhH6AVIFvDskJ_uDlcNpistwnctbDxA-YiuVgIXm0A,3267
|
|
36
|
-
StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=
|
|
37
|
-
StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=
|
|
38
|
-
StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=
|
|
41
|
+
StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=2DesspMs1CKQ4pn9cdH7sCQT1LWsEXFoLg9z8s8f2Hs,2598
|
|
42
|
+
StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=qbUvLC5Jo6f-aEYGg6qJvj58OWHFoyunfqJsHGNkqG8,8506
|
|
43
|
+
StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=7y-eMoNgwgQligou4NIKoo0WYvz1NFghRFZfiUCtqDA,2964
|
|
39
44
|
StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py,sha256=4WU0YFPXcsBpEANMGpAsbtffu3HxCqLsiC0K6_4OlHM,4525
|
|
40
45
|
StreamingCommunity/Api/Template/__init__.py,sha256=oyfd_4_g5p5q6mxb_rKwSsudZnTM3W3kg1tLwxg-v-Q,46
|
|
41
46
|
StreamingCommunity/Api/Template/config_loader.py,sha256=2RT_0mqQmWzXM4rYaqss-yhXztYAcfNkTalFPjzv270,2056
|
|
@@ -45,16 +50,16 @@ StreamingCommunity/Api/Template/Util/__init__.py,sha256=ZWQQd6iymNFDol9HaKPhVBoR
|
|
|
45
50
|
StreamingCommunity/Api/Template/Util/manage_ep.py,sha256=FYe2DC9SXIXzlRYI7fW4ieBpfrxYzsUgt2C47tYRk7U,9252
|
|
46
51
|
StreamingCommunity/Lib/Downloader/__init__.py,sha256=JhbBh5hOnSM7VmtkxJ7zZ_FtWEC1JdnKThsSBjLV5FY,140
|
|
47
52
|
StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=s3ZXyKsuBN3wE4Y0Y9xXuDauBPbaI9Qhgoy83IeMnbs,21590
|
|
48
|
-
StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=
|
|
53
|
+
StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=4mh3qk0OYCfhqoZ1ljrLYZtBrcqBbkqBXfRjYdLeE6M,18358
|
|
49
54
|
StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=o-LdIdPvnHfKhmtexRlu4D7T81qj6igg-g8IiNSXSFs,7456
|
|
50
|
-
StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=
|
|
55
|
+
StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=8WC4_vXAjqkoWVtXAaA6EOzlA45qBwHr_DCMQO7mYNw,19608
|
|
51
56
|
StreamingCommunity/Lib/FFmpeg/__init__.py,sha256=6PBsZdE1jrD2EKOVyx3JEHnyDZzVeKlPkH5T0zyfOgU,130
|
|
52
57
|
StreamingCommunity/Lib/FFmpeg/capture.py,sha256=73BEpTijksErZOu46iRxwl3idKzZ-sVXXRr4nocIGY0,5168
|
|
53
58
|
StreamingCommunity/Lib/FFmpeg/command.py,sha256=ubpffE02nsZM7xch5gbwGlEiUzecpxcFOd63n2cqM1k,10708
|
|
54
|
-
StreamingCommunity/Lib/FFmpeg/util.py,sha256=
|
|
59
|
+
StreamingCommunity/Lib/FFmpeg/util.py,sha256=wlYcX1W8RehhHjkN9XXm0idNGu1ir15y_J1pQ26-wDQ,7830
|
|
55
60
|
StreamingCommunity/Lib/M3U8/__init__.py,sha256=H_KS2eDd3kVXMziFJnD0FCPvPHEizaqfoA36ElTv_r8,170
|
|
56
61
|
StreamingCommunity/Lib/M3U8/decryptor.py,sha256=kuxxsd3eN0VGRrMJWXzHo8gCpT0u3fSZs_lwxlE5Fqs,2948
|
|
57
|
-
StreamingCommunity/Lib/M3U8/estimator.py,sha256=
|
|
62
|
+
StreamingCommunity/Lib/M3U8/estimator.py,sha256=BIA4E5faX9rTYMVgac766dDy1fqEBjdQ-VcUt-tIzXU,5336
|
|
58
63
|
StreamingCommunity/Lib/M3U8/parser.py,sha256=xN16pQZSCN9mQl_s7OcuH07-mNgVMpAS_hERq6zp7XM,21558
|
|
59
64
|
StreamingCommunity/Lib/M3U8/url_fixer.py,sha256=zldE4yOuNBV6AAvL1KI6p7XdRI_R5YZRscbDgT1564M,1735
|
|
60
65
|
StreamingCommunity/Lib/TMBD/__init__.py,sha256=XzE42tw3Ws59DD1PF8WmGtZ0D4D7Hk3Af8QthNE-22U,66
|
|
@@ -62,8 +67,8 @@ StreamingCommunity/Lib/TMBD/obj_tmbd.py,sha256=dRSvJFS5yqmsBZcw2wqbStcBtXNjU_3n5
|
|
|
62
67
|
StreamingCommunity/Lib/TMBD/tmdb.py,sha256=byg0EFnlmd9JeLvn1N9K3QkB1KEfeMuFa7OVfGqks1Y,10685
|
|
63
68
|
StreamingCommunity/TelegramHelp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
69
|
StreamingCommunity/TelegramHelp/telegram_bot.py,sha256=Qe1__aoK4PpDuing8JtWgdHzLee8LuYYyfeLNA7yADU,26307
|
|
65
|
-
StreamingCommunity/Upload/update.py,sha256=
|
|
66
|
-
StreamingCommunity/Upload/version.py,sha256=
|
|
70
|
+
StreamingCommunity/Upload/update.py,sha256=qViEz--kqt7Z9Zxc9z9RyvhLOl22cTfnu9VSAwqn4y0,2549
|
|
71
|
+
StreamingCommunity/Upload/version.py,sha256=LgWw3GKanaUE__hA3sUm7n2w8P7ROnP4GdXw9KpaH2c,171
|
|
67
72
|
StreamingCommunity/Util/color.py,sha256=NvD0Eni-25oOOkY-szCEoc0lGvzQxyL7xhM0RE4EvUM,458
|
|
68
73
|
StreamingCommunity/Util/config_json.py,sha256=ocf1wsC1o0Nq8UStHUwj_QryMi_2O0yPpLEAkaMZPGg,18978
|
|
69
74
|
StreamingCommunity/Util/ffmpeg_installer.py,sha256=q5yb_ZXKe9PhcG7JbKLfo1AZa8DNukgHqymPbudDuAY,13585
|
|
@@ -72,9 +77,9 @@ StreamingCommunity/Util/logger.py,sha256=9kGD6GmWj2pM8ADpJc85o7jm8DD0c5Aguqnq-9k
|
|
|
72
77
|
StreamingCommunity/Util/message.py,sha256=SJaIPLvWeQqsIODVUKw3TgYRmBChovmlbcF6OUxqMI8,1425
|
|
73
78
|
StreamingCommunity/Util/os.py,sha256=MUGJKQbNMWeoUrnJ2Ug3hoyYlrPDqU9BY94UmiUbxfA,14858
|
|
74
79
|
StreamingCommunity/Util/table.py,sha256=QDVCVewMQ2JIQV3yDxQEL7Ac_m7NyRmynFg11BDeSBQ,9621
|
|
75
|
-
streamingcommunity-2.9.
|
|
76
|
-
streamingcommunity-2.9.
|
|
77
|
-
streamingcommunity-2.9.
|
|
78
|
-
streamingcommunity-2.9.
|
|
79
|
-
streamingcommunity-2.9.
|
|
80
|
-
streamingcommunity-2.9.
|
|
80
|
+
streamingcommunity-2.9.7.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
81
|
+
streamingcommunity-2.9.7.dist-info/METADATA,sha256=KJWhvPLrNBpfTP_as7jq6-L1ibdLRylY7q2FUb-wtaM,25012
|
|
82
|
+
streamingcommunity-2.9.7.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
83
|
+
streamingcommunity-2.9.7.dist-info/entry_points.txt,sha256=Qph9XYfDC8n4LfDLOSl6gJGlkb9eFb5f-JOr_Wb_5rk,67
|
|
84
|
+
streamingcommunity-2.9.7.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
|
|
85
|
+
streamingcommunity-2.9.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|