easyrip 4.6.1__py3-none-any.whl → 4.7.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.
- easyrip/easyrip_log.py +1 -1
- easyrip/easyrip_main.py +1 -1
- easyrip/easyrip_mlang/lang_zh_Hans_CN.py +1 -1
- easyrip/global_val.py +1 -1
- easyrip/ripper/ripper.py +6 -2
- {easyrip-4.6.1.dist-info → easyrip-4.7.0.dist-info}/METADATA +1 -1
- {easyrip-4.6.1.dist-info → easyrip-4.7.0.dist-info}/RECORD +11 -11
- {easyrip-4.6.1.dist-info → easyrip-4.7.0.dist-info}/WHEEL +0 -0
- {easyrip-4.6.1.dist-info → easyrip-4.7.0.dist-info}/entry_points.txt +0 -0
- {easyrip-4.6.1.dist-info → easyrip-4.7.0.dist-info}/licenses/LICENSE +0 -0
- {easyrip-4.6.1.dist-info → easyrip-4.7.0.dist-info}/top_level.txt +0 -0
easyrip/easyrip_log.py
CHANGED
|
@@ -106,7 +106,7 @@ class log:
|
|
|
106
106
|
only_print = enum.auto()
|
|
107
107
|
only_write = enum.auto()
|
|
108
108
|
|
|
109
|
-
html_filename: str = "
|
|
109
|
+
html_filename: str = "EasyRip_log.html" # 在调用前覆写
|
|
110
110
|
print_level: LogLevel = LogLevel.send
|
|
111
111
|
write_level: LogLevel = LogLevel.send
|
|
112
112
|
|
easyrip/easyrip_main.py
CHANGED
|
@@ -1080,7 +1080,7 @@ def init(is_first_run: bool = False) -> None:
|
|
|
1080
1080
|
Global_lang_val.gettext_target_lang = Lang_tag.from_str(str(_lang_config))
|
|
1081
1081
|
|
|
1082
1082
|
# 设置日志文件路径名
|
|
1083
|
-
log.html_filename = gettext(
|
|
1083
|
+
log.html_filename = gettext(log.html_filename)
|
|
1084
1084
|
if _path := str(config.get_user_profile(Config_key.force_log_file_path) or ""):
|
|
1085
1085
|
log.html_filename = os.path.join(_path, log.html_filename)
|
|
1086
1086
|
|
|
@@ -308,7 +308,7 @@ LANG_MAP: dict[str, str] = {
|
|
|
308
308
|
"Current work directory has an other Easy Rip is running: {}": "当前工作目录存在其他 Easy Rip 正在运行: {}",
|
|
309
309
|
"Stop run command": "命令执行终止",
|
|
310
310
|
# log
|
|
311
|
-
"
|
|
311
|
+
"EasyRip_log.html": "EasyRip日志.html",
|
|
312
312
|
"Start": "开始",
|
|
313
313
|
"Input file pathname": "输入文件路径名",
|
|
314
314
|
"Output directory": "输出目录",
|
easyrip/global_val.py
CHANGED
|
@@ -3,7 +3,7 @@ import sys
|
|
|
3
3
|
from pathlib import Path
|
|
4
4
|
|
|
5
5
|
PROJECT_NAME = "Easy Rip"
|
|
6
|
-
PROJECT_VERSION = "4.
|
|
6
|
+
PROJECT_VERSION = "4.7.0"
|
|
7
7
|
PROJECT_TITLE = f"{PROJECT_NAME} v{PROJECT_VERSION}"
|
|
8
8
|
PROJECT_URL = "https://github.com/op200/EasyRip"
|
|
9
9
|
PROJECT_RELEASE_API = "https://api.github.com/repos/op200/EasyRip/releases/latest"
|
easyrip/ripper/ripper.py
CHANGED
|
@@ -643,7 +643,9 @@ class Ripper:
|
|
|
643
643
|
_option_map = {
|
|
644
644
|
"crf": self.option_map.get("crf"),
|
|
645
645
|
"qp": self.option_map.get("qp"),
|
|
646
|
-
"pix_fmt": self.option_map.get(
|
|
646
|
+
"pix_fmt": self.option_map.get(
|
|
647
|
+
"pix_fmt", None if is_pipe_input else "yuv420p10le"
|
|
648
|
+
),
|
|
647
649
|
"preset:v": self.option_map.get("preset:v"),
|
|
648
650
|
"svtav1-params": self.option_map.get("svtav1-params"),
|
|
649
651
|
}
|
|
@@ -664,7 +666,9 @@ class Ripper:
|
|
|
664
666
|
case Ripper.Preset_name.vvenc:
|
|
665
667
|
_option_map = {
|
|
666
668
|
"qp": self.option_map.get("qp"),
|
|
667
|
-
"pix_fmt": self.option_map.get(
|
|
669
|
+
"pix_fmt": self.option_map.get(
|
|
670
|
+
"pix_fmt", None if is_pipe_input else "yuv420p10le"
|
|
671
|
+
),
|
|
668
672
|
"preset:v": self.option_map.get("preset:v"),
|
|
669
673
|
"vvenc-params": self.option_map.get("vvenc-params"),
|
|
670
674
|
}
|
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
easyrip/__init__.py,sha256=PIvSPDgswsIkWL4dsCe87knnxKmtvcrWYzmqAwZix_M,765
|
|
2
2
|
easyrip/__main__.py,sha256=5t5NjuTSFW6jDp_HH4rTX8EOlf-GJI5HuTSwwndkw_I,4557
|
|
3
3
|
easyrip/easyrip_command.py,sha256=vuT9xg2OCuUXHH58BxcFGbzrzLUzlpynjGzjtDsBnCk,27837
|
|
4
|
-
easyrip/easyrip_log.py,sha256=
|
|
5
|
-
easyrip/easyrip_main.py,sha256=
|
|
4
|
+
easyrip/easyrip_log.py,sha256=i5r3OPGQ55c3_zCN0fmriPXiWxibq-w35FbNT7VfuuM,15610
|
|
5
|
+
easyrip/easyrip_main.py,sha256=0f1cU1ewC6gkuaP9O7vSRaSmFgKPo1KWmOIOKBZTOXw,43277
|
|
6
6
|
easyrip/easyrip_prompt.py,sha256=A5S7ybeJSGFkCmwdJ9TCQ_-lde7NWgkbFytZ2KnvkWI,2145
|
|
7
|
-
easyrip/global_val.py,sha256=
|
|
7
|
+
easyrip/global_val.py,sha256=AniWAdkEWv8c1YUWspoNETpN2nhjRJh15QQOK5FaDXw,773
|
|
8
8
|
easyrip/utils.py,sha256=N1rMF1MyoC-YFBgy10_u29cFoowfhR-5Viea93O7wQ4,8750
|
|
9
9
|
easyrip/easyrip_config/config.py,sha256=aj6Vg1rJkvICSTZ0ZONznR_MkvVr5u5ngkX_zfZopvU,9859
|
|
10
10
|
easyrip/easyrip_config/config_key.py,sha256=_jjdKOunskUoG7UUWOz3QZK-s4LF_x6hmM9MKttyS2Q,766
|
|
11
11
|
easyrip/easyrip_mlang/__init__.py,sha256=QHZt4BYJFkJuaPkN89pt_zkM2grifJakyRZbeyfH8f4,1893
|
|
12
12
|
easyrip/easyrip_mlang/global_lang_val.py,sha256=Un20KGMVVMQbOaV_7VaHg3E1dvK2Y7kI1cPzq_sFWKY,9984
|
|
13
13
|
easyrip/easyrip_mlang/lang_en.py,sha256=heUSPeVtY1Nf9eDhrjPM28N3PLsu62op3llbXAfXvAs,140
|
|
14
|
-
easyrip/easyrip_mlang/lang_zh_Hans_CN.py,sha256=
|
|
14
|
+
easyrip/easyrip_mlang/lang_zh_Hans_CN.py,sha256=zJ9z5dW8yZdg6VWUMw3e7VNFjn_NoMhk9lK-PZLrPSo,18530
|
|
15
15
|
easyrip/easyrip_mlang/translator.py,sha256=Vg0S0p2rpMNAy3LHTdK7qKFdkPEXlOoCCXcaH7PyAC4,5939
|
|
16
16
|
easyrip/easyrip_web/__init__.py,sha256=tMyEeaSGeEJjND7MF0MBv9aDiDgaO3MOnppwxA70U2c,177
|
|
17
17
|
easyrip/easyrip_web/http_server.py,sha256=iyulCAFQrJlz86Lrr-Dm3fhOnNCf79Bp6fVHhr0ephY,8350
|
|
18
18
|
easyrip/easyrip_web/third_party_api.py,sha256=umj-QsfOa0IM60Ic2pXigVfnGfAiiC95fJSXQ-WFpJA,4419
|
|
19
19
|
easyrip/ripper/media_info.py,sha256=mQq_vbQ7S9fWpb39HLkoZlAL-pqNfwxewv6X776Nf50,5078
|
|
20
20
|
easyrip/ripper/param.py,sha256=x11G7AsU-1Ol37-psKNo8AtjKDdD8YPlXeNwJSbhZxw,11082
|
|
21
|
-
easyrip/ripper/ripper.py,sha256=
|
|
21
|
+
easyrip/ripper/ripper.py,sha256=k00oHGk9X3ciJ8KzHa_jaHlTy5EXfdnJy9u0iSL3ia8,50343
|
|
22
22
|
easyrip/ripper/sub_and_font/__init__.py,sha256=cBT7mxL7RRFaJXFPXuZ7RT-YK6FbnanaU5v6U9BOquw,153
|
|
23
23
|
easyrip/ripper/sub_and_font/ass.py,sha256=eGi1eIDWAV1Ti_BYIAcAMwrAlXJ5f_zGYte3nNu4PeE,25532
|
|
24
24
|
easyrip/ripper/sub_and_font/font.py,sha256=DBtTi32deXES1ylZiZ0qzcv9zvRQRIYBAH9Zbwij3G0,8086
|
|
25
25
|
easyrip/ripper/sub_and_font/subset.py,sha256=VsFYTFuVWXW9ltkqWZIiwOIh-nGDKmW1tUv3oi5kpWw,17815
|
|
26
|
-
easyrip-4.
|
|
27
|
-
easyrip-4.
|
|
28
|
-
easyrip-4.
|
|
29
|
-
easyrip-4.
|
|
30
|
-
easyrip-4.
|
|
31
|
-
easyrip-4.
|
|
26
|
+
easyrip-4.7.0.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
27
|
+
easyrip-4.7.0.dist-info/METADATA,sha256=eume2bE0MFGaGnYxchUZM1U4Nc147fZjiYZQe0QDfWA,3506
|
|
28
|
+
easyrip-4.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
29
|
+
easyrip-4.7.0.dist-info/entry_points.txt,sha256=D6GBMMTzZ-apgX76KyZ6jxMmIFqGYwU9neeLLni_qKI,49
|
|
30
|
+
easyrip-4.7.0.dist-info/top_level.txt,sha256=kuEteBXm-Gf90jRQgH3-fTo-Z-Q6czSuUEqY158H4Ww,8
|
|
31
|
+
easyrip-4.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|