Not sure if this is repeatable but it looks like you'll need a plugin to
automate or a script to create a m3u playlist.

Using Browser debugging console to log the page loading and looking at
network tab.

The "interesting" fetch is
https://dinosaurdracula.com/halloweenjukebox/wimpy.php

Used console to create a curl command and added output to a file called
wimpy.gz

curl 'https://dinosaurdracula.com/halloweenjukebox/wimpy.php' -H
'User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:105.0)
Gecko/20100101 Firefox/105.0' -H 'Accept: */*' -H 'Accept-Language:
en-GB,en;q=0.5' -H 'Accept-Encoding: gzip, deflate, br' -H 'Referer:
https://dinosaurdracula.com/halloweenjukebox/wimpy.iframe.html?skin=%2Fhalloweenjukebox%2Fwimpy.skins%2F104_c.tsv&coverArt=https%3A%2F%2Fdinosaurdracula.com%2Fwp-content%2Fuploads%2F2019%2F07%2F5-2.jpg&startUpText=Dino%20Drac%27s%20Halloween%20Jukebox!&sort=title&loop=2&glyphFile=a'
-H 'DNT: 1' -H 'Connection: keep-alive' -H 'Sec-Fetch-Dest: empty' -H
'Sec-Fetch-Mode: cors' -H 'Sec-Fetch-Site: same-origin' -H 'Pragma:
no-cache' -H 'Cache-Control: no-cache' -H 'TE: trailers' --output
wimpy.gz

The file returned is gz'ipped - so it need to be unzipped..  It si a an
XML list of the playlist.
Snippet below.
The <file> needs to changed into a playable URL whic hare of thw form
https://dinosaurdracula.com/halloweenjukebox/001 - Oingo Boingo - Dead
Man's Party.mp3


Code:
--------------------
    
  <?xml version="1.0" encoding="UTF-8"?><playlist 
image="/halloweenjukebox/coverart.jpg">
  <item>
  <date>1662395067</date>
  <file>/halloweenjukebox/216 - Jim Manzie - The Way of All Flesh.mp3</file>
  <kind>mp3</kind>
  <title>216 - Jim Manzie - The Way of All Flesh</title>
  <image>/halloweenjukebox/coverart.jpg</image>
  </item>
  <item>
  <date>1662395078</date>
  <file>/halloweenjukebox/221 - RHPS - Time Warp.mp3</file>
  <kind>mp3</kind>
  <title>221 - RHPS - Time Warp</title>
  <image>/halloweenjukebox/coverart.jpg</image>
  </item>
  <item>
  .
  .
  <date>1662394596</date>
  <file>/halloweenjukebox/001 - Oingo Boingo - Dead Man&apos;s Party.mp3</file>
  <kind>mp3</kind>
  <title>001 - Oingo Boingo - Dead Man&apos;s Party</title>
  <image>/halloweenjukebox/coverart.jpg</image>
  </item>
  .
  .
  
  </playlist>
  
--------------------


------------------------------------------------------------------------
bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=116822

_______________________________________________
Squeezecenter mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/squeezecenter

Reply via email to