StreamingCommunity 3.3.7__py3-none-any.whl → 3.3.9__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/supervideo.py +1 -1
- StreamingCommunity/Api/Site/animeunity/serie.py +1 -1
- StreamingCommunity/Api/Site/animeworld/serie.py +1 -1
- StreamingCommunity/Api/Site/crunchyroll/film.py +13 -3
- StreamingCommunity/Api/Site/crunchyroll/series.py +6 -6
- StreamingCommunity/Api/Site/crunchyroll/site.py +13 -8
- StreamingCommunity/Api/Site/crunchyroll/util/ScrapeSerie.py +16 -41
- StreamingCommunity/Api/Site/crunchyroll/util/get_license.py +107 -101
- StreamingCommunity/Api/Site/mediasetinfinity/util/get_license.py +1 -1
- StreamingCommunity/Api/Site/raiplay/series.py +1 -10
- StreamingCommunity/Api/Site/raiplay/site.py +5 -13
- StreamingCommunity/Api/Site/raiplay/util/ScrapeSerie.py +12 -12
- StreamingCommunity/Api/Template/loader.py +13 -4
- StreamingCommunity/Lib/Downloader/DASH/cdm_helpher.py +8 -3
- StreamingCommunity/Lib/Downloader/DASH/decrypt.py +1 -0
- StreamingCommunity/Lib/Downloader/DASH/downloader.py +9 -2
- StreamingCommunity/Lib/Downloader/DASH/parser.py +456 -98
- StreamingCommunity/Lib/Downloader/DASH/segments.py +109 -64
- StreamingCommunity/Lib/Downloader/HLS/segments.py +261 -355
- StreamingCommunity/Lib/Downloader/MP4/downloader.py +1 -1
- StreamingCommunity/Lib/FFmpeg/command.py +3 -3
- StreamingCommunity/Lib/M3U8/estimator.py +0 -1
- StreamingCommunity/Upload/version.py +1 -1
- StreamingCommunity/Util/config_json.py +0 -3
- {streamingcommunity-3.3.7.dist-info → streamingcommunity-3.3.9.dist-info}/METADATA +1 -3
- {streamingcommunity-3.3.7.dist-info → streamingcommunity-3.3.9.dist-info}/RECORD +30 -30
- {streamingcommunity-3.3.7.dist-info → streamingcommunity-3.3.9.dist-info}/WHEEL +0 -0
- {streamingcommunity-3.3.7.dist-info → streamingcommunity-3.3.9.dist-info}/entry_points.txt +0 -0
- {streamingcommunity-3.3.7.dist-info → streamingcommunity-3.3.9.dist-info}/licenses/LICENSE +0 -0
- {streamingcommunity-3.3.7.dist-info → streamingcommunity-3.3.9.dist-info}/top_level.txt +0 -0
|
@@ -137,7 +137,7 @@ def MP4_downloader(url: str, path: str, referer: str = None, headers_: dict = No
|
|
|
137
137
|
progress_bar = tqdm(
|
|
138
138
|
total=total,
|
|
139
139
|
ascii='░▒█',
|
|
140
|
-
bar_format=f"{Colors.YELLOW}
|
|
140
|
+
bar_format=f"{Colors.YELLOW}MP4{Colors.CYAN} Downloading{Colors.WHITE}: "
|
|
141
141
|
f"{Colors.RED}{{percentage:.1f}}% {Colors.MAGENTA}{{bar:40}} {Colors.WHITE}"
|
|
142
142
|
f"{Colors.DARK_GRAY}[{Colors.YELLOW}{{elapsed}}{Colors.WHITE} < {Colors.CYAN}{{remaining}}{Colors.DARK_GRAY}] "
|
|
143
143
|
f"{Colors.LIGHT_CYAN}{{rate_fmt}}",
|
|
@@ -154,7 +154,7 @@ def join_video(video_path: str, out_path: str, codec: M3U8_Codec = None):
|
|
|
154
154
|
if DEBUG_MODE:
|
|
155
155
|
subprocess.run(ffmpeg_cmd, check=True)
|
|
156
156
|
else:
|
|
157
|
-
capture_ffmpeg_real_time(ffmpeg_cmd, "[yellow]
|
|
157
|
+
capture_ffmpeg_real_time(ffmpeg_cmd, "[yellow]FFMPEG [cyan]Join video")
|
|
158
158
|
print()
|
|
159
159
|
|
|
160
160
|
return out_path
|
|
@@ -264,7 +264,7 @@ def join_audios(video_path: str, audio_tracks: List[Dict[str, str]], out_path: s
|
|
|
264
264
|
subprocess.run(ffmpeg_cmd, check=True)
|
|
265
265
|
|
|
266
266
|
else:
|
|
267
|
-
capture_ffmpeg_real_time(ffmpeg_cmd, "[yellow]
|
|
267
|
+
capture_ffmpeg_real_time(ffmpeg_cmd, "[yellow]FFMPEG [cyan]Join audio")
|
|
268
268
|
print()
|
|
269
269
|
|
|
270
270
|
return out_path, use_shortest
|
|
@@ -309,7 +309,7 @@ def join_subtitle(video_path: str, subtitles_list: List[Dict[str, str]], out_pat
|
|
|
309
309
|
subprocess.run(ffmpeg_cmd, check=True)
|
|
310
310
|
|
|
311
311
|
else:
|
|
312
|
-
capture_ffmpeg_real_time(ffmpeg_cmd, "[yellow]
|
|
312
|
+
capture_ffmpeg_real_time(ffmpeg_cmd, "[yellow]FFMPEG [cyan]Join subtitle")
|
|
313
313
|
print()
|
|
314
314
|
|
|
315
315
|
return out_path
|
|
@@ -155,9 +155,6 @@ class ConfigManager:
|
|
|
155
155
|
# Determine which file to save to
|
|
156
156
|
self._save_domains_to_appropriate_location()
|
|
157
157
|
|
|
158
|
-
site_count = len(self.configSite) if isinstance(self.configSite, dict) else 0
|
|
159
|
-
console.print(f"[bold green]Domains loaded from GitHub:[/bold green] {site_count} streaming services found.")
|
|
160
|
-
|
|
161
158
|
else:
|
|
162
159
|
console.print(f"[bold red]GitHub request failed:[/bold red] HTTP {response.status_code}, {response.text[:100]}")
|
|
163
160
|
self._handle_site_data_fallback()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: StreamingCommunity
|
|
3
|
-
Version: 3.3.
|
|
3
|
+
Version: 3.3.9
|
|
4
4
|
Home-page: https://github.com/Arrowar/StreamingCommunity
|
|
5
5
|
Author: Arrowar
|
|
6
6
|
Project-URL: Bug Reports, https://github.com/Arrowar/StreamingCommunity/issues
|
|
@@ -14,7 +14,6 @@ Requires-Dist: bs4
|
|
|
14
14
|
Requires-Dist: rich
|
|
15
15
|
Requires-Dist: tqdm
|
|
16
16
|
Requires-Dist: m3u8
|
|
17
|
-
Requires-Dist: certifi
|
|
18
17
|
Requires-Dist: psutil
|
|
19
18
|
Requires-Dist: unidecode
|
|
20
19
|
Requires-Dist: curl_cffi
|
|
@@ -25,7 +24,6 @@ Requires-Dist: ua-generator
|
|
|
25
24
|
Requires-Dist: qbittorrent-api
|
|
26
25
|
Requires-Dist: pyTelegramBotAPI
|
|
27
26
|
Requires-Dist: pywidevine
|
|
28
|
-
Requires-Dist: seleniumbase
|
|
29
27
|
Dynamic: author
|
|
30
28
|
Dynamic: description
|
|
31
29
|
Dynamic: description-content-type
|
|
@@ -3,7 +3,7 @@ StreamingCommunity/global_search.py,sha256=ip3D0OKNRTXHpe_Wy7v2KM-yNZdnnbG5FOBYS
|
|
|
3
3
|
StreamingCommunity/run.py,sha256=p7RYZlHhIHzPs8n_6z7f0yikH5TEd8KeC9UIpiRJ5-c,19494
|
|
4
4
|
StreamingCommunity/Api/Player/hdplayer.py,sha256=uQGU8ZVEk7qwwu1v4fjxScsP2x9NIHc7rRguXB1Fk2c,1942
|
|
5
5
|
StreamingCommunity/Api/Player/mediapolisvod.py,sha256=Npm3HHUO5Wav8c2QX9E2c3SSW6d1STJw-kK8kHRF-zo,2403
|
|
6
|
-
StreamingCommunity/Api/Player/supervideo.py,sha256=
|
|
6
|
+
StreamingCommunity/Api/Player/supervideo.py,sha256=3BiKCn6G0HIg8vPzYbFOag21IKa1aNNLPoFojQTSRNk,5388
|
|
7
7
|
StreamingCommunity/Api/Player/sweetpixel.py,sha256=AAdLSD7ASLuZNiBx6btr8S44WkxtjTiToPhjtgA6HAE,1703
|
|
8
8
|
StreamingCommunity/Api/Player/vixcloud.py,sha256=0DnukAIBqGqTmL9I6JkpAkHLMf1UG1D_J8c7zt6KDmU,6609
|
|
9
9
|
StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py,sha256=U-8QlD5kGzIk3-4t4D6QyYmiDe8UBrSuVi1YHRQb7AU,4295
|
|
@@ -15,20 +15,20 @@ StreamingCommunity/Api/Site/altadefinizione/site.py,sha256=nrDmENnvWbW7iNO7OIGpQ
|
|
|
15
15
|
StreamingCommunity/Api/Site/altadefinizione/util/ScrapeSerie.py,sha256=9iulNlnNAhTfI5iKNW3I6pZqYeYwovAswa13L3LPGDM,4251
|
|
16
16
|
StreamingCommunity/Api/Site/animeunity/__init__.py,sha256=KArwW7J5rHjEoNfZz4SmS_IjfJqljon_ACIvaxouzqc,5228
|
|
17
17
|
StreamingCommunity/Api/Site/animeunity/film.py,sha256=Vqg6yag2siR-Y3ougBsV8mzdQXChxg6ghz_KVXFQ3pE,998
|
|
18
|
-
StreamingCommunity/Api/Site/animeunity/serie.py,sha256=
|
|
18
|
+
StreamingCommunity/Api/Site/animeunity/serie.py,sha256=gypwpByTXPe1yhx9WfJVlDV-Urtm7P9Sz5O435ZWhvQ,5742
|
|
19
19
|
StreamingCommunity/Api/Site/animeunity/site.py,sha256=GLULPQATMHcXiH99d772v1ICH-PnnZgSM3q5__eN-gs,4977
|
|
20
20
|
StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py,sha256=UladSvOlTEVLiV0-rAz45zrET5qRHMuTGuKEpeQoumU,3872
|
|
21
21
|
StreamingCommunity/Api/Site/animeworld/__init__.py,sha256=f3B52eUPXRB9Jet4Y-VxhUbJMFT7bTgtp9Hs_QGUTUY,5145
|
|
22
22
|
StreamingCommunity/Api/Site/animeworld/film.py,sha256=iCnBHxam5umuCJ6TnknXrEXtgVYUKFkWqXd4L3E44T0,1750
|
|
23
|
-
StreamingCommunity/Api/Site/animeworld/serie.py,sha256=
|
|
23
|
+
StreamingCommunity/Api/Site/animeworld/serie.py,sha256=wmma2mlJd76SQpKRxPGlxWE8dw5BEzJGlBxc_9QR2wk,3538
|
|
24
24
|
StreamingCommunity/Api/Site/animeworld/site.py,sha256=Zdp6ayA1L6hS1t0q4fclHs7J1eiD16Ta9isTc13Zye8,3746
|
|
25
25
|
StreamingCommunity/Api/Site/animeworld/util/ScrapeSerie.py,sha256=S6sLtQt4Wvp4IVDho1uAXL8_-bbdj-RTRA1D7x9V8n8,3591
|
|
26
26
|
StreamingCommunity/Api/Site/crunchyroll/__init__.py,sha256=P3OfAaROt_vSKPA-abfKkYn1LIfwUhfyC_0TnsBfqxU,5344
|
|
27
|
-
StreamingCommunity/Api/Site/crunchyroll/film.py,sha256=
|
|
28
|
-
StreamingCommunity/Api/Site/crunchyroll/series.py,sha256=
|
|
29
|
-
StreamingCommunity/Api/Site/crunchyroll/site.py,sha256=
|
|
30
|
-
StreamingCommunity/Api/Site/crunchyroll/util/ScrapeSerie.py,sha256=
|
|
31
|
-
StreamingCommunity/Api/Site/crunchyroll/util/get_license.py,sha256=
|
|
27
|
+
StreamingCommunity/Api/Site/crunchyroll/film.py,sha256=_w9AwU-P8T79IpzTnt9yDMlxRFKOK7KsHjInpQhNqRI,2937
|
|
28
|
+
StreamingCommunity/Api/Site/crunchyroll/series.py,sha256=JlwKOrSEO5tlpVAB_4hjgFACyYdc5jYx0eWt2kSZfH0,7380
|
|
29
|
+
StreamingCommunity/Api/Site/crunchyroll/site.py,sha256=HxVsxWYcVslP1cUGkWrvcyWy81c5Jsyi1IaRbkE_V-I,3568
|
|
30
|
+
StreamingCommunity/Api/Site/crunchyroll/util/ScrapeSerie.py,sha256=SKPRdUHaemUKTXUDbX45xSU2imTXfikgDfTigeI-WyQ,6973
|
|
31
|
+
StreamingCommunity/Api/Site/crunchyroll/util/get_license.py,sha256=fQ9VTn0wMkGmb7daj8bEtPVoA_z8bMWKPd6f1gWV_yA,4491
|
|
32
32
|
StreamingCommunity/Api/Site/guardaserie/__init__.py,sha256=wqW3AkQJPLszZtcNCjqZjnDXVRrr8cUaJuHUh1WjJV0,5125
|
|
33
33
|
StreamingCommunity/Api/Site/guardaserie/series.py,sha256=-ExCTCMeC6GcIJS9m2qkl46eXozOtDhT9hI8WJFvF-Q,6696
|
|
34
34
|
StreamingCommunity/Api/Site/guardaserie/site.py,sha256=r-27X8V6c6RusWJy3geMri4Ox-BfMdBne0hFwKS5wlI,2174
|
|
@@ -39,12 +39,12 @@ StreamingCommunity/Api/Site/mediasetinfinity/series.py,sha256=ZBu897UFI90nA97bOZ
|
|
|
39
39
|
StreamingCommunity/Api/Site/mediasetinfinity/site.py,sha256=W0eAZAxtPP1KK7DApvc34N0TwZdr_kZow5SZwRJLDFo,3352
|
|
40
40
|
StreamingCommunity/Api/Site/mediasetinfinity/util/ScrapeSerie.py,sha256=9ATUZbRfZVW1yYN-BQKaISbtMQCuEqk0gtJQlQr0GIk,10334
|
|
41
41
|
StreamingCommunity/Api/Site/mediasetinfinity/util/fix_mpd.py,sha256=B7uZfQ8X4p8KsiPVangFSs5rKKKpA3tavjPCdNrqyCc,1712
|
|
42
|
-
StreamingCommunity/Api/Site/mediasetinfinity/util/get_license.py,sha256=
|
|
42
|
+
StreamingCommunity/Api/Site/mediasetinfinity/util/get_license.py,sha256=UN0CqJp8v9R4tRXhDnJq25aD4TT6AKKRi59z8pE0VDs,9375
|
|
43
43
|
StreamingCommunity/Api/Site/raiplay/__init__.py,sha256=RetTL3hWU9EpQJpOvV92xr57wI_dQwm40KRgJAQ_vfA,5269
|
|
44
44
|
StreamingCommunity/Api/Site/raiplay/film.py,sha256=bN7BTrQOFweI-4icnVF8b4gE-A_fYEWlpeDM7xmRR8k,2675
|
|
45
|
-
StreamingCommunity/Api/Site/raiplay/series.py,sha256=
|
|
46
|
-
StreamingCommunity/Api/Site/raiplay/site.py,sha256=
|
|
47
|
-
StreamingCommunity/Api/Site/raiplay/util/ScrapeSerie.py,sha256=
|
|
45
|
+
StreamingCommunity/Api/Site/raiplay/series.py,sha256=wt1ISi3MTymCQWFFhsPXrgfH3Rzywf_mmyAxaiTCxm8,7401
|
|
46
|
+
StreamingCommunity/Api/Site/raiplay/site.py,sha256=ixHfNw1aRfLiioi6miZ-OuI-H_2FgL2wYoFtY429pzE,3048
|
|
47
|
+
StreamingCommunity/Api/Site/raiplay/util/ScrapeSerie.py,sha256=dvrIpGDzi0F8hlQF7CzvzZ-RMaiCuvlu02EyfYGEvFQ,6307
|
|
48
48
|
StreamingCommunity/Api/Site/raiplay/util/get_license.py,sha256=96Q5aSWhtxtmQl2yzylL-1x3jY24UpLLZlEE6YrO_gs,978
|
|
49
49
|
StreamingCommunity/Api/Site/streamingcommunity/__init__.py,sha256=EHe8TY4Fcn064PlJ4ubDwr6N0muilfUMpK5-yyOwp-A,5425
|
|
50
50
|
StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=b03gI_JTEDPQirlQexG7cPSU8WIgw3HKjlJ25m9Abko,2781
|
|
@@ -58,28 +58,28 @@ StreamingCommunity/Api/Site/streamingwatch/site.py,sha256=imwsj7Ah6M8PmGFFUmi_A7
|
|
|
58
58
|
StreamingCommunity/Api/Site/streamingwatch/util/ScrapeSerie.py,sha256=h28W2Q_cZhBe4v91dvUDYbLBUV98i2Ghb1OOhVq3Iuk,4289
|
|
59
59
|
StreamingCommunity/Api/Template/__init__.py,sha256=fiDHu2yUk3Jk5CWmmnCJNy9fRLbq8RhHB_20NDD12tA,84
|
|
60
60
|
StreamingCommunity/Api/Template/config_loader.py,sha256=2RT_0mqQmWzXM4rYaqss-yhXztYAcfNkTalFPjzv270,2056
|
|
61
|
-
StreamingCommunity/Api/Template/loader.py,sha256=
|
|
61
|
+
StreamingCommunity/Api/Template/loader.py,sha256=AmEv_hxJ8lyEzV2Nx72BoawzXNHUFr5VjL85oj0hmAo,5472
|
|
62
62
|
StreamingCommunity/Api/Template/site.py,sha256=S3DcEADTKM7OSDlrreMf33zDKK7HBStRImuQwg2aoRY,4937
|
|
63
63
|
StreamingCommunity/Api/Template/Class/SearchType.py,sha256=xp4vYKYHoXQF28fvWm0mk8XHvK9PkOcuWJXC5fbk4Gg,2529
|
|
64
64
|
StreamingCommunity/Api/Template/Util/__init__.py,sha256=v23VkosPNOQG5XbDkyCx5shEVJvRJffgkAF_Am5zMQc,377
|
|
65
65
|
StreamingCommunity/Api/Template/Util/manage_ep.py,sha256=EFu5_7N_Fd6fVF7Ix14uWfr_pYLybEtnVBJcS101g4M,8573
|
|
66
66
|
StreamingCommunity/Lib/Downloader/__init__.py,sha256=Zh92xTvBIEIjNQN22iXItG7_VqiDGbOpO5gOZDBdGxc,288
|
|
67
|
-
StreamingCommunity/Lib/Downloader/DASH/cdm_helpher.py,sha256=
|
|
68
|
-
StreamingCommunity/Lib/Downloader/DASH/decrypt.py,sha256=
|
|
69
|
-
StreamingCommunity/Lib/Downloader/DASH/downloader.py,sha256=
|
|
70
|
-
StreamingCommunity/Lib/Downloader/DASH/parser.py,sha256=
|
|
71
|
-
StreamingCommunity/Lib/Downloader/DASH/segments.py,sha256=
|
|
67
|
+
StreamingCommunity/Lib/Downloader/DASH/cdm_helpher.py,sha256=fXKrOJywtTU6oDeAQUWLLIbontlI1sMpFGDuQMmaEIQ,4361
|
|
68
|
+
StreamingCommunity/Lib/Downloader/DASH/decrypt.py,sha256=gVMC2LSa4PBtGHBaOKVKmfACIDheqypoZxG3weji0LE,2536
|
|
69
|
+
StreamingCommunity/Lib/Downloader/DASH/downloader.py,sha256=dpuTWoIFEmtvVdka0Lo17KR0NdMRJy-9_eSDXA2Y50g,20675
|
|
70
|
+
StreamingCommunity/Lib/Downloader/DASH/parser.py,sha256=OA0pAaynCZnXuGGPJl6FFP1n4i9JyEWtJoOiMOzgA78,22805
|
|
71
|
+
StreamingCommunity/Lib/Downloader/DASH/segments.py,sha256=ayPHGJOxzSrogL68W_ECa5CFT5kWZYtyCN7BSKqbl98,18911
|
|
72
72
|
StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=HmjOk_jkwCAWYfIrzbnx6TRHweElUFLg1OT2zwoPGgQ,28452
|
|
73
|
-
StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=
|
|
74
|
-
StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=
|
|
73
|
+
StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=bRk_TcHnx5Z58B0KwxIUGZQPNI7S_8vVyhIiYHEqU7s,19809
|
|
74
|
+
StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=I9Vkz4RMdtm0LmikH9Hw5cHcoV7BGSaiAkwfKmWz2Ls,7771
|
|
75
75
|
StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=tYOCuKkKDcTIJ-2bGIeplovRkLTdp89i8lUvJs_N9jc,19133
|
|
76
76
|
StreamingCommunity/Lib/FFmpeg/__init__.py,sha256=NZmOXpnc5jvdvjNnHPxvj5bzp0GUuNMXd00Fcy4rQPI,258
|
|
77
77
|
StreamingCommunity/Lib/FFmpeg/capture.py,sha256=3gPNgndHABXSBSJOxWhijwRIs_q-GTTmFO5XB0OdskI,5038
|
|
78
|
-
StreamingCommunity/Lib/FFmpeg/command.py,sha256=
|
|
78
|
+
StreamingCommunity/Lib/FFmpeg/command.py,sha256=VuOCd5XPLgOuYldfkcsL8DTPnDofn-F6yM_DS_6sDSQ,10419
|
|
79
79
|
StreamingCommunity/Lib/FFmpeg/util.py,sha256=ISSNKvK61R0pGc9w6juK6S3jBb9SvrdTlTu8ycxg8FY,8903
|
|
80
80
|
StreamingCommunity/Lib/M3U8/__init__.py,sha256=Zxij4WFCxjwyfswUfBv0oys_o0vQpAL5PoK5TGG_StY,288
|
|
81
81
|
StreamingCommunity/Lib/M3U8/decryptor.py,sha256=0VPMWbfwP9aEr4Y8OYi-e4o0ucMeCnV9HyuiOWxu_sE,2361
|
|
82
|
-
StreamingCommunity/Lib/M3U8/estimator.py,sha256=
|
|
82
|
+
StreamingCommunity/Lib/M3U8/estimator.py,sha256=mzrjeTYhuFZMP764W4r2D4QFjjCAoq2uiwnf8o8zEVM,6452
|
|
83
83
|
StreamingCommunity/Lib/M3U8/parser.py,sha256=ykffMt7wmvDij70Whxz-hin0ZcmfRIj3VufXFGbHyMc,22573
|
|
84
84
|
StreamingCommunity/Lib/M3U8/url_fixer.py,sha256=0Wd6MsBf8BBQ6mmHFElgCX3UbHAzRzSREmi03yb4gU4,1735
|
|
85
85
|
StreamingCommunity/Lib/TMBD/__init__.py,sha256=TBKZ0zwAUvil2V2AirEPy_Q-M3Ksar2CJsUNt4tpXhk,109
|
|
@@ -89,9 +89,9 @@ StreamingCommunity/TelegramHelp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
89
89
|
StreamingCommunity/TelegramHelp/config.json,sha256=v7FjA4smyLWZxChATewmvxDjJcclOCRZ_BIFPJd8Jvc,1374
|
|
90
90
|
StreamingCommunity/TelegramHelp/telegram_bot.py,sha256=KiurpTrgiUNyMcLfceseaxV4xGegCUSJ8YttSeGXhJM,26429
|
|
91
91
|
StreamingCommunity/Upload/update.py,sha256=grMrdVdAo2jnpobosgXtKU7_xAIxYrhrJY5ce67HS3g,3649
|
|
92
|
-
StreamingCommunity/Upload/version.py,sha256=
|
|
92
|
+
StreamingCommunity/Upload/version.py,sha256=T3gDdmG20ZY3dguenOjjCjNQFk6FGebivbLNZ6n_iAU,170
|
|
93
93
|
StreamingCommunity/Util/color.py,sha256=NvD0Eni-25oOOkY-szCEoc0lGvzQxyL7xhM0RE4EvUM,458
|
|
94
|
-
StreamingCommunity/Util/config_json.py,sha256=
|
|
94
|
+
StreamingCommunity/Util/config_json.py,sha256=g52iOA-AUmXx1Q--1OeBidILbaICX4uR_rezWfjG4TU,22807
|
|
95
95
|
StreamingCommunity/Util/headers.py,sha256=RP3A6Gr8UB8VU6uzw_yDOjEKkIFKpi7Gi6_w2ACxE30,292
|
|
96
96
|
StreamingCommunity/Util/http_client.py,sha256=Z9537JZLoaPq3S9dfipe4nrWNL7QOyvxkqUlZHdSo40,6253
|
|
97
97
|
StreamingCommunity/Util/logger.py,sha256=jexWdX8G7Sf3k5suyFNYlVXNgjsJjlAP5OrhGEQ8s0A,3069
|
|
@@ -103,9 +103,9 @@ StreamingCommunity/Util/installer/bento4_install.py,sha256=8ZddP9_6Fa30pVJyOMqne
|
|
|
103
103
|
StreamingCommunity/Util/installer/binary_paths.py,sha256=-vo1sAavMBCg8u1Bx-CNhUIlWdQ7C2gcT2esVMSpKxs,2470
|
|
104
104
|
StreamingCommunity/Util/installer/device_install.py,sha256=3_pQcz6-lpDth2f2kq4uiV-nPEMGTDB7Q4lThyRnwrI,4389
|
|
105
105
|
StreamingCommunity/Util/installer/ffmpeg_install.py,sha256=OobkwdIhO9QbMGjoTvYCeYzdodU0K1LX6LaMLRl7nZY,13562
|
|
106
|
-
streamingcommunity-3.3.
|
|
107
|
-
streamingcommunity-3.3.
|
|
108
|
-
streamingcommunity-3.3.
|
|
109
|
-
streamingcommunity-3.3.
|
|
110
|
-
streamingcommunity-3.3.
|
|
111
|
-
streamingcommunity-3.3.
|
|
106
|
+
streamingcommunity-3.3.9.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
107
|
+
streamingcommunity-3.3.9.dist-info/METADATA,sha256=DLNlsIXx_jH5CWleY6h4DStZyhE1zJhXmdcyouXy1Z0,20252
|
|
108
|
+
streamingcommunity-3.3.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
109
|
+
streamingcommunity-3.3.9.dist-info/entry_points.txt,sha256=Qph9XYfDC8n4LfDLOSl6gJGlkb9eFb5f-JOr_Wb_5rk,67
|
|
110
|
+
streamingcommunity-3.3.9.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
|
|
111
|
+
streamingcommunity-3.3.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|