chore(snippets): add conversion commands

This commit is contained in:
Michele Cereda
2024-05-04 11:50:49 +02:00
parent 1e9a51fa0b
commit 1cb64d4675

View File

@@ -0,0 +1,8 @@
#!sh
# svg to png
rsvg-convert -ah '96' 'icon.svg' -o 'icon-96.png'
# webm to mp4
ffmpeg -i 'input.webm' -c 'copy' 'output.mp4'
ffmpeg -fflags '+genpts' -r '24' -i 'input.webm' 'output.mp4'