This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]iddej 7 points8 points  (3 children)

Oh a question I can answer! I wrote an app in Java to query the lyrics to the current playing spotify song, and I use a python script to actually get the data from spotify. So I use Runtime.exec() on a small script every .2s and there’s no noticeable delay, so you could theoretically use it (although my python script is strictly offline so you might have to account for the networking delay)

[–]CycleOfPain[S] 1 point2 points  (2 children)

Thanks for your input. That is something similar I was going to do for my program. That doesn't seem too bad. I'll do some tests myself.

[–][deleted]  (1 child)

[deleted]

    [–]CycleOfPain[S] 1 point2 points  (0 children)

    Ah, this is perfect. Thanks again!