mirror of
https://github.com/k4yt3x/video2x.git
synced 2026-05-19 18:27:34 +08:00
fixing video to frames ffmpeg config parsing order error
This commit is contained in:
@@ -82,12 +82,15 @@ class Ffmpeg:
|
|||||||
|
|
||||||
execute.extend([
|
execute.extend([
|
||||||
'-i',
|
'-i',
|
||||||
input_video,
|
input_video
|
||||||
f'{extracted_frames}\\extracted_%0d.{self.image_format}'
|
|
||||||
])
|
])
|
||||||
|
|
||||||
execute.extend(self._read_configuration(phase='video_to_frames', section='output_options'))
|
execute.extend(self._read_configuration(phase='video_to_frames', section='output_options'))
|
||||||
|
|
||||||
|
execute.extend([
|
||||||
|
f'{extracted_frames}\\extracted_%0d.{self.image_format}'
|
||||||
|
])
|
||||||
|
|
||||||
execute.extend(self._read_configuration(phase='video_to_frames'))
|
execute.extend(self._read_configuration(phase='video_to_frames'))
|
||||||
|
|
||||||
self._execute(execute)
|
self._execute(execute)
|
||||||
|
|||||||
Reference in New Issue
Block a user