0:01 AM
hangy_ has quit
0:19 AM
Sargun has quit
0:29 AM
pbryan has quit
0:48 AM
MrQwerty` joined the channel
0:50 AM
niklas has quit
0:59 AM
alastair joined the channel
1:00 AM
Kerensky97 has left the channel
1:06 AM
MrQwerty has quit
1:21 AM
MrQwerty joined the channel
1:33 AM
pbryan joined the channel
1:39 AM
MrQwerty` has quit
1:40 AM
MrQwerty` joined the channel
1:47 AM
chefkoch joined the channel
1:47 AM
chefkoch_AW has quit
1:47 AM
chefkoch
chefkoch is now known as chefkoch_AW
1:58 AM
MrQwerty has quit
2:23 AM
Sargun joined the channel
2:26 AM
ruaok has quit
2:33 AM
MrQwerty joined the channel
2:52 AM
MrQwerty` has quit
2:58 AM
dholmes has quit
3:12 AM
Amblin joined the channel
3:20 AM
Knio has quit
3:20 AM
Knio1 joined the channel
3:20 AM
Knio1
Knio1 is now known as Knio
3:24 AM
Amblin- has quit
3:34 AM
MrQwerty` joined the channel
3:52 AM
MrQwerty has quit
4:04 AM
MrQwerty`
MrQwerty` is now known as MrQwerty
4:05 AM
artagnon joined the channel
4:05 AM
artagnon has left the channel
4:31 AM
ruaok joined the channel
4:47 AM
DarkAudit has quit
4:59 AM
MrQwerty` joined the channel
5:06 AM
DarkAudit joined the channel
5:09 AM
aporio joined the channel
5:17 AM
MrQwerty has quit
5:18 AM
ruaok has quit
6:49 AM
smgoller
anyone on who has experience using mutagen?
6:49 AM
i'm trying to shove album art into an mp3 and I can't seem to construct the APIC frame correctly
6:49 AM
luks
how are you doing it?
6:50 AM
smgoller
opening a file in rb mode
6:50 AM
then
6:51 AM
setting the data field of the APIC contructor to file.read()
6:51 AM
apicframe = APIC(encoding=3,mime="image/jpeg",type=3,desc='Front Cover',data=artfileobj.read())
6:51 AM
and the file is in fact a jpg
6:51 AM
luks
looks fine so far
6:52 AM
smgoller
hm
6:53 AM
luks
what is the problem?
6:53 AM
smgoller
i wonder if it's tag order
6:53 AM
when i load the mp3 in picard the art doesn't show u
6:53 AM
luks
can you pastebin the whole script/file?
6:53 AM
smgoller
hm
6:53 AM
luks
or the relevant parts
6:53 AM
smgoller
you want the tag manipulation part?
6:53 AM
hang on
6:54 AM
picard doesn't seem to like this other file that works properly in another tagger
6:54 AM
luks
or wait, where it's not showing up in picard?
6:54 AM
it will never show up if the file is on the right side
6:54 AM
smgoller
when you show details?
6:54 AM
luks
anywhere, on the right side it will show only MB metadata
6:55 AM
smgoller
ah
6:55 AM
luks
if you drag it back to left, it should show it to you
6:55 AM
smgoller
hm
6:55 AM
it won't let me drag it back
6:56 AM
whoa
6:56 AM
that one worked
6:56 AM
sweet!
6:56 AM
ok
6:57 AM
I'm writing a script that'll take a flac image file, transcode to mp3, then tag the hell out of it
6:57 AM
MBChatLogger
drop table trm;
6:57 AM
smgoller
does every tag from the wiki MusicBrainzTag except TRM UUID and PUID UUID
6:59 AM
however it's not smart about release country, it picks the earliest release date's
7:00 AM
luks
picard does the same thing
7:00 AM
srotta
How could it be smart about release country?
7:02 AM
luks
it could read your mind
7:02 AM
there is a new python module for that
7:02 AM
srotta
Ah, that.
7:02 AM
Yeah, I heard about it, but it apparently had some feedback problem.
7:04 AM
I think it called makeJelly() function without proper parameters or something like that.
7:04 AM
luks
:)
7:05 AM
warp
haha
7:05 AM
smgoller
well
7:05 AM
you could tie discids to releases
7:06 AM
i mean
7:06 AM
release events
7:06 AM
i would think that would be sufficient
7:06 AM
srotta
Yeah, that would be nice. Possibly.
7:07 AM
Some people have added release/discId mappings into release annotations.
7:17 AM
warp wants release event level ARs
7:17 AM
warp
or just NGS ofcourse.
7:18 AM
luks already has NGS :)
7:19 AM
meanie! keeping it to yourself :(
7:24 AM
smgoller
hm
7:25 AM
itunes not support id3v2.4?
7:25 AM
luks
right
7:25 AM
it kind of supports it, but really doesn't
7:26 AM
id3v2.4 for itunes is id3v2.3 with specified version 4
7:26 AM
outsidecontext joined the channel
7:27 AM
smgoller
so i guess the question of the hour is, what tag needs to exist for itunes to recognize album art?
7:27 AM
luks
id3v2.3, not doable with stock mutagen
7:27 AM
smgoller
;_;
7:28 AM
luks
check out picard's sources
7:28 AM
there is a class which allows id3v2.3 tag saving
7:32 AM
smgoller
so i found compatid3.py
7:32 AM
luks
yes, that one
7:32 AM
smgoller
which has the update_to_v23()
7:33 AM
luks
well, that's not the main function
7:33 AM
that's just to convert existing frames to 2.3
7:33 AM
file.update_to_v23(); file.save(v2=3) is what you want to save id3v2.3 tags
7:34 AM
smgoller
so just those two functions should take care of it?
7:35 AM
luks
yes
7:36 AM
srotta
luks: You've managed to create a suitable DB schema for NGS?
7:37 AM
luks
srotta: for my personal version of NGS, yes
7:37 AM
srotta
Ok 8)
7:37 AM
luks
people think of NGS as a solution to everything, so obviously I don't have a DB schema for that :)
7:38 AM
srotta
Yeah. I wouldn't be too keen on creating that either :P
7:38 AM
smgoller
if i give picard an mp3 tagged properly with UFID, will it fill in everything else?
7:38 AM
i.e. will it just believe it
7:38 AM
luks
smgoller: I think it will not, but that's a bug
7:39 AM
it needs the release id currently
7:39 AM
smgoller
what if it has both?
7:39 AM
luks
then it will work fine
7:39 AM
smgoller
ok
7:40 AM
luks
7:40 AM
smgoller
so for writing tags in picard, i should select write 2.3 tags, and use what, utf-16?
7:40 AM
luks
yes
7:40 AM
that works fine in itunes, wmp and most HW players
7:41 AM
smgoller
ok
7:41 AM
nikki
hmm, luks, you know the tracks on more than one album thing? will the current track ids still be unique (i.e. you'd know which release you have from the track id) or would they refer to the merged track?
7:41 AM
luks
nikki: track ids will refer to merged tracks
7:41 AM
smgoller
so it sounds like if i just retune my transcoder to put in just release and track uuids, then process everything with picard, i should be good
7:42 AM
luks
so you need a release id to find on which release it's on
7:42 AM
nikki
ahh ok
7:42 AM
luks
smgoller: yes
7:42 AM
smgoller
if a 2.4 apic tag exists, will picard rewrite it as 2.3 or kill it?
7:43 AM
luks
depends on your settings
7:43 AM
if you disable any cover art downloaders, and set it to keep existing tags, it will rewrite it as 2.3
7:43 AM
smgoller
aha, found it
7:43 AM
CatCat
good moaning
7:44 AM
smgoller
is there an album art plugin or something?
7:44 AM
luks
yes
7:44 AM
7:44 AM
CatCat was made of fail yesterday, so today I will head out emediatly.
7:44 AM
CatCat
fun in the sun! bye!
7:45 AM
smgoller
ah. I'm embedding album art in the flac images so that shouldn't be necessary
7:45 AM
luks
well, MB might not always have cover art. it depends on Amazon for that
7:45 AM
smgoller
oh, it pulls from MB?
7:45 AM
luks
yes
7:45 AM
(from Amazon)