app.controller('playerCtrl', function($scope, AudioService){ $scope.playSong = function(){ AudioService.load(16666); } $scope.stopSong = function(){ AudioService.stop(); } });