Added Divers

This commit is contained in:
2025-04-24 16:06:40 +02:00
parent 2abf8e30cf
commit b867b58f01
20 changed files with 1357 additions and 0 deletions

15
Divers/ffmpeg.md Normal file
View File

@@ -0,0 +1,15 @@
# ffmpeg
#### Image sequence (png) to mp4 :
```bash
ffmpeg -framerate 24 -i image_%03d.png -vcodec mpeg4 video.mp4
```
#### WebM loop image sequence (png) with music (mp3)
```bash
ffmpeg -stream_loop -1 -t 106 -framerate 10 -f image2 -i frame\%04d.png -i dance.mp3 -c:v libvpx-vp9 -pix_fmt yuva420p dance.webm
```
> Total duration : 1'46"