Do not lowercase the input file (Fixes Linux support) (#13)

Linux path names are almost always case sensitive, so this PR removes forcing lowercase file names.
pull/18/head^2
xbjfk 2021-04-21 22:32:11 +12:00 committed by GitHub
parent a160aa71e0
commit 6a227f605e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -59,8 +59,6 @@ func handleArgs(args []string, quiet *bool) {
}
func initCommand(inputFile string, mode string) {
inputFile = strings.ToLower(inputFile)
if strings.HasSuffix(inputFile, ".webm") {
switch mode {