-
Notifications
You must be signed in to change notification settings - Fork 923
Open
Labels
answeredAnswered one or more questions that may be relevant to other usersAnswered one or more questions that may be relevant to other usersenhancementquestion
Description
Some ffmpeg options don't take any values.
In this example '-an' (it's the disable audio option).
So how can we pass them on?
with: input_stream = ffmpeg.input('input.mp4')
I tried:
output_stream = ffmpeg.output(input_stream, 'output.mp4', 'an')
output_stream = ffmpeg.output(input_stream, 'output.mp4', an='')
output_stream = ffmpeg.output(input_stream, 'output.mp4', **{'an': ''})
None of the 3 worked.
snavruzov, adriaPerez, abhishekgupta368 and sqr
Metadata
Metadata
Assignees
Labels
answeredAnswered one or more questions that may be relevant to other usersAnswered one or more questions that may be relevant to other usersenhancementquestion