Closed cjcodeproj closed 3 months ago
The code in the method should be callable from the Python shell.
repo = Repo(path)
repo.scan()
repo.load(FilenameMatches.Music_Media)
albums = repo.get_albums()
album_list = AlbumList()
album_list.albums(albums)
print(album_list.list_batches(grouping=Organizer.G_DECADE))
I tested the album output code against raw XML generated from the id3scan
tool that scanned an iTunes library.
It worked, except there is a bug in that code for albums that contain an ampersand in the album title. Not sure how that was missed. Once removing that test data, I was able to get full output.
Sample output
$ python -m media.tools.audio.albums.list --mediapath ~/xml/m/osx_raw_music_test/ --stats
Title Year Artist Runtime Genre
======================================== ==== ==================== ======== ====================
100% Cowboy 2007 Jason Meadows 0:33:59 Country
10 Best Greatest Hits 1990 Tanya Tucker 0:32:38 Country
10 Years Of Greatest Hits 1990 Vern Gosdin 0:34:19 Country
11 1989 The Smithereens 0:34:25 Alternative & Punk
12 Classics 2003 Ed Bruce 0:41:04 Country
14:59 1999 Sugar Ray 0:40:35 Rock
16 Biggest Hits 2000 Ricky Skaggs 0:51:12 Country
18 Wheels 1992 Bass Mountain Boys 0:37:30 Country
18 Wheels Rollin' Trucking Songs 1997 Various Artists 0:36:05 Country
2000-The Very Best Of Asia 2000 Asia 1:17:15 Rock
2001: A Space Odyssey 1968 Various Artists 0:41:57 Soundtrack
(2007) Live From SNL 2007 Various Artists 0:39:06 Rock
20 Best of 80's Country 2004 The Countdown Singers 1:07:27 Country
20th Century Masters: The Millennium Collection: Best Of Jerry Jeff Walker 1977 Jerry Jeff Walker 0:50:17 Country
20th Century Masters: The Millennium Collection: Best of Tracy Byrd 2001 Tracy Byrd 0:33:03 Country
20th Century Masters: The Millennium Collection - The Best Of Freddy Fender 1962 Freddy Fender 0:33:57 Rock
20th Century Masters: The Millennium Collection - The Best Of Mark Chesnutt 2001 Mark Chesnutt 0:40:45 Country
20th Century Masters - The Millennium Collection: The Best of The Mamas and The Papas 1999 The Mamas & The Papas 0:02:26 Rock
....
The Yellow Album 1998 The Simpsons 0:46:41 Soundtrack
Yes! 2000 Chad Brock 0:36:23 Country
You And You Alone 1998 Randy Travis 0:42:00 Country
You Can't Stop The Bum Rush 1999 Len 0:04:08 Alternative Rock
You Do Your Thing 2004 Montgomery Gentry 0:48:15 Country
You Have The Right To Remain Silent 1995 Perfect Stranger 0:31:15 Country
You Still Got Me 1995 Doug Supernaw 0:38:26 Country
You're All That Matters to Me - Single 2012 Miss Willie Brown 0:03:36 Country
Zenyatta Mondatta 0000 The Police 0:04:04 Rock
======================================== ==== ==================== ======== ====================
Album count : 1270
This is parsing the raw XML output from the id3scan
tool without making changes to the <unkn>
elements or anything like that.
Write the first POC tool that supports reporting on album data.
Coding work will need to encompass the following details:
The two tools will be named
media.tools.audio.albums.list
andmedia.tools.audio.albums.show
. The structure of the code should be close to identical for the existing toolsmedia.tools.movies.list
andmedia.tools.movies.show
.Tickets that should be closed before this one is started:
https://github.com/cjcodeproj/medialibrary/issues/160 https://github.com/cjcodeproj/medialibrary/issues/170
Tickets that should be reviewed before this one is started:
https://github.com/cjcodeproj/medialibrary/issues/47