After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 700762 - ALAC bitrates show up as 0kbps
ALAC bitrates show up as 0kbps
Status: RESOLVED WONTFIX
Product: taglib-sharp
Classification: Other
Component: General
unspecified
Other Linux
: Normal normal
: ---
Assigned To: taglib-sharp-maint
taglib-sharp-maint
Depends on:
Blocks:
 
 
Reported: 2013-05-21 04:17 UTC by Chow Loong Jin
Modified: 2018-08-17 19:49 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Chow Loong Jin 2013-05-21 04:17:28 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);
    }
}
Comment 1 André Klapper 2018-08-17 19:49:37 UTC
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.