multiple values 'map'
See original GitHub issueHey,
is there any way to have multi values options like map?
ffmpeg.output(streams_input, path_movie_mp4, **ffmpeg_kwargs).global_args('-map', '0').global_args('-map', '0:m:language:eng').run()
or
ffmpeg.output(streams_input, map=0, map='0:m:language:eng', path_movie_mp4, **ffmpeg_kwargs).run()
I`ll create a python script that will run on a directory within a lot of mkv files. I want to convert every mkv file to mp4. But i do not want any audio language only eng and dutch.
TypeError: output() got multiple values for keyword argument 'map'
Issue Analytics
- State:
- Created 3 years ago
- Comments:5
Top Results From Across the Web
HashMap with multiple values under the same key
A collection similar to a Map, but which may associate multiple values with a single key. If you call put(K, V) twice, with...
Read more >How to make multiple values per key in a Java map possible ...
How to add multiple values per key to a Java HashMap · Stick with the standard APIs and add a collection class like...
Read more >Create HashMap with Multiple Values Associated with the ...
In Java, HashMap is used to store the data in Key – Value pairs. One key object is associated with one value object....
Read more >HashMap – Single Key and Multiple Values Example - DZone
HashMap can be used to store key-value pairs. But sometimes you may want to store multiple values for the same key. For example:....
Read more >How to implement Map that holds multiple values under same ...
The Map interface stores the elements as key-value pairs. It does not allow duplicate keys but allows duplicate values. HashMap and ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I solved multiple map values with:
I understand. But sometimes i have 3 outputAud and the other time just only one. it’s not a dict that i can use same as
**ffmpegFlags