私はIonic
を使用してアプリケーションを開発しており、ユーザーがビデオをアップロードできるようにしています。だからビデオを再生するために私はVideogular
ライブラリを統合しました。ビデオ:動的にビデオを追加できません
コントローラコード
$scope.videoAPI = null;
$scope.config = {
playsInline: false,
preload: "auto",
autoHide: false,
autoHideTime: 3000,
autoPlay: true,
sources: [],
theme: "lib/videogular-themes-default/videogular.css",
plugins: {
poster: "http://www.videogular.com/assets/images/videogular.png"
}
};
$scope.onPlayerReady = function(api) {
console.log('onPlayerReady : : ', api);
$scope.videoAPI = api;
}
$scope.uploadVideo = function() {
if (!deviceType) {
$('#fileSelect').val('').click();
} else {
console.info('Uploading Video..');
MediaService.browseVideo().then(function(uploadResponse) {
console.info('video uploadResponse : : ', uploadResponse);
var response = JSON.parse(uploadResponse.response);
var videoUrl = response.url.video[0].location;
//Here I'm Dyncamically setting the URL of my video
$scope.config.sources.push({
src: $sce.trustAsResourceUrl(videoUrl),
type: 'video/mp4'
});
console.info('Video Uploaded..');
}).catch(function(error) {
console.warn('Error while fetching video ', error);
$scope.showAlert('Video Upload', error);
});
}
};
アップロードする動画$scope.config.sources
が正しく更新されている間。しかし、私はDOMを検査するとき、私はビデオを得ることはありませんthere..Hereは、だから私はこの仕事をするために何をすべき
スクリーンショットのですか?
私は約束を解決するために '$ q'を使用しています。すでに' $ scope。$ apply() 'は' $ digest already in progress'というエラーを投げていました。 – Ricky