Added gitignore

This commit is contained in:
Magnus Åhall 2024-10-10 09:22:13 +02:00
parent 1f3d87d37f
commit e441b4880f
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
timelapse
timelapse.mp4

View File

@ -150,7 +150,7 @@ func timelapse(date string, files []string) { // {{{
panic(err)
}
} // }}}
func concatVideos(unsortedDates []string) {
func concatVideos(unsortedDates []string) { // {{{
fname := "/tmp/timelapse/sequence_all"
var videos []string
@ -167,7 +167,7 @@ func concatVideos(unsortedDates []string) {
fmt.Printf("%s\n", out)
panic(err)
}
}
} // }}}
func main() {
parseCommandLine()