Skip to content

Commit a2835aa

Browse files
add ffmpeg help example
1 parent f7e3021 commit a2835aa

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,13 @@ Technically FFmpeg could also be doing a transcoding but we'll talk about that l
111111

112112
FFmpeg does have a [documentation](https://www.ffmpeg.org/ffmpeg.html) that does a great job of explaining how it works.
113113

114+
```bash
115+
# you can also look for the documentation using the command line
116+
# for instance: here's we're checking what is the avoid_negative_ts parameters and its value
117+
118+
ffmpeg -h full | grep -A 10 -B 10 avoid_negative_ts
119+
```
120+
114121
To make things short, the FFmpeg command line program expects the following argument format to perform its actions `ffmpeg {1} {2} -i {3} {4} {5}`, where:
115122

116123
1. global options

0 commit comments

Comments
 (0)