angular-soundmanager2 icon indicating copy to clipboard operation
angular-soundmanager2 copied to clipboard

SoundManager2 Music Player for AngularJs

Results 42 angular-soundmanager2 issues
Sort by recently updated
recently updated
newest added

Is 360 Player going to be involved in this? http://www.schillmania.com/projects/soundmanager2/demo/360-player/canvas-visualization.html

This error occurs when `angularPlayer` service is used and `soundManager` directive exists on the page. Example: 1. Call `angularPlayer.addTrack` inside `ng-click` event handler. _Note: Every `ng-something` handler is executed in...

Hi I tried using angular-soundmanager2 for playing Icecast Stream. Its showing the error "Media resource http://192.64.83.67:8000/airtime_128 could not be decoded", where http://192.64.83.67:8000/airtime_128 is my icecast stream url. Can you check...

First of all thanks for all your effort in writing this angular wrapper! There are two things that might be helpfull to implement in my opinion. First change scope.$apply in...

Hi, I made a tiny change to get "autoLoad" field from track object. I check value is a boolean and have "true" value, and onlyif answer is true, I change...

Decrease code redundancy by shifting changeVolume function to API. This makes change of global volume variable possible: ``` js angular.module('myApp') .controller('myCtrl', ['$scope', 'angularPlayer', function($scope, angularPlayer){ angularPlayer.changeVolume(25); }]); ```

In iOS browser, when a track is playing and I add a second track to the playlist, the first track stops playing. It works correctly in desktop chrome, but not...

Hi ! First of all thanks for such a great module! I noticed that the angularPlayer service init function is defined as follows ``` ngSoundManager.factory('angularPlayer', ['$rootScope', function($rootScope) { var currentTrack...