From c9caf9781befd2a40d4599ead126f3e6e480e739 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 21 Aug 2005 20:53:34 +0000 Subject: Fixed title extracting for Ogg files. Fixed suggested by 'cosmocat' in the Misticriver forum. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7375 a1c6a512-1295-4272-9138-f99709370657 --- tools/songdb.pl | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tools') diff --git a/tools/songdb.pl b/tools/songdb.pl index 40d23d780d..7154ba33d8 100755 --- a/tools/songdb.pl +++ b/tools/songdb.pl @@ -99,6 +99,9 @@ sub get_oggtag { elsif($k =~ /^album$/i) { $n = 'ALBUM'; } + elsif($k =~ /^title$/i) { + $n = 'TITLE'; + } $hash{$n}=$cmmt if($n); } } -- cgit