mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 06:59:11 +00:00
fixing video to frames ffmpeg config parsing order error
This commit is contained in:
parent
0f4daa12d2
commit
6b3e1b9768
@ -82,12 +82,15 @@ class Ffmpeg:
|
||||
|
||||
execute.extend([
|
||||
'-i',
|
||||
input_video,
|
||||
f'{extracted_frames}\\extracted_%0d.{self.image_format}'
|
||||
input_video
|
||||
])
|
||||
|
||||
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'))
|
||||
|
||||
self._execute(execute)
|
||||
|
Loading…
Reference in New Issue
Block a user