StreamingCommunity 2.0.5__py3-none-any.whl → 2.2.0__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/Lib/Downloader/HLS/segments.py +2 -3
- StreamingCommunity/Lib/M3U8/estimator.py +131 -106
- StreamingCommunity/Upload/version.py +1 -1
- StreamingCommunity/Util/ffmpeg_installer.py +8 -5
- {StreamingCommunity-2.0.5.dist-info → StreamingCommunity-2.2.0.dist-info}/METADATA +4 -1
- {StreamingCommunity-2.0.5.dist-info → StreamingCommunity-2.2.0.dist-info}/RECORD +10 -10
- {StreamingCommunity-2.0.5.dist-info → StreamingCommunity-2.2.0.dist-info}/LICENSE +0 -0
- {StreamingCommunity-2.0.5.dist-info → StreamingCommunity-2.2.0.dist-info}/WHEEL +0 -0
- {StreamingCommunity-2.0.5.dist-info → StreamingCommunity-2.2.0.dist-info}/entry_points.txt +0 -0
- {StreamingCommunity-2.0.5.dist-info → StreamingCommunity-2.2.0.dist-info}/top_level.txt +0 -0
|
@@ -545,15 +545,14 @@ class M3U8_Segments:
|
|
|
545
545
|
if file_size == 0:
|
|
546
546
|
raise Exception("Output file is empty")
|
|
547
547
|
|
|
548
|
-
# Display additional
|
|
549
|
-
if self.
|
|
548
|
+
# Display additional
|
|
549
|
+
if self.info_nRetry >= len(self.segments) * (1/3.33):
|
|
550
550
|
|
|
551
551
|
# Get expected time
|
|
552
552
|
ex_hours, ex_minutes, ex_seconds = format_duration(self.expected_real_time_s)
|
|
553
553
|
ex_formatted_duration = f"[yellow]{int(ex_hours)}[red]h [yellow]{int(ex_minutes)}[red]m [yellow]{int(ex_seconds)}[red]s"
|
|
554
554
|
console.print(f"[cyan]Max retry per URL[white]: [green]{self.info_maxRetry}[green] [white]| [cyan]Total retry done[white]: [green]{self.info_nRetry}[green] [white]| [cyan]Missing TS: [red]{self.info_nFailed} [white]| [cyan]Duration: {print_duration_table(self.tmp_file_path, None, True)} [white]| [cyan]Expected duation: {ex_formatted_duration} \n")
|
|
555
555
|
|
|
556
|
-
if self.info_nRetry >= len(self.segments) * (1/3.33):
|
|
557
556
|
console.print("[yellow]⚠ Warning:[/yellow] Too many retries detected! Consider reducing the number of [cyan]workers[/cyan] in the [magenta]config.json[/magenta] file. This will impact [bold]performance[/bold]. \n")
|
|
558
557
|
|
|
559
558
|
# Info to return
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# 21.04.25
|
|
2
|
+
|
|
1
3
|
import os
|
|
2
4
|
import time
|
|
3
5
|
import logging
|
|
@@ -24,7 +26,7 @@ class M3U8_Ts_Estimator:
|
|
|
24
26
|
def __init__(self, total_segments: int):
|
|
25
27
|
"""
|
|
26
28
|
Initialize the M3U8_Ts_Estimator object.
|
|
27
|
-
|
|
29
|
+
|
|
28
30
|
Parameters:
|
|
29
31
|
- total_segments (int): Length of total segments to download.
|
|
30
32
|
"""
|
|
@@ -33,103 +35,119 @@ class M3U8_Ts_Estimator:
|
|
|
33
35
|
self.total_segments = total_segments
|
|
34
36
|
self.lock = threading.Lock()
|
|
35
37
|
self.speed = {"upload": "N/A", "download": "N/A"}
|
|
38
|
+
self.process_pid = os.getpid() # Get current process PID
|
|
39
|
+
logging.debug(f"Initializing M3U8_Ts_Estimator with PID: {self.process_pid}")
|
|
36
40
|
|
|
37
|
-
#
|
|
38
|
-
if
|
|
39
|
-
|
|
41
|
+
# Start the speed capture thread if TQDM_USE_LARGE_BAR is True
|
|
42
|
+
if TQDM_USE_LARGE_BAR:
|
|
43
|
+
logging.debug("TQDM_USE_LARGE_BAR is True, starting speed capture thread")
|
|
44
|
+
self.speed_thread = threading.Thread(target=self.capture_speed, args=(1, self.process_pid))
|
|
40
45
|
self.speed_thread.daemon = True
|
|
41
46
|
self.speed_thread.start()
|
|
42
47
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
Add a file size to the list of file sizes.
|
|
48
|
+
else:
|
|
49
|
+
logging.debug("TQDM_USE_LARGE_BAR is False, speed capture thread not started")
|
|
46
50
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"""
|
|
51
|
+
def add_ts_file(self, size: int, size_download: int, duration: float):
|
|
52
|
+
"""Add a file size to the list of file sizes."""
|
|
53
|
+
logging.debug(f"Adding ts file - size: {size}, download size: {size_download}, duration: {duration}")
|
|
54
|
+
|
|
52
55
|
if size <= 0 or size_download <= 0 or duration <= 0:
|
|
53
|
-
logging.error("Invalid input values: size
|
|
56
|
+
logging.error(f"Invalid input values: size={size}, size_download={size_download}, duration={duration}")
|
|
54
57
|
return
|
|
55
58
|
|
|
56
|
-
# Add total size bytes
|
|
57
59
|
self.ts_file_sizes.append(size)
|
|
58
60
|
self.now_downloaded_size += size_download
|
|
61
|
+
logging.debug(f"Current total downloaded size: {self.now_downloaded_size}")
|
|
59
62
|
|
|
60
63
|
def capture_speed(self, interval: float = 1, pid: int = None):
|
|
61
|
-
"""
|
|
62
|
-
|
|
63
|
-
or the entire system if no PID is provided.
|
|
64
|
-
"""
|
|
64
|
+
"""Capture the internet speed periodically."""
|
|
65
|
+
logging.debug(f"Starting speed capture with interval {interval}s for PID: {pid}")
|
|
65
66
|
|
|
66
67
|
def get_network_io(process=None):
|
|
67
|
-
"""
|
|
68
|
-
Get network I/O counters for a specific process or system-wide if no process is specified.
|
|
69
|
-
"""
|
|
70
68
|
try:
|
|
71
69
|
if process:
|
|
72
|
-
|
|
73
|
-
|
|
70
|
+
|
|
71
|
+
# For process-specific monitoring
|
|
72
|
+
connections = process.connections(kind='inet')
|
|
73
|
+
if connections:
|
|
74
|
+
io_counters = process.io_counters()
|
|
75
|
+
logging.debug(f"Process IO counters: {io_counters}")
|
|
76
|
+
return io_counters
|
|
77
|
+
|
|
78
|
+
else:
|
|
79
|
+
logging.debug("No active internet connections found for process")
|
|
80
|
+
return None
|
|
74
81
|
else:
|
|
82
|
+
|
|
83
|
+
# For system-wide monitoring
|
|
75
84
|
io_counters = psutil.net_io_counters()
|
|
85
|
+
logging.debug(f"System IO counters: {io_counters}")
|
|
76
86
|
return io_counters
|
|
87
|
+
|
|
77
88
|
except Exception as e:
|
|
78
|
-
logging.
|
|
89
|
+
logging.error(f"Error getting network IO: {str(e)}")
|
|
79
90
|
return None
|
|
80
91
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
try:
|
|
85
|
-
process = psutil.Process(pid)
|
|
86
|
-
except psutil.NoSuchProcess:
|
|
87
|
-
logging.error(f"Process with PID {pid} does not exist.")
|
|
88
|
-
return
|
|
89
|
-
except Exception as e:
|
|
90
|
-
logging.error(f"Failed to attach to process with PID {pid}: {e}")
|
|
91
|
-
return
|
|
92
|
-
|
|
93
|
-
while True:
|
|
94
|
-
old_value = get_network_io(process)
|
|
95
|
-
|
|
96
|
-
if old_value is None: # If psutil fails, continue with the next interval
|
|
97
|
-
time.sleep(interval)
|
|
98
|
-
continue
|
|
99
|
-
|
|
100
|
-
time.sleep(interval)
|
|
101
|
-
new_value = get_network_io(process)
|
|
92
|
+
try:
|
|
93
|
+
process = psutil.Process(pid) if pid else None
|
|
94
|
+
logging.debug(f"Monitoring process: {process}")
|
|
102
95
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
96
|
+
except Exception as e:
|
|
97
|
+
logging.error(f"Failed to get process with PID {pid}: {str(e)}")
|
|
98
|
+
process = None
|
|
106
99
|
|
|
107
|
-
|
|
100
|
+
last_upload = None
|
|
101
|
+
last_download = None
|
|
102
|
+
first_run = True
|
|
103
|
+
|
|
104
|
+
# Buffer circolare per le ultime N misurazioni
|
|
105
|
+
speed_buffer_size = 3
|
|
106
|
+
speed_buffer = deque(maxlen=speed_buffer_size)
|
|
108
107
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
108
|
+
while True:
|
|
109
|
+
try:
|
|
110
|
+
io_counters = get_network_io()
|
|
111
|
+
|
|
112
|
+
if io_counters:
|
|
113
|
+
current_upload = io_counters.bytes_sent
|
|
114
|
+
current_download = io_counters.bytes_recv
|
|
113
115
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
116
|
+
if not first_run and last_upload is not None and last_download is not None:
|
|
117
|
+
|
|
118
|
+
# Calcola la velocità istantanea
|
|
119
|
+
upload_speed = max(0, (current_upload - last_upload) / interval)
|
|
120
|
+
download_speed = max(0, (current_download - last_download) / interval)
|
|
121
|
+
|
|
122
|
+
# Aggiungi al buffer
|
|
123
|
+
speed_buffer.append(download_speed)
|
|
124
|
+
|
|
125
|
+
# Calcola la media mobile delle velocità
|
|
126
|
+
if len(speed_buffer) > 0:
|
|
127
|
+
avg_download_speed = sum(speed_buffer) / len(speed_buffer)
|
|
128
|
+
|
|
129
|
+
if avg_download_speed > 0:
|
|
130
|
+
with self.lock:
|
|
131
|
+
self.speed = {
|
|
132
|
+
"upload": internet_manager.format_transfer_speed(upload_speed),
|
|
133
|
+
"download": internet_manager.format_transfer_speed(avg_download_speed)
|
|
134
|
+
}
|
|
135
|
+
logging.debug(f"Updated speeds - Upload: {self.speed['upload']}, Download: {self.speed['download']}")
|
|
136
|
+
|
|
137
|
+
last_upload = current_upload
|
|
138
|
+
last_download = current_download
|
|
139
|
+
first_run = False
|
|
140
|
+
|
|
141
|
+
time.sleep(interval)
|
|
142
|
+
except Exception as e:
|
|
143
|
+
logging.error(f"Error in speed capture loop: {str(e)}")
|
|
144
|
+
logging.exception("Full traceback:")
|
|
145
|
+
logging.sleep(interval)
|
|
128
146
|
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
"""
|
|
147
|
+
def get_average_speed(self) -> list:
|
|
148
|
+
"""Calculate the average internet speed."""
|
|
132
149
|
with self.lock:
|
|
150
|
+
logging.debug(f"Current speed data: {self.speed}")
|
|
133
151
|
return self.speed['download'].split(" ")
|
|
134
152
|
|
|
135
153
|
def calculate_total_size(self) -> str:
|
|
@@ -156,7 +174,7 @@ class M3U8_Ts_Estimator:
|
|
|
156
174
|
except Exception as e:
|
|
157
175
|
logging.error("An unexpected error occurred: %s", e)
|
|
158
176
|
return "Error"
|
|
159
|
-
|
|
177
|
+
|
|
160
178
|
def get_downloaded_size(self) -> str:
|
|
161
179
|
"""
|
|
162
180
|
Get the total downloaded size formatted as a human-readable string.
|
|
@@ -165,40 +183,47 @@ class M3U8_Ts_Estimator:
|
|
|
165
183
|
str: The total downloaded size as a human-readable string.
|
|
166
184
|
"""
|
|
167
185
|
return internet_manager.format_file_size(self.now_downloaded_size)
|
|
168
|
-
|
|
186
|
+
|
|
169
187
|
def update_progress_bar(self, total_downloaded: int, duration: float, progress_counter: tqdm) -> None:
|
|
170
|
-
"""
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
units_file_total_size = file_total_size.split(' ')[1]
|
|
190
|
-
|
|
191
|
-
# Update the progress bar's postfix
|
|
192
|
-
if TQDM_USE_LARGE_BAR:
|
|
193
|
-
average_internet_speed = self.get_average_speed()[0]
|
|
194
|
-
average_internet_unit = self.get_average_speed()[1]
|
|
195
|
-
progress_counter.set_postfix_str(
|
|
196
|
-
f"{Colors.WHITE}[ {Colors.GREEN}{number_file_downloaded} {Colors.WHITE}< {Colors.GREEN}{number_file_total_size} {Colors.RED}{units_file_total_size} "
|
|
197
|
-
f"{Colors.WHITE}| {Colors.CYAN}{average_internet_speed} {Colors.RED}{average_internet_unit}"
|
|
198
|
-
)
|
|
188
|
+
"""Updates the progress bar with download information."""
|
|
189
|
+
try:
|
|
190
|
+
self.add_ts_file(total_downloaded * self.total_segments, total_downloaded, duration)
|
|
191
|
+
|
|
192
|
+
downloaded_file_size_str = self.get_downloaded_size()
|
|
193
|
+
file_total_size = self.calculate_total_size()
|
|
194
|
+
|
|
195
|
+
number_file_downloaded = downloaded_file_size_str.split(' ')[0]
|
|
196
|
+
number_file_total_size = file_total_size.split(' ')[0]
|
|
197
|
+
units_file_downloaded = downloaded_file_size_str.split(' ')[1]
|
|
198
|
+
units_file_total_size = file_total_size.split(' ')[1]
|
|
199
|
+
|
|
200
|
+
if TQDM_USE_LARGE_BAR:
|
|
201
|
+
speed_data = self.get_average_speed()
|
|
202
|
+
logging.debug(f"Speed data for progress bar: {speed_data}")
|
|
203
|
+
|
|
204
|
+
if len(speed_data) >= 2:
|
|
205
|
+
average_internet_speed = speed_data[0]
|
|
206
|
+
average_internet_unit = speed_data[1]
|
|
199
207
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
208
|
+
else:
|
|
209
|
+
logging.warning(f"Invalid speed data format: {speed_data}")
|
|
210
|
+
average_internet_speed = "N/A"
|
|
211
|
+
average_internet_unit = ""
|
|
212
|
+
|
|
213
|
+
progress_str = (
|
|
214
|
+
f"{Colors.WHITE}[ {Colors.GREEN}{number_file_downloaded} {Colors.WHITE}< "
|
|
215
|
+
f"{Colors.GREEN}{number_file_total_size} {Colors.RED}{units_file_total_size} "
|
|
216
|
+
f"{Colors.WHITE}| {Colors.CYAN}{average_internet_speed} {Colors.RED}{average_internet_unit}"
|
|
217
|
+
)
|
|
218
|
+
|
|
219
|
+
else:
|
|
220
|
+
progress_str = (
|
|
221
|
+
f"{Colors.WHITE}[ {Colors.GREEN}{number_file_downloaded} {Colors.WHITE}< "
|
|
222
|
+
f"{Colors.GREEN}{number_file_total_size} {Colors.RED}{units_file_total_size}"
|
|
223
|
+
)
|
|
224
|
+
|
|
225
|
+
progress_counter.set_postfix_str(progress_str)
|
|
226
|
+
logging.debug(f"Updated progress bar: {progress_str}")
|
|
227
|
+
|
|
228
|
+
except Exception as e:
|
|
229
|
+
logging.error(f"Error updating progress bar: {str(e)}")
|
|
@@ -140,6 +140,7 @@ class FFMPEGDownloader:
|
|
|
140
140
|
break
|
|
141
141
|
found_executables.append(found)
|
|
142
142
|
else:
|
|
143
|
+
|
|
143
144
|
# Original behavior for other operating systems
|
|
144
145
|
for executable in executables:
|
|
145
146
|
exe_paths = glob.glob(os.path.join(self.base_dir, executable))
|
|
@@ -298,13 +299,14 @@ def check_ffmpeg() -> Tuple[Optional[str], Optional[str], Optional[str]]:
|
|
|
298
299
|
|
|
299
300
|
# Special handling for macOS
|
|
300
301
|
if system_platform == 'darwin':
|
|
302
|
+
|
|
301
303
|
# Common installation paths on macOS
|
|
302
304
|
potential_paths = [
|
|
303
|
-
'/usr/local/bin',
|
|
304
|
-
'/opt/homebrew/bin',
|
|
305
|
-
'/usr/bin',
|
|
306
|
-
os.path.expanduser('~/Applications/binary'),
|
|
307
|
-
'/Applications/binary'
|
|
305
|
+
'/usr/local/bin', # Homebrew default
|
|
306
|
+
'/opt/homebrew/bin', # Apple Silicon Homebrew
|
|
307
|
+
'/usr/bin', # System default
|
|
308
|
+
os.path.expanduser('~/Applications/binary'), # Custom installation
|
|
309
|
+
'/Applications/binary' # Custom installation
|
|
308
310
|
]
|
|
309
311
|
|
|
310
312
|
for path in potential_paths:
|
|
@@ -314,6 +316,7 @@ def check_ffmpeg() -> Tuple[Optional[str], Optional[str], Optional[str]]:
|
|
|
314
316
|
|
|
315
317
|
if (os.path.exists(ffmpeg_path) and os.path.exists(ffprobe_path) and
|
|
316
318
|
os.access(ffmpeg_path, os.X_OK) and os.access(ffprobe_path, os.X_OK)):
|
|
319
|
+
|
|
317
320
|
# Return found executables, with ffplay being optional
|
|
318
321
|
ffplay_path = ffplay_path if os.path.exists(ffplay_path) else None
|
|
319
322
|
return ffmpeg_path, ffprobe_path, ffplay_path
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: StreamingCommunity
|
|
3
|
-
Version: 2.0
|
|
3
|
+
Version: 2.2.0
|
|
4
4
|
Summary: UNKNOWN
|
|
5
5
|
Home-page: https://github.com/Lovi-0/StreamingCommunity
|
|
6
6
|
Author: Lovi-0
|
|
@@ -307,6 +307,9 @@ The configuration file is divided into several main sections:
|
|
|
307
307
|
- `default_audio_workser`: Number of threads for audio download
|
|
308
308
|
- `cleanup_tmp_folder`: Remove temporary .ts files after download
|
|
309
309
|
|
|
310
|
+
> [!IMPORTANT]
|
|
311
|
+
> Set `tqdm_use_large_bar` to `false` when using Termux or terminals with limited width to prevent display issues
|
|
312
|
+
|
|
310
313
|
|
|
311
314
|
<br>
|
|
312
315
|
|
|
@@ -57,7 +57,7 @@ StreamingCommunity/Api/Template/Util/recall_search.py,sha256=N-h00R2S8rQud3mNtUm
|
|
|
57
57
|
StreamingCommunity/Lib/Downloader/__init__.py,sha256=vAn-rpmlSmojvz4Quv47A5HLq4yBR_7noy4r6hqk0OQ,144
|
|
58
58
|
StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=_3kXihkLDChHIXlRzgN0o0prgyduONx7K7DE0pJm23Y,39919
|
|
59
59
|
StreamingCommunity/Lib/Downloader/HLS/proxyes.py,sha256=Mrs5Mr6ATv-6BUS7CLcZjw3JNH7g_XOz7boeB1oQAQ8,3385
|
|
60
|
-
StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=
|
|
60
|
+
StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=1FpPscAT-MYkM2YIty793A3-NJdBuLbkIpoyfRJyUxo,22389
|
|
61
61
|
StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=gWhNHhL5f3bXAGUaOlH2wCwda0sKi-R9s6PxOIp7LrU,6028
|
|
62
62
|
StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=67RDi3Er5xpoHFIn11sGcCB1xgIEGE-Nhn9wqDfmGak,11617
|
|
63
63
|
StreamingCommunity/Lib/FFmpeg/__init__.py,sha256=0KehwaTYL72PJaJJo2fzveGgc9F2-abIk7w6gXsfX1w,135
|
|
@@ -66,27 +66,27 @@ StreamingCommunity/Lib/FFmpeg/command.py,sha256=EfI3Q4tQkV7XmKWx0eBDnuIhn0O_lfPi
|
|
|
66
66
|
StreamingCommunity/Lib/FFmpeg/util.py,sha256=QTtBaFdrUa5CFSPq1ycr3_zw81A7zVRmQN7FoxUwuR8,8341
|
|
67
67
|
StreamingCommunity/Lib/M3U8/__init__.py,sha256=sD2VIslF43OrudA1r-9xkSfUvSblr1LOZpaIM89F6M4,175
|
|
68
68
|
StreamingCommunity/Lib/M3U8/decryptor.py,sha256=q6GVlM9UtiR_Yop7-MDUTShAESc66LX2k2Eqvj3vge8,6473
|
|
69
|
-
StreamingCommunity/Lib/M3U8/estimator.py,sha256=
|
|
69
|
+
StreamingCommunity/Lib/M3U8/estimator.py,sha256=_kBF6fbqtOJOSYZB5AIS969CpcUCyf2Q1kGHMNcR8rs,9608
|
|
70
70
|
StreamingCommunity/Lib/M3U8/parser.py,sha256=xmyCU4AYGIOUheTZ4OBPmQl_R4dJ3Y72i9UUa6_aErA,23553
|
|
71
71
|
StreamingCommunity/Lib/M3U8/url_fixer.py,sha256=6NVKhc8R5CqarDM5TLWy6QU05qXPouW31gyilQszwbI,1675
|
|
72
72
|
StreamingCommunity/Lib/TMBD/__init__.py,sha256=b3yUqfeBFpnKH-MScrZ3r90cpXc2ufCC-El3whK1zk8,55
|
|
73
73
|
StreamingCommunity/Lib/TMBD/obj_tmbd.py,sha256=HEL3jAqUYtVgX7GCaw60EAD3JGvEJLOQXfD6lRYEjxA,1968
|
|
74
74
|
StreamingCommunity/Lib/TMBD/tmdb.py,sha256=3UO_0uzi8xtrokX8Y_vO8vx_V8XHSkOVCqtgT-289GM,12000
|
|
75
75
|
StreamingCommunity/Upload/update.py,sha256=ly2E4gf5RCkhlHvDyVNP57jkGGH41V-UHLYwBwgypP4,2324
|
|
76
|
-
StreamingCommunity/Upload/version.py,sha256=
|
|
76
|
+
StreamingCommunity/Upload/version.py,sha256=tn8AMSDpJYz_BuZEm4FxsR7h0w0QwXoyZfdqEtJsp8c,175
|
|
77
77
|
StreamingCommunity/Util/_jsonConfig.py,sha256=CLvk6HWxUklZztoy55SzEOvdsbNo-pFcVQVanwixXCc,7001
|
|
78
78
|
StreamingCommunity/Util/call_stack.py,sha256=zuYbO8dV8bCa7fCdtaKQYuheA5K7BkTm3Oj8JA6GCpM,1417
|
|
79
79
|
StreamingCommunity/Util/color.py,sha256=1iQUf5xDp5XKKbXl9MvKEXJvv44Zf0P4J2Nu5ATIId8,479
|
|
80
80
|
StreamingCommunity/Util/console.py,sha256=bXP_iibXMpRIJ_zs03xFmSbkvMP3SguIuEUJZovoOqw,230
|
|
81
|
-
StreamingCommunity/Util/ffmpeg_installer.py,sha256=
|
|
81
|
+
StreamingCommunity/Util/ffmpeg_installer.py,sha256=xDIT4TPQK6RauF869WBZjsuMfeCYX60TpIjLbqK-06M,14049
|
|
82
82
|
StreamingCommunity/Util/headers.py,sha256=r5hK8HVF-y6dQzCQpDnpbDGP02n29OYlzgaZAorcmG0,4565
|
|
83
83
|
StreamingCommunity/Util/logger.py,sha256=5XmFquGYt4FjvKNyYKa21mLLKARmzGWk-mBo05ezlHQ,1914
|
|
84
84
|
StreamingCommunity/Util/message.py,sha256=pgUf50z4kSJjKHBlBKn5bd26xlAAEvlLiMs9dvcvJ_s,3675
|
|
85
85
|
StreamingCommunity/Util/os.py,sha256=K8bgAxFq8pPFaMQPfeTSQ_E9aEERN7pwWB_XEXBC84Q,19429
|
|
86
86
|
StreamingCommunity/Util/table.py,sha256=lKCgvrtfODuQY5dFJqlNUYL2aFzfij-efS5oGv84E44,8508
|
|
87
|
-
StreamingCommunity-2.0.
|
|
88
|
-
StreamingCommunity-2.0.
|
|
89
|
-
StreamingCommunity-2.0.
|
|
90
|
-
StreamingCommunity-2.0.
|
|
91
|
-
StreamingCommunity-2.0.
|
|
92
|
-
StreamingCommunity-2.0.
|
|
87
|
+
StreamingCommunity-2.2.0.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
88
|
+
StreamingCommunity-2.2.0.dist-info/METADATA,sha256=bmv1tbmAcnYpqb03e6ctJy8LzA7wUZH3RhZfBrc1IVc,13539
|
|
89
|
+
StreamingCommunity-2.2.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
90
|
+
StreamingCommunity-2.2.0.dist-info/entry_points.txt,sha256=-iQU6qfeHFwauAg4iZhifWhNZAkiV-x3XuEauo_EjUc,68
|
|
91
|
+
StreamingCommunity-2.2.0.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
|
|
92
|
+
StreamingCommunity-2.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|