day 4 done

This commit is contained in:
ducoterra
2020-11-29 14:46:34 -05:00
parent fbb0e61b04
commit 4e6a69c038
4 changed files with 455 additions and 2 deletions

View File

@@ -1,8 +1,15 @@
# Docs
Converting mov to gif:
```bash
ffmpeg -i in.mov -filter:v "setpts=0.5*PTS" out.gif
ffmpeg -i in.mkv out.mov
```
Converting mkv to mp4 with 20Mbit bitrate
```bash
ffmpeg -i in.mkv -b:v 20M out.mov
```
```bash