@Russ Thanks for your reply!! Yes, its really a bummer. I dont know why they change that. Im going to test your .bat, thanks you again.
Posts made by Santiago
-
RE: Play spotify song with cmd in a particular minute. (Code and Help to Fix)
-
Play spotify song with cmd in a particular minute. (Code and Help to Fix)
Hi everybody.
Searching the internet, I have achieved that through cmd I can run spotify and then play a specific song in a specific minute.The VB Script code is:
Set WshShell = WScript.CreateObject("WScript.Shell")
Comandline = "C:...\Spotify.exe"
WScript.sleep 50
CreateObject("WScript.Shell").Run("spotify:track:09mEdoA6zrmBPgTEN5qXmN#0:52")
WScript.sleep 50This (#0:52) is what specified when in the song to start playing it. But now that the spotify interface has been updated it doesn't work anymore.
Still open spotify and plays the selected song, but not in the minute that I specify.Does anyone know how I can fix it?
(PS: I hope the code helps someone to be able to play songs from spotify)