mirror of
https://github.com/k4yt3x/video2x.git
synced 2025-11-01 21:21:06 +01: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([
|
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)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user