19 lines
274 B
Markdown
19 lines
274 B
Markdown
# Docs
|
|
|
|
Converting mov to gif:
|
|
|
|
```bash
|
|
ffmpeg -i in.mov -filter:v "setpts=0.5*PTS" out.gif
|
|
```
|
|
|
|
Converting mkv to mp4 with 20Mbit bitrate
|
|
|
|
```bash
|
|
ffmpeg -i in.mkv -b:v 20M out.mov
|
|
```
|
|
|
|
```bash
|
|
git config --global pager.branch false
|
|
git config --global pager.tag false
|
|
```
|