initial commit

This commit is contained in:
davidovski 2021-10-09 22:20:41 +01:00
commit 01ced0b7ce
184 changed files with 35358 additions and 0 deletions

4
scripts/compress-video Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
size=8388608
length=`ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 input.mp4`
ffmpeg -i $1 -b $(( $size / ${length%.*} )) $1.mp4