FFMPEG auto download

This commit is contained in:
Stash Dev
2019-02-10 22:39:21 -08:00
parent 57307bfd01
commit 2565173105
16 changed files with 394 additions and 232 deletions

8
utils/boolean.go Normal file
View File

@@ -0,0 +1,8 @@
package utils
func Btoi(b bool) int {
if b {
return 1
}
return 0
}