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