1
0
Fork 0
radmatrix/firmware/README.md

26 lines
420 B
Markdown
Raw Normal View History

2024-03-23 22:08:14 +00:00
**add graphics**
convert video
```
ffmpeg -i badapple.webm -ss 00:01:00 -t 30 -vf "fps=30,scale=20:20:force_original_aspect_ratio=increase,crop=20:20,format=gray" badapple-frames/badapple_%04d.png
```
move to `gfx` folder, then:
```
python3 scripts/gfx_convert.py
```
2024-05-16 11:47:49 +00:00
convert audio
```
ffmpeg -i badapple.webm -t 30 -ar 11000 output.wav
```
move to `audio` folder, then:
```
python3 scripts/audio_convert.py
```