Files
python-2020-5-day-class/README.md
2020-11-29 14:46:34 -05:00

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
```