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
Copy file name to clipboardExpand all lines: README.md
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,8 @@ ffmpeg.run(stream)
23
23
Or if you prefer a fluent interface:
24
24
```python
25
25
import ffmpeg
26
-
(ffmpeg
26
+
(
27
+
ffmpeg
27
28
.input('input.mp4')
28
29
.hflip()
29
30
.output('output.mp4')
@@ -54,7 +55,8 @@ import ffmpeg
54
55
55
56
in_file = ffmpeg.input('input.mp4')
56
57
overlay_file = ffmpeg.input('overlay.png')
57
-
(ffmpeg
58
+
(
59
+
ffmpeg
58
60
.concat(
59
61
in_file.trim(start_frame=10, end_frame=20),
60
62
in_file.trim(start_frame=30, end_frame=40),
@@ -117,7 +119,7 @@ Alternatively, standard python help is available, such as at the python REPL pro
117
119
118
120
## Custom Filters
119
121
120
-
Don't see the filter you're looking for? `ffmpeg-python` includes , but it's easy to use any arbitrary ffmpeg filter:
122
+
Don't see the filter you're looking for? `ffmpeg-python` includes shorthand notation for some of the most commonly used filters (such as `concat`), but it's easy to use any arbitrary ffmpeg filter:
0 commit comments