diff options
| -rwxr-xr-x | tools/songdb.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/songdb.pl b/tools/songdb.pl index 589267b..f4cea89 100755 --- a/tools/songdb.pl +++ b/tools/songdb.pl @@ -234,6 +234,9 @@ sub singlefile { if($file =~ /\.ogg$/i) { $hash = get_oggtag($file); + + # CRC from 0 until we figure out exactly where the audio data starts! + $hash->{FILECRC} = crc32($file, 0); } else { $hash = get_mp3tag($file); |