Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SoundCloud API v3 Stream not working in Chrome

I have been trying to get this to work for months but it's still not working. It works fine in all browsers except Google Chrome. The problem is audio doesn't stream in Chrome.

Here's a JS fiddle of the most basic example. https://jsfiddle.net/sq23uxqs/

First I include the new javascript SDK

 <script src="https://connect.soundcloud.com/sdk/sdk-3.0.0.js"></script>

Then in my Javascript

 SC.initialize({
            client_id: "78c2f0ffbef212328769a921e5663879"
          });


 SC.stream('/tracks/293').then(function(player){
         player.play();
 });

Does anyone know why this is or is it a problem with the API?

like image 605
Aaron Lumsden Avatar asked Dec 10 '15 13:12

Aaron Lumsden


1 Answers

After investigation it seems to be related to issues with the flash player. Proof is that if you go here chrome://plugins/ and disactivate the flash player it will work again in Chrome. But obviously when developing a site you don't want the site to work just for you.

Soundcloud Api seems to use soundmanager2 as a base to handle audio stream that itself have 2 modes flash and html5. The issue is that if the flash player is avaible it will try to use it and fail while if it's not available it will just use html5 and work right away.

https://github.com/soundcloud/soundcloud-javascript/issues/39

like image 92
Koala7 Avatar answered Sep 29 '22 10:09

Koala7