File tree 3 files changed +10
-8
lines changed
3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ def batch_link(self):
140
140
logger .critical (
141
141
"[red bold]Oh dear. All the proxies failed to link.[/]\n "
142
142
"[red]Resolve might not like your encoding settings or something else is wrong.[/]\n " ,
143
- exc_info = True
143
+ exc_info = True ,
144
144
# TODO: Add troubleshooting wiki link here
145
145
# Like so: `"[cyan]See [troubleshooting](link)"`
146
146
# labels: enhancement
Original file line number Diff line number Diff line change @@ -170,12 +170,14 @@ def encode_proxy(self, job_dict: dict) -> str:
170
170
# labels: enhancement
171
171
# VIDEO FILTERS
172
172
"-vf" ,
173
- f"scale=-2:{ ps .vertical_res } ,"
174
- f"scale={ job .input_level } :out_range=limited, "
175
- f"{ ffmpeg_video_flip (job )} "
176
- f"format={ ps .pix_fmt } "
177
- if ps .pix_fmt
178
- else "" ,
173
+ (
174
+ f"scale=-2:{ ps .vertical_res } ,"
175
+ f"scale={ job .input_level } :out_range=limited, "
176
+ f"{ ffmpeg_video_flip (job )} "
177
+ f"format={ ps .pix_fmt } "
178
+ if ps .pix_fmt
179
+ else ""
180
+ ),
179
181
# AUDIO
180
182
"-c:a" ,
181
183
ps .audio_codec ,
Original file line number Diff line number Diff line change 19
19
from rich import print
20
20
from rich .panel import Panel
21
21
22
- from proxima .app .core import setup_rich_logging , app_exit
22
+ from proxima .app .core import app_exit , setup_rich_logging
23
23
from proxima .settings import dotenv_settings_file , user_settings_file
24
24
25
25
setup_rich_logging ()
You can’t perform that action at this time.
0 commit comments