Soundcloud widget stop auto-next in playlist - soundcloud

Currently, soundcloud's embeded playlist widget automatically plays the next song in the playlist after the current one finishes. autoplay=false as an url option does not disable this feature. Is there an option to prevent this? Either through the url or api?

There is not currently a way to disable this feature out-of-the-box. There are browser addons that can do what you ask, such as SoundCloud Continuous Play On-Off Switch.
A hacky way to do this with JavaScript would be to find the duration of the track, and when your SoundCloud player hits that time value, jump the scrubber back to the beginning of the track, or call the Pause function. This is outlined in this SO post: Soundcloud HTML5 widget continuous play.

Related

addtoqueue is queueing, but not playing

I'm trying to have deezer add songs to the end of the playlist if it's near the end. So obviously, i'm using the addToQueue method to add a few songs to the end of the list.
So far, great success. However, the songs won't play, or at least not without manual intervention. My playlist will stop playing just before the added songs.
The api brings no solution. next(), play(),... no luck!
And then when i click the song in the player, it starts to play.
so euhm, help.
using latest version of chrome and pretty much the example from github.
We are currently working on an app with the deezer javascript SDK and having the same problem. I'll keep you updated if we find a way to make it work.
One hack we found and are testing right know is to keep an array of tracks in our javascript code, and on the end of a track using playtrack to play the next one.

streaming single audio to one user using wowza and flowplayer

I'm trying to develop a website with a music player in all the pages and music files for the user to select and play. When the user first selects a song in a page it plays as expected and everything is okay. But when he/she opens the website in another tab or window and selects another song it also plays while the other one is still playing.
Is there any way to play only one song even in multiple tabs or windows using wowza media server and flowplayer?
well If you look at how sites such as http://www.reverbnation.com/ do thier music player you will notice that they use a wrapper div that has something similiar to JQUERY's Load(); function. So that the player will stay static and not change its content even if you click on an href. Try looking into this http://api.jquery.com/load/ and it might solve your problem.

Spotify Track List

All!
... I've integrated Spotify in my app using Sample Spotify Examples. I'm able to play track with Spotify's default controller.Now what my problem is: currently I'm able to play only one track. What to do if I want see the entire playlist track?
Thanking You in advance
With the current API, you need to do this yourself. I don't know exactly how you're doing playback, but when the current track ends you should prepare the next track and play it. There's no "play this list" API built-in to CocoaLibSpotify at the moment.

Soundcloud Custom player only for soundcloud?

Is the custom player only for soundcloud mp3's, or is it possible to use the player for any project, like playing your own mp3 files from your server.
Thanks
Pascal
In order to play audio using the Soundcloud player, you have to create a Soundcloud account & upload your music to your "own" account.
But you can actually customize your player if this so happens to be what you mean. By connecting to a Soundcloud API which then returns data from Soundcloud, which then. You use CSS/ to style your output results.
Hope I could help.
It can only work with audio on SoundCloud.

iPhone SDK - check iPod playlist to see whether there is a next track to skip to

Is there a way to inspect the current playlist from MPMusicPlayerController to see whether there is another track to play in the queue?
It's possible to detect this after as skipToNextItem will stop playback and change playbackState, but I want to find out before, so I can disable the skip track function if there are no more tracks to skip on to.
Unfortunately, there does not seem to be a way to do this since MPMusicPlayerController offers no access to its playlist whatsoever. I hope Apple adds this functionality in a future SDK release. You should file a feature request with them.
Oh yes you can, with [MPMediaQuery playlistsQuery]. At least you can find out which playlist that is playing and you can start to play a song title in a playlist. I don't know how to continue to play the next item in the playlist, though.