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
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ import ffmpeg
15
15
stream = ffmpeg.input('input.mp4')
16
16
stream = ffmpeg.hflip(stream)
17
17
stream = ffmpeg.output(stream, 'output.mp4')
18
-
ffmpeg.run(v)
18
+
ffmpeg.run(stream)
19
19
```
20
20
21
21
Or if you prefer a fluent interface:
@@ -48,7 +48,7 @@ ffmpeg -i input.mp4 \
48
48
-map [v5] output.mp4
49
49
```
50
50
51
-
Maybe this looks great to you, but if you're not an FFmpeg command-line expert, it probably looks pretty alien.
51
+
Maybe this looks great to you, but if you're not an FFmpeg command-line expert, it probably looks alien.
52
52
53
53
If you're like me and find Python to be powerful and readable, it's easy with `ffmpeg-python`:
54
54
```
@@ -125,7 +125,7 @@ When in doubt, refer to the [existing filters](https://github.com/kkroening/ffmp
125
125
126
126
Feel free to report any bugs or feature requests.
127
127
128
-
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 in GitHub.
128
+
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