We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb0b4e4 commit f71d432Copy full SHA for f71d432
videomorph/converter/media.py
@@ -357,9 +357,9 @@ def _process_subtitles(self, subtitle):
357
358
def _probe(self, args):
359
"""Return the prober output as a file like object."""
360
- prober_run = spawn_process([self._profile.prober,
361
- *args,
362
- self.input_path])
+ process_args = [self._profile.prober, self.input_path]
+ process_args[1:-1] = args
+ prober_run = spawn_process(process_args)
363
364
return prober_run.stdout
365
0 commit comments