I use direct streams to play radio on my google home speaker but I don’t get any song or artist info. I would like scrape this website Guldkanalen – MUSIK FÖR VUXNA ÖRON - I LIKE RADIO to get the info.
I don’t have any experience with scrapers before so I’m not sure how to do. I have tried to follow two guides from the community:
When trying these sensors
- platform: scrape
resource: https://www.ilikeradio.se/guldkanalen/
name: Guldkanalen_track
select: 'span[class="player-audio-content-title-content"]'
value_template: '{{ value | title }}'
- platform: scrape
resource: https://www.ilikeradio.se/guldkanalen/
name: Guldkanalen_artist
select: 'span[class="player-audio-content-desc"]'
value_template: '{{ value | title }}'
- platform: scrape
name: Guldkanalen_song
resource: https://www.ilikeradio.se/guldkanalen/
select: ".entry-content > div:nth-child(2) > div > span.player-audio-content-title-content"
- platform: scrape
name: Guldkanalen_singer
resource: https://www.ilikeradio.se/guldkanalen/
select: ".entry-content > div:nth-child(2) > div > span.player-audio-content-desc"
I get this result
Is it possible to do this or is there another method?