Skip to content

Commit b9a5dba

Browse files
committed
Bump v3.3.5
1 parent c4da196 commit b9a5dba

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

StreamingCommunity/Lib/Downloader/DASH/decrypt.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
from rich.console import Console
1010

1111

12+
# Internal utilities
13+
from StreamingCommunity.Util.os import get_mp4decrypt_path
14+
1215
# Variable
1316
console = Console()
1417

@@ -45,7 +48,7 @@ def decrypt_with_mp4decrypt(encrypted_path, kid, key, output_path=None, cleanup=
4548
output_path = os.path.splitext(encrypted_path)[0] + "_decrypted.mp4"
4649

4750
key_format = f"{kid.lower()}:{key.lower()}"
48-
cmd = ["mp4decrypt", "--key", key_format, encrypted_path, output_path]
51+
cmd = [get_mp4decrypt_path(), "--key", key_format, encrypted_path, output_path]
4952
logging.info(f"Running command: {' '.join(cmd)}")
5053

5154
try:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__title__ = 'StreamingCommunity'
2-
__version__ = '3.3.3'
2+
__version__ = '3.3.5'
33
__author__ = 'Arrowar'
44
__description__ = 'A command-line program to download film'
55
__copyright__ = 'Copyright 2025'

0 commit comments

Comments
 (0)