こんにちは、私は初めてビデオグラファーをセットアップしようとしています。自動再生設定を true に設定しようとすると、エラーがスローされます。
ReferenceError: VG_UTILS is not defined
at videogular.js:506
at angular.js:16210
at completeOutstandingRequest (angular.js:4902)
at angular.js:5282
私のコントローラー:
angular.module('app')
.controller('SectionVideoCtrl', ['$rootScope', '$scope', '$element', '$sce', function ($rootScope, $scope, $element, $sce) {
var _API = null;
$scope.stretchModes = [
{label: "None", value: "none"},
{label: "Fit", value: "fit"},
{label: "Fill", value: "fill"}
];
this.config = {
sources: [
{src: $sce.trustAsResourceUrl("video/" + "footy" + ".mp4"), type: "video/mp4"},
{src: $sce.trustAsResourceUrl("video/" + "footy" + ".webm"), type: "video/webm"},
{src: $sce.trustAsResourceUrl("video/" + "footy" + ".ogg"), type: "video/ogg"}
],
width: 640,
height: 360,
responsive: true,
autoPlay: true,
stretch: $scope.stretchModes[2],
theme: "css/plugins/videogular.min.css"
};
}]);
モジュールにロードされたすべてのもの:
angular
.module('app', [
'ngRoute',
"ngSanitize",
"com.2fdevs.videogular",
"com.2fdevs.videogular.plugins.controls",
"com.2fdevs.videogular.plugins.overlayplay",
"com.2fdevs.videogular.plugins.buffering",
"com.2fdevs.videogular.plugins.poster"
])
そしてHTML:
<videogular vg-player-ready="controller.onPlayerReady($API)" vg-width="controller.config.width" vg-theme="controller.config.theme.url" vg-auto-play="controller.config.autoPlay">
<vg-media vg-src="controller.config.sources" vg-native-controls="false">
<video preload='metadata'></video>
</vg-media>
</videogular>
私が見落としているものはありますか?自分が何を間違えたのか本当にわかりません。