You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe this looks great to you, but if you're not an FFmpeg command-line expert, it probably looks alien.
@@ -140,13 +135,22 @@ Or fluently:
140
135
)
141
136
```
142
137
143
-
When in doubt, refer to the [existing filters](https://github.com/kkroening/ffmpeg-python/blob/master/ffmpeg/_filters.py) and/or the [official ffmpeg documentation](https://ffmpeg.org/ffmpeg-filters.html).
138
+
Arguments with special names such as `-qscale:v` can be specified as a keyword-args dictionary as follows:
139
+
```python
140
+
(ffmpeg
141
+
.input('dummy.mp4')
142
+
.output('dummy2.mp4', **{'qscale:v': 3})
143
+
.run()
144
+
)
145
+
```
146
+
147
+
When in doubt, refer to the [existing filters](https://github.com/kkroening/ffmpeg-python/blob/master/ffmpeg/_filters.py), [examples](https://github.com/kkroening/ffmpeg-python/tree/master/examples), and/or the [official ffmpeg documentation](https://ffmpeg.org/ffmpeg-filters.html).
Feel free to report any bugs or submit feature requests.
150
154
151
155
It should be fairly easy to use filters that aren't explicitly built into `ffmpeg-python` but if there's a feature or filter you'd really like to see included in the library, don't hesitate to open a feature request.
0 commit comments