我正在使用 Videogular 来显示视频。当用户点击播放按钮到新视频时,你能帮我如何停止/暂停其他视频吗?因此,用户一次只能播放一个视频。
系统应自动停止正在后台播放的其他视频并播放新视频
谢谢
我正在使用 Videogular 来显示视频。当用户点击播放按钮到新视频时,你能帮我如何停止/暂停其他视频吗?因此,用户一次只能播放一个视频。
系统应自动停止正在后台播放的其他视频并播放新视频
谢谢
您可以分别获取每个播放器的所有 API 并监听状态的变化:
<videogular ng-repeat="config in ctrl.videoConfigs" vg-player-ready="ctrl.onPlayerReady($API, $index)" vg-update-state="ctrl.onUpdateState($state, $index)">
<!-- other plugins here -->
</videogular>
在你的控制器中:
'use strict';
angular.module('myApp').controller('MainCtrl',
function ($sce) {
// this.videoConfigs should have different configs for each player...
this.players = [];
this.onPlayerReady = function (API, index) {
this.players[index] = API;
};
this.onUpdateState = function (state, index) {
if (state === 'play') {
// pause other players
for (var i=0, l=this.players.length; i<l; i++) {
if (i !== index) {
this.players[i].pause();
}
}
}
};
}
);
虽然来自 elecash 的答案是一个很好的答案,但有很多猜测和存储。我选择仅在 $rootScope 上存储活动 api,并在新播放器启动时暂停另一个播放器。
<videogular vg-player-ready="playerReady($API)" vg-update-state="stateChange($state)">
</videogular>
controller('VideoPlayerCtrl', ['$rootScope','$scope', function($rootScope,$scope) {
$scope.playerReady = function(api) {
$scope.api = api;
};
$scope.stateChange = function(state) {
if(state=='play') {
if($rootScope.playingVideo && $rootScope.playingVideo != $scope.api) $rootScope.playingVideo.pause();
$rootScope.playingVideo = $scope.api;
}
};
}]);