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
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,6 +111,13 @@ Technically FFmpeg could also be doing a transcoding but we'll talk about that l
111
111
112
112
FFmpeg does have a [documentation](https://www.ffmpeg.org/ffmpeg.html) that does a great job of explaining how it works.
113
113
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
+
114
121
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:
0 commit comments