我是Spotify SDK的新手。
我刚刚实施了auth
,login
并获得了一些跟踪URI。这样可行。
但是,我无法找到当前正在播放的重置或清除音乐队列。
我认为[SPTAudioStreamingController queueURIs: clearQueue: callback:];
是我需要的。
然而,在我的SDK beta6和iOS8环境中,它只是将曲目添加到队列的末尾,并且永远不会清除当前队列。
//Reset current queue and replace it with new URIs?
[self.player queueURIs:uris clearQueue:YES callback:nil];
我错过了什么吗?
答案 0 :(得分:0)
您可以简单地使用另一个功能,该功能会替换给定的所有播放曲目。
//setting up the hub
Process.Start("cmd.exe", "/C java -jar selenium-server-standalone-2.47.1.jar -role hub");
//setting up the node
string Command1 = "/C cmdkey.exe /add:\\DES100 /user:abcd /pass:abcd123";
string Command2 = "psexec.exe \\DES100 -w D:\\Selenium java -Dwebdriver.chrome.driver=D:\\chromedriver.exe -jar selenium-server-standalone-2.47.1.jar -role node -hub http://hubip:4444/grid/register";
Process.Start("cmd.exe", string.Format("{0} && {1}", Command1, Command2));
//open the browser
//ERROR AT BELOW LINE
IWebDriver NewDriver = new RemoteWebDriver(new Uri("http://100.100.10.100:5555/wd/hub"), DesiredCapabilities.Chrome(),TimeSpan.FromSeconds(180));