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
*.EX *.EX
trace.log trace.log
.vscode/

View File

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