diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-06-19 06:17:30 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-06-19 06:17:30 +0000 |
commit | de957a17befcccbc439bca48c059e51c10b6bb1b (patch) | |
tree | 5ff2fd018c52fc228fef7d710681b3bf8ff5448a /modules | |
parent | 26cfd58bcc0b64a6ccb7550ce7908bf812fcb87a (diff) | |
download | ampache-de957a17befcccbc439bca48c059e51c10b6bb1b.tar.gz ampache-de957a17befcccbc439bca48c059e51c10b6bb1b.tar.bz2 ampache-de957a17befcccbc439bca48c059e51c10b6bb1b.zip |
default to id3v2 worst cast on tag gather, replace audioinfo class in /upload
Diffstat (limited to 'modules')
-rwxr-xr-x | modules/id3/vainfo.class.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/id3/vainfo.class.php b/modules/id3/vainfo.class.php index 5cd6239c..94366c20 100755 --- a/modules/id3/vainfo.class.php +++ b/modules/id3/vainfo.class.php @@ -184,11 +184,12 @@ class vainfo { case 'id3v2': $results[$key] = $this->_parse_id3v2($tag_array); break; - case 'ape': - $results[$key] = $this->_parse_ape($tag_array); +// case 'ape': +// $results[$key] = $this->_parse_ape($tag_array); break; default: - debug_event('vainfo','Error: Unable to determine tag type of ' . $key . ' for file ' . $this->filename,'5'); + debug_event('vainfo','Error: Unable to determine tag type of ' . $key . ' for file ' . $this->filename . ' Assuming id3v2','5'); + $results[$key] = $this->_parse_id3v2($tag_array); break; } // end switch |