#musicbrainz

/

      • kepstin
        man, picard save ogg vorbis files slowly :(
      • 2011-08-21 23322, 2011

      • nikki
        yeah
      • 2011-08-21 23339, 2011

      • Muz
        It's almost as if OGG Vorbis is a terrible terrible terrible file format.
      • 2011-08-21 23351, 2011

      • kepstin
        vorbis is fine, it's just the ogg ;)
      • 2011-08-21 23321, 2011

      • kepstin
        I guess they just didn't bother to put support for padding into the format?
      • 2011-08-21 23348, 2011

      • kepstin
        huh, it looks like there are some patches to some tools to use padding in the comments.
      • 2011-08-21 23334, 2011

      • kepstin
        there's an annoying thing with the flac tag writer in picard - if it thinks there's /too much/ padding for the comments in a flac file, it'll rewrite the flac file to reduce the padding.
      • 2011-08-21 23359, 2011

      • kepstin
        and the amount of padding that the flac encoder includes by default is above the limit that picard has :/
      • 2011-08-21 23314, 2011

      • kepstin
        so picard completely rewrites every freshly encoded flac I tag with it :(
      • 2011-08-21 23332, 2011

      • nikki
        enter a ticket then :P
      • 2011-08-21 23358, 2011

      • kepstin should probably file a bug for that, but it's more likely a mutagen issue than in picard directly?
      • 2011-08-21 23332, 2011

      • nikki
        bitmap would probably know
      • 2011-08-21 23343, 2011

      • nikki
        or luks, but he's probably asleep
      • 2011-08-21 23307, 2011

      • jacobbrett joined the channel
      • 2011-08-21 23333, 2011

      • jacobbrett joined the channel
      • 2011-08-21 23349, 2011

      • jacobbrett joined the channel
      • 2011-08-21 23313, 2011

      • ianmcorvidae
        kepstin-laptop: perhaps http://mutagen.sourcearchive.com/documentation/1.… or so is to blame? It's not supposed to change the size of PADDING blocks but perhaps the way picard's writing tags results in multiple blocks that then must be merged?
      • 2011-08-21 23335, 2011

      • kepstin-laptop
        ianmcorvidae: I dunno, but the flac encoder writes 8kb of padding by default, and mutagen always reduces that to 1kb or less padding (after tag writing)
      • 2011-08-21 23343, 2011

      • kepstin-laptop
        hmm. looks like http://mutagen.sourcearchive.com/documentation/1.… is probably responsible, but i'm not sure exactly how it is...
      • 2011-08-21 23334, 2011

      • ianmcorvidae
        huh
      • 2011-08-21 23348, 2011

      • ianmcorvidae
        that thing where it appends 1020 bytes of padding (I think?) is strange
      • 2011-08-21 23351, 2011

      • kepstin-laptop
        that's 1020 bytes of padding plus a four-byte header, so a 1kb padding block.
      • 2011-08-21 23301, 2011

      • ianmcorvidae
        ah
      • 2011-08-21 23302, 2011

      • ianmcorvidae
        yeah
      • 2011-08-21 23319, 2011

      • ianmcorvidae wonders what self.__find_audio_offset returns
      • 2011-08-21 23346, 2011

      • ianmcorvidae
        since the documentation evidently doesn't tell you :/
      • 2011-08-21 23309, 2011

      • kepstin-laptop
        well, you're looking at the public api docs, that's a private function
      • 2011-08-21 23316, 2011

      • ianmcorvidae
        well, yes
      • 2011-08-21 23319, 2011

      • ianmcorvidae
        even so :)
      • 2011-08-21 23340, 2011

      • kepstin-laptop
        ianmcorvidae: it appears to find the offset of the first audio frame in the file
      • 2011-08-21 23355, 2011

      • kepstin-laptop
        every block before that is metadata blocks
      • 2011-08-21 23302, 2011

      • ianmcorvidae
        ah
      • 2011-08-21 23303, 2011

      • kepstin-laptop
        (except the first 4 bytes, which are "fLaC"
      • 2011-08-21 23307, 2011

      • kepstin-laptop
        )
      • 2011-08-21 23312, 2011

      • ianmcorvidae
        http://code.google.com/p/mutagen/source/browse/tr… will probably tell me the same soon
      • 2011-08-21 23322, 2011

      • kepstin-laptop
      • 2011-08-21 23305, 2011

      • ddaydj joined the channel
      • 2011-08-21 23346, 2011

      • ianmcorvidae
        oh, huh
      • 2011-08-21 23359, 2011

      • ianmcorvidae
        wait, never mind
      • 2011-08-21 23309, 2011

      • ianmcorvidae
        I thought that _load maybe wasn't reading in padding but I was wrong
      • 2011-08-21 23316, 2011

      • ianmcorvidae
        meh, probably better to just ask luks/bitmap later, I don't know this codebase :)
      • 2011-08-21 23309, 2011

      • kepstin-laptop
        heh
      • 2011-08-21 23320, 2011

      • kepstin-laptop has been looking at it, but nothing's jumping out
      • 2011-08-21 23357, 2011

      • kepstin-laptop
        it looks like there shouldn't ever be a case where it makes the header section smaller, there simply isn't code to do that
      • 2011-08-21 23338, 2011

      • kepstin-laptop
        it has code to handle the existing space in the header being too small, that's what the call to insert_bytes on line 674 is for.
      • 2011-08-21 23352, 2011

      • kepstin-laptop
        so the code path should be, given a simple example of "old vorbiscomment=1kb old padding=7kb", doing an update that causes new vorbiscomment=2kb, it should add 1kb padding to the end, giving 2kb comment + 8kb padding, notice that that's over the available space, and cut the padding down to 6kb.
      • 2011-08-21 23349, 2011

      • ianmcorvidae
        yeah :/\
      • 2011-08-21 23304, 2011

      • ianmcorvidae
        possibly would be worth going through this at the python command-line with mutagen
      • 2011-08-21 23320, 2011

      • kepstin-laptop
        yeah.
      • 2011-08-21 23338, 2011

      • kepstin-laptop
        there is literally no place in flac.py that could cause the flac file to get smaller
      • 2011-08-21 23339, 2011

      • ianmcorvidae
        at least isolate the problem to mutagen vs. picard, since we've been assuming mutagen but it looks like mutagen is clean
      • 2011-08-21 23304, 2011

      • kepstin-laptop
        the insert_bytes() function will give an assertion failure if passed a negative number, and there's no call to delete_bytes
      • 2011-08-21 23328, 2011

      • ianmcorvidae
        of course, I don't see anything in http://bazaar.launchpad.net/~musicbrainz-develope… either :/
      • 2011-08-21 23300, 2011

      • kepstin-laptop
        and in all of the example files I have, the total size of the metadata blocks in the header is /less/ after tagging with picard.
      • 2011-08-21 23354, 2011

      • kepstin-laptop
        I can't figure this out, it looks like the mutagen code itself is working fine when I run through it by hand in a python shell :/
      • 2011-08-21 23310, 2011

      • STalKer-Y joined the channel
      • 2011-08-21 23351, 2011

      • olaf_ joined the channel
      • 2011-08-21 23321, 2011

      • djce joined the channel
      • 2011-08-21 23315, 2011

      • dinog joined the channel
      • 2011-08-21 23333, 2011

      • ijabz joined the channel
      • 2011-08-21 23302, 2011

      • lugo joined the channel
      • 2011-08-21 23346, 2011

      • reosarevok joined the channel
      • 2011-08-21 23324, 2011

      • Vorpal joined the channel
      • 2011-08-21 23309, 2011

      • reosarevok
        kepstin-laptop, you around?
      • 2011-08-21 23320, 2011

      • reosarevok
      • 2011-08-21 23334, 2011

      • reosarevok
        (In the unlikely case it is not sold out there, of course)
      • 2011-08-21 23330, 2011

      • PasNox joined the channel
      • 2011-08-21 23302, 2011

      • JoeLlama joined the channel
      • 2011-08-21 23333, 2011

      • lugo joined the channel
      • 2011-08-21 23308, 2011

      • the_metalgamer joined the channel
      • 2011-08-21 23300, 2011

      • zazi joined the channel
      • 2011-08-21 23351, 2011

      • zazi joined the channel
      • 2011-08-21 23327, 2011

      • the_metalgamer joined the channel
      • 2011-08-21 23340, 2011

      • kepstin-laptop
        reosarevok: I'm in Canada, not US :)
      • 2011-08-21 23309, 2011

      • kepstin-laptop
        we got the $100 TouchPad a day before the US did, and it sold out everywhere by yesterday.
      • 2011-08-21 23342, 2011

      • the_metalgamer joined the channel
      • 2011-08-21 23313, 2011

      • kepstin joined the channel
      • 2011-08-21 23353, 2011

      • El_Rico joined the channel
      • 2011-08-21 23329, 2011

      • El_Rico
        hi, i'm not receiving emails for new releases of my watched artists
      • 2011-08-21 23349, 2011

      • El_Rico
        is that a known issue, or is there anything i can do about it?
      • 2011-08-21 23304, 2011

      • nikki
        do you have an example?
      • 2011-08-21 23349, 2011

      • El_Rico
        let me find one
      • 2011-08-21 23319, 2011

      • El_Rico
        the most obvious one would be glee cast
      • 2011-08-21 23327, 2011

      • Mineo
        did that feature actually ever work?
      • 2011-08-21 23355, 2011

      • nikki
        it didn't before
      • 2011-08-21 23358, 2011

      • El_Rico
        i've got that on my watched list, soundtracks are enabled in my preferences, yet i never receive any emails for any of their rather frequent releases
      • 2011-08-21 23300, 2011

      • nikki
        I don't know about in ngs
      • 2011-08-21 23338, 2011

      • the_metalgamer joined the channel
      • 2011-08-21 23351, 2011

      • cosares joined the channel
      • 2011-08-21 23350, 2011

      • cosares
        Are there any auto-editors out there who can approve this edit for me please? http://musicbrainz.org/edit/15052199
      • 2011-08-21 23321, 2011

      • cosares
        I only ask because it's blocking me from doing the merge...
      • 2011-08-21 23355, 2011

      • nikki
        done
      • 2011-08-21 23300, 2011

      • cosares
        Thanks
      • 2011-08-21 23314, 2011

      • nikki
        if the tracks on the other release are mistakenly swapped, won't they also need fixing first?
      • 2011-08-21 23335, 2011

      • cosares
        That would be nice...
      • 2011-08-21 23304, 2011

      • cosares
        The correct track list reference is here: http://www.discogs.com/Mike-Oldfield-The-Collecti…
      • 2011-08-21 23335, 2011

      • cosares
        Could an auto-editor expediate this process somehow? Either by first accepting the merge before the track list change, or by accepting the track list change before the merge?
      • 2011-08-21 23301, 2011

      • nikki
        auto-editors can only accept things they can auto-edit themselves, so not merges
      • 2011-08-21 23321, 2011

      • nikki
        the latter should work though
      • 2011-08-21 23339, 2011

      • cosares
        I'll give it a go, and post the edit here
      • 2011-08-21 23309, 2011

      • nikki
        they should probably be fixed first anyway, since otherwise merging will merge the wrong recordings
      • 2011-08-21 23320, 2011

      • cosares
        Do I have to rename the tracks (and swap recordings) or is there a re-order tracks option?
      • 2011-08-21 23359, 2011

      • reosarevok
        cosares, in the advanced traclist, just change the track numbers
      • 2011-08-21 23324, 2011

      • cosares
        Done: Edit #15052260
      • 2011-08-21 23303, 2011

      • cosares
        I tried both ways before committing and the resultant edit was the same - it's not a very clear message: http://musicbrainz.org/edit/15052260
      • 2011-08-21 23301, 2011

      • cosares
        Does this edit need to be approved before the merge is entered, otherwise there would be a track list change conflict / failure?
      • 2011-08-21 23331, 2011

      • cosares
        Gotta go, I'll check the logs the later, ciao and thanks all
      • 2011-08-21 23345, 2011

      • cosares has left the channel
      • 2011-08-21 23352, 2011

      • hangy joined the channel
      • 2011-08-21 23347, 2011

      • HeinzBoettjer joined the channel
      • 2011-08-21 23313, 2011

      • hangy_ joined the channel
      • 2011-08-21 23358, 2011

      • _bibi joined the channel
      • 2011-08-21 23347, 2011

      • igndenok joined the channel
      • 2011-08-21 23359, 2011

      • zexpe joined the channel
      • 2011-08-21 23309, 2011

      • reosarevok joined the channel
      • 2011-08-21 23345, 2011

      • reosarevok joined the channel
      • 2011-08-21 23346, 2011

      • PasNox joined the channel
      • 2011-08-21 23308, 2011

      • olaf_ joined the channel
      • 2011-08-21 23300, 2011

      • zazi joined the channel
      • 2011-08-21 23350, 2011

      • mchou joined the channel
      • 2011-08-21 23322, 2011

      • reosarevok joined the channel
      • 2011-08-21 23328, 2011

      • CallerNo6 joined the channel
      • 2011-08-21 23329, 2011

      • reosarevok joined the channel
      • 2011-08-21 23309, 2011

      • voiceinsideyou1 joined the channel
      • 2011-08-21 23302, 2011

      • voiceinsideyou joined the channel
      • 2011-08-21 23331, 2011

      • ijabz joined the channel
      • 2011-08-21 23337, 2011

      • Shepard joined the channel
      • 2011-08-21 23345, 2011

      • ruaok joined the channel
      • 2011-08-21 23345, 2011

      • xlotlu joined the channel
      • 2011-08-21 23334, 2011

      • DarkerAudit joined the channel
      • 2011-08-21 23326, 2011

      • reosarevok joined the channel
      • 2011-08-21 23319, 2011

      • Leftmost
        Is ModBot in a sad place again?
      • 2011-08-21 23332, 2011

      • ruaok
        I've not been getting mails from him.
      • 2011-08-21 23338, 2011

      • ruaok
        or her.
      • 2011-08-21 23342, 2011

      • ruaok
        I've never checked. :)
      • 2011-08-21 23326, 2011

      • nikki always thinks of modbot as a guy
      • 2011-08-21 23349, 2011

      • ianmcorvidae
        this is what Gender: Other was _made_ for, I figure :P
      • 2011-08-21 23304, 2011

      • ruaok
        lol, srsly
      • 2011-08-21 23324, 2011

      • nikki
        ianmcorvidae: ah, but has modbot ever stated that he/she is not male/female and doesn't want to be known as male/female? :P
      • 2011-08-21 23339, 2011

      • ianmcorvidae
        :P
      • 2011-08-21 23341, 2011

      • reosarevok
        Someone program modbot to do so
      • 2011-08-21 23301, 2011

      • nikki
        someone fix all the bugs I keep finding :P
      • 2011-08-21 23328, 2011

      • reosarevok
        Someone bring the summer back
      • 2011-08-21 23331, 2011

      • Leftmost
        It's far more important to have ModBot identify their gender.
      • 2011-08-21 23346, 2011

      • nikki sends reosarevok the heat
      • 2011-08-21 23353, 2011

      • nikki
        anyone here using opera?
      • 2011-08-21 23314, 2011

      • Leftmost
        Hmm. "Falco vs. the Young Canoeist" or "Falco vs. The Young Canoeist" as a song title?
      • 2011-08-21 23325, 2011

      • Leftmost leans toward the former, but seeks clarification.
      • 2011-08-21 23322, 2011

      • the_metalgamer joined the channel
      • 2011-08-21 23359, 2011

      • murdos_ic_
        someone reporting bugs I find and don't report anymore