GNOME Bugzilla – Bug 700762
ALAC bitrates show up as 0kbps
Last modified: 2018-08-17 19:49:37 UTC
In the sample ALAC file attached, converted using: avconv -i input.mp4 -acodec alac -t 20 output.m4a The audio bitrate appears as 0kbps. Nautilus shows it as 730kbps, MediaInfo shows it as 713kbps, and avconv shows it as 731kbps. Code used: hyperair@thinkpwn:~/tmp% dmcs taglib-show-bitrate.cs -pkg:taglib-sharp hyperair@thinkpwn:~/tmp% ./taglib-show-bitrate.exe David_Guetta_-_Titanium_ft__Sia-JRfuAukYTKg.m4a Bitrate = 0 hyperair@thinkpwn:~/tmp% cat taglib-show-bitrate.cs using TagLib; using System; public class ShowBitrate { public static void Main (string[] args) { TagLib.File file = TagLib.File.Create (args[0]); Console.Out.WriteLine ("Bitrate = {0}", file.Properties.AudioBitrate); } }
taglib-sharp has moved to Github a while ago. Furthermore, GNOME Bugzilla will be shut down and replaced by gitlab.gnome.org. If the problem reported in this Bugzilla ticket is still valid, please report it to https://github.com/mono/taglib-sharp/issues instead. Thank you! Closing this report as WONTFIX as part of Bugzilla Housekeeping.