{"id":17501899,"url":"https://github.com/sfxcode/itunes-reader","last_synced_at":"2025-06-22T11:08:45.647Z","repository":{"id":77976753,"uuid":"141915117","full_name":"sfxcode/itunes-reader","owner":"sfxcode","description":"convert itunes xml data to scala classes","archived":false,"fork":false,"pushed_at":"2020-06-01T07:11:31.000Z","size":54,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-22T11:08:39.632Z","etag":null,"topics":["itunes","scala","xml"],"latest_commit_sha":null,"homepage":null,"language":"Scala","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sfxcode.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-07-22T17:07:05.000Z","updated_at":"2020-06-01T07:11:29.000Z","dependencies_parsed_at":"2023-03-16T14:45:20.522Z","dependency_job_id":null,"html_url":"https://github.com/sfxcode/itunes-reader","commit_stats":{"total_commits":52,"total_committers":2,"mean_commits":26.0,"dds":"0.42307692307692313","last_synced_commit":"6192891652efae21c2b504d22135823748fdcc69"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/sfxcode/itunes-reader","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfxcode%2Fitunes-reader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfxcode%2Fitunes-reader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfxcode%2Fitunes-reader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfxcode%2Fitunes-reader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sfxcode","download_url":"https://codeload.github.com/sfxcode/itunes-reader/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfxcode%2Fitunes-reader/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261282320,"owners_count":23134940,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["itunes","scala","xml"],"created_at":"2024-10-19T20:16:25.274Z","updated_at":"2025-06-22T11:08:40.629Z","avatar_url":"https://github.com/sfxcode.png","language":"Scala","funding_links":[],"categories":[],"sub_categories":[],"readme":"# itunes-reader\n\n## Info\n\nLibrary for converting itunes xml files to scala model classes.\nI made this library for using itunes Tracks and Playlists in some of my projects.\n\n## Travis\n\n[![Build Status](https://travis-ci.org/sfxcode/sapphire-core.svg?branch=master)](https://travis-ci.org/sfxcode/itunes-reader)\n\n## Download\n\n[ ![Download](https://api.bintray.com/packages/sfxcode/maven/itunes-reader/images/download.svg) ](https://bintray.com/sfxcode/maven/itunes-reader/_latestVersion)\n\n## Model\n\n### MusicLibrary\n\nMembers:\n\n* tracks: List[Track]\n* playlists: List[Playlist]\n* builtTime: Long (Parsing and computing of itunes xml data in ms)\n* playlistsForTrack: List[Playlist]\n\n### PlayList\n\nSupport for: \n\nPlaylist ID, Playlist Persistent ID, Parent Persistent ID, Name,\nMaster\", Folder, Visible, Music, Distinguished Kind\n\nMembers:\n\n* data: PlaylistData\n* customValues: Map[String, Any] \n* parent: Option[Playlist]\n* children: List[Playlist]\n\nFunctions:\n\n* trackSet: Set[Track]  (removes duplicate tracks if exist)\n\n* parentName: name of parent playlist (if exist)\n* containsTrackWithId\n\n* totalTime: totalTime of of tracks for this Playlist\n* totalTimeString: formatted totalTime of of tracks for this Playlist\n\n\n### Track\n\nSupport for: \n\nTrack ID, Name, Artist, Album, Composer, Album Artist, Genre, Sample Rate,\nBit Rate, Artwork Count, Total Time Year, Play Count, Play Date, Track Type, Location\n\nMembers:\n\n* data: PlaylistData\n* customValues: Map[String, Any]\n\nFunctions:\n\n* totalTimeString: **3m43s** (formatted total time)\n\n\n\n## Demo\n\n```scala\n\nobject MusicDatabaseApp extends App {\n \n  val path = getClass.getClassLoader.getResource(\"itunes.xml\").getPath\n\n  val lib = MusicLibrary(path)\n\n  lib.playlists.foreach(playlist =\u003e {\n    println(playlist.name + \" : \" + playlist.totalTimeString())\n  })\n\n  lib.tracks.foreach(track =\u003e {\n    println(track.name + \" : \" + track.totalTimeString())\n  })\n\n}\n\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsfxcode%2Fitunes-reader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsfxcode%2Fitunes-reader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsfxcode%2Fitunes-reader/lists"}