Bugzilla – Bug 2329
Sample Rate for ogg vorbis files is shown as 0.0 kHz in Song Info
Last modified: 2008-09-15 14:36:01 UTC
For ogg vorbis files a Sample Rate of 0.0 kHz is always shown on the song info page. For mp3-files 44.1 kHz is shown correctly.
Track::prettySampleRate divides the rate by 1000. Formats::Ogg is also dividing by 1000. Change line 111 of Formats/Ogg.pm to: $tags->{'RATE'} = $ogg->info('rate'); and it should match what Formats::MP3, et al, returns.
Change 4716