Models for marshalling JSPF playlists

This commit is contained in:
Philipp Wolfer 2023-11-13 23:47:52 +01:00
parent 27685d617a
commit dcb5e9c2c6
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B
7 changed files with 397 additions and 0 deletions

24
backends/jspf/testdata/simple.jspf vendored Normal file
View file

@ -0,0 +1,24 @@
{
"playlist": {
"title": "Two Songs From Thriller",
"creator": "MJ Fan",
"track": [
{
"location": [
"http://example.com/billiejean.mp3"
],
"title": "Billie Jean",
"creator": "Michael Jackson",
"album": "Thriller"
},
{
"location": [
"http://example.com/thegirlismine.mp3"
],
"title": "The Girl Is Mine",
"creator": "Michael Jackson",
"album": "Thriller"
}
]
}
}