MatthiasLienhard / flowkey_dl

helper to create sheet music from flowkey songs
MIT License
71 stars 15 forks source link

/sheets/... no longer available? #34

Closed Kaipert7 closed 11 months ago

Kaipert7 commented 11 months ago

grafik

I no longer see the entry where I could load the link for the app. I tried different browsers and also older versions. The /sheets/ ... directory cannot be found. Has Flowkey adjusted something so that the download is no longer possible?

hannah-jj commented 11 months ago

This is true for all news songs recently posted. You can get the image url programmatically too. Try these commands in the console of the web browser:

var img = document.querySelector("div.sheet-image");
var imgUrl = img.style.backgroundImage.slice(4, -1).replace(/"/g, "");
console.log(imgUrl);

Screenshot 2023-12-10 at 10 24 46 AM

Same issue as reported here - https://github.com/MatthiasLienhard/flowkey_dl/issues/33

Kaipert7 commented 11 months ago

Hi Hannah, thanks for the Information. Frank

MatthiasLienhard commented 11 months ago

Thats cool! I updated the readme file.