Compare commits

..

No commits in common. "c56080b58d21f8bea7cf8068d4b1a419ce601052" and "14be013b3fef24a44d3317ac2be119600e15013f" have entirely different histories.

2 changed files with 6 additions and 10 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
*.ex
*.EX
trace.log
.vscode/

View File

@ -407,13 +407,10 @@ do
rest="${rest#*::AtOM:SQL:Sep::}"
case $mimetype in
application/ogg\ opus) type=Opus ;;
audio/ogg\ opus) type=Opus ;;
application/ogg\ vorbis) type=Vorbis ;;
audio/ogg\ vorbis) type=Vorbis ;;
audio/mp4) type=MPEG4\ Audio;;
audio/mpeg) type=MPEG\ Audio;;
audio/x-flac) type=FLAC ;;
audio/flac) type=FLAC ;;
video/mpeg) type=MPEG\ Video;;
video/webm) type=WebM ;;
video/x-flv) type=Flash\ Video;;
@ -690,9 +687,9 @@ maxcountlen=${#maxcountlen}
rest="${line#*::AtOM:SQL:Sep::}::AtOM:SQL:Sep::"
totalsize="${line%%::AtOM:SQL:Sep::*}"
for format in \
audio/flac \
audio/ogg\ vorbis \
audio/ogg\ opus \
audio/x-flac \
application/ogg\ vorbis \
application/ogg\ opus \
audio/mpeg \
audio/mp4 \
\
@ -718,11 +715,11 @@ do
size="${rest%%::AtOM:SQL:Sep::*}"
(( count )) || continue
case $format in
audio/ogg\ opus) type=Opus ;;
audio/ogg\ vorbis) type=Vorbis ;;
application/ogg\ opus) type=Opus ;;
application/ogg\ vorbis) type=Vorbis ;;
audio/mp4) type=MPEG4\ Audio ;;
audio/mpeg) type=MPEG\ Audio ;;
audio/flac) type=FLAC ;;
audio/x-flac) type=FLAC ;;
video/mpeg) type=MPEG\ Video ;;
video/webm) type=WebM ;;
video/x-flv) type=Flash\ Video ;;