wi1-bot 1.4.6__py3-none-any.whl → 1.4.8__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.
- wi1_bot/_version.py +2 -2
- wi1_bot/arr/radarr.py +2 -2
- wi1_bot/transcoder/transcoder.py +12 -1
- {wi1_bot-1.4.6.dist-info → wi1_bot-1.4.8.dist-info}/METADATA +1 -1
- {wi1_bot-1.4.6.dist-info → wi1_bot-1.4.8.dist-info}/RECORD +9 -9
- {wi1_bot-1.4.6.dist-info → wi1_bot-1.4.8.dist-info}/LICENSE +0 -0
- {wi1_bot-1.4.6.dist-info → wi1_bot-1.4.8.dist-info}/WHEEL +0 -0
- {wi1_bot-1.4.6.dist-info → wi1_bot-1.4.8.dist-info}/entry_points.txt +0 -0
- {wi1_bot-1.4.6.dist-info → wi1_bot-1.4.8.dist-info}/top_level.txt +0 -0
wi1_bot/_version.py
CHANGED
wi1_bot/arr/radarr.py
CHANGED
@@ -149,10 +149,10 @@ class Radarr:
|
|
149
149
|
raise ValueError(f"no quality profile with the id {profile_id}")
|
150
150
|
|
151
151
|
def rescan_movie(self, movie_id: int) -> None:
|
152
|
-
self._radarr.post_command("RescanMovie", movieId=movie_id)
|
152
|
+
self._radarr.post_command("RescanMovie", movieId=movie_id) # type: ignore
|
153
153
|
|
154
154
|
def refresh_movie(self, movie_id: int) -> None:
|
155
|
-
self._radarr.post_command("RefreshMovie", movieIds=[movie_id])
|
155
|
+
self._radarr.post_command("RefreshMovie", movieIds=[movie_id]) # type: ignore
|
156
156
|
|
157
157
|
def search_missing(self) -> None:
|
158
158
|
self._radarr.post_command(name="MissingMoviesSearch")
|
wi1_bot/transcoder/transcoder.py
CHANGED
@@ -104,7 +104,12 @@ class Transcoder:
|
|
104
104
|
status = proc.wait()
|
105
105
|
|
106
106
|
if status != 0:
|
107
|
-
|
107
|
+
try:
|
108
|
+
transcode_to.unlink(missing_ok=True)
|
109
|
+
except Exception:
|
110
|
+
self.logger.warning(
|
111
|
+
f"failed to delete transcoded file: {transcode_to}"
|
112
|
+
)
|
108
113
|
|
109
114
|
if "Error opening input files" in last_output:
|
110
115
|
self.logger.info(
|
@@ -112,6 +117,12 @@ class Transcoder:
|
|
112
117
|
)
|
113
118
|
return True
|
114
119
|
|
120
|
+
if "File name too long" in last_output:
|
121
|
+
self.logger.info(
|
122
|
+
f"file name is too long: {path}, skipping transcoding"
|
123
|
+
)
|
124
|
+
return True
|
125
|
+
|
115
126
|
if "received signal 15" in last_output:
|
116
127
|
self.logger.info(
|
117
128
|
f"transcoding interrupted by signal: {path}, will retry"
|
@@ -1,5 +1,5 @@
|
|
1
1
|
wi1_bot/__init__.py,sha256=11ozJKiUsqDCZ3_mcAHhGYUyGK_Unl54djVSBBExFB4,59
|
2
|
-
wi1_bot/_version.py,sha256=
|
2
|
+
wi1_bot/_version.py,sha256=5V0g1zXAYqZG41mH-4FajHcVE05C9vUQm3ybra2NhKU,411
|
3
3
|
wi1_bot/config.py,sha256=AtzOXvCeat_lb-w_Wy37XyWIpV3LmKh38OGigluJ2nM,3139
|
4
4
|
wi1_bot/push.py,sha256=-Az8c21R3IZAkJVRQmWsbNXMfvBzzpc9pFTWsDy1mJE,789
|
5
5
|
wi1_bot/webhook.py,sha256=cVp6USg1vbfL05TPQSDIUUYPHWDjuPGb1IGsqImao6s,4713
|
@@ -7,7 +7,7 @@ wi1_bot/arr/__init__.py,sha256=ZIgkW24GBdS4sJmaiEIhueHOB6s2L8y2s9ahgp1USRI,86
|
|
7
7
|
wi1_bot/arr/download.py,sha256=02AYFglnFdWSG8xj_TaJc6l2wjybyhUW6F97CnoyUFw,1381
|
8
8
|
wi1_bot/arr/episode.py,sha256=j25ljy9hyTXFAEBeUQ4iozKP2YXpZyzauphaXa2oqh8,1057
|
9
9
|
wi1_bot/arr/movie.py,sha256=9cpJZcoW3r4op6X8Fkr4Cv0BsiWfqKD8MkBfEpTcT8k,741
|
10
|
-
wi1_bot/arr/radarr.py,sha256=
|
10
|
+
wi1_bot/arr/radarr.py,sha256=I8_SyUlbD-bSM-71adsZOoc_-yFdsC_SGXpJvZ5IrbM,5743
|
11
11
|
wi1_bot/arr/sonarr.py,sha256=OouuorRHBMFAOy5oDeJZ5H6WZ-95-N01EHtpOTVMTCo,5970
|
12
12
|
wi1_bot/discord/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
13
|
wi1_bot/discord/bot.py,sha256=puBlprcGqoC-m98DDZuM7Q7zhfTHSsqJIw2ptNrE4_M,5080
|
@@ -22,10 +22,10 @@ wi1_bot/scripts/start.py,sha256=vNa_iHkx10D5YWonyRW0f5nG8uE3_JtwJ-XZ-c0hWCs,2477
|
|
22
22
|
wi1_bot/scripts/transcode_item.py,sha256=21MeeIZ9wIRhAY-FOEgOdPsg6YOLlSUj59r8NkTfixw,1155
|
23
23
|
wi1_bot/transcoder/__init__.py,sha256=B4xr82UtIFc3tyy_MEZdZKMukYW0yejPnfsGowaTIM0,105
|
24
24
|
wi1_bot/transcoder/transcode_queue.py,sha256=W7r2I7OD8QuxseCEb7_ddOvYXiBBLmKLvCs2IgJJ92I,1856
|
25
|
-
wi1_bot/transcoder/transcoder.py,sha256=
|
26
|
-
wi1_bot-1.4.
|
27
|
-
wi1_bot-1.4.
|
28
|
-
wi1_bot-1.4.
|
29
|
-
wi1_bot-1.4.
|
30
|
-
wi1_bot-1.4.
|
31
|
-
wi1_bot-1.4.
|
25
|
+
wi1_bot/transcoder/transcoder.py,sha256=uAIFDDmwGx983Nhp-vwL6TjOJJWIt0PiDnnOucrjrFI,9208
|
26
|
+
wi1_bot-1.4.8.dist-info/LICENSE,sha256=6V4_mQoPoLJl77_WMsQRQMDG2mnIhDUdfCmMkqM9Qwc,1072
|
27
|
+
wi1_bot-1.4.8.dist-info/METADATA,sha256=QpokO1YkwzdZQ4a7yGs1R3AI05IAu4uJmU0VfZ30HXw,4530
|
28
|
+
wi1_bot-1.4.8.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
29
|
+
wi1_bot-1.4.8.dist-info/entry_points.txt,sha256=pF5EawAQsUNMHs5exynpNdRq9g4dODg-RaPkx2MyYLU,184
|
30
|
+
wi1_bot-1.4.8.dist-info/top_level.txt,sha256=Q7mTnPLk80Td82YbjlBMO5tvXJoTFHhheHdmwc-c-7I,8
|
31
|
+
wi1_bot-1.4.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|