Lines Matching refs:player

3546 		_addAuroraEventListeners : function(player, entity) {  argument
3550 player.volume = this.options.volume * 100;
3556 player.on("progress", function() {
3561 self._getAuroraStatus(player);
3565 if (player.duration > 0) {
3570 player.on("ready", function() {
3575 player.on("duration", function() {
3577 self._getAuroraStatus(player);
3582 player.on("end", function() {
3586 self._getAuroraStatus(player, true);
3591 player.on("error", function() {
3657 _getAuroraStatus: function(player, override) { argument
3660 this.status.duration = player.duration / 1000;
3662 ct = player.currentTime / 1000;
3664 if(player.buffered > 0) {
3665 …sp = (this.status.duration > 0) ? (player.buffered * this.status.duration) / this.status.duration …
3666 cpr = (this.status.duration > 0) ? ct / (player.buffered * this.status.duration) : 0;
5156 this.aurora.player = new AV.Player.fromURL(this.status.src);
5157 this._addAuroraEventListeners(this.aurora.player, this.aurora);
5165 if (this.aurora.player) {
5166 this.aurora.player.stop();
5175 this.aurora.player.preload();
5181 this.aurora.player.seek(time);
5184 if (!this.aurora.player.playing) {
5185 this.aurora.player.play();
5196 this.aurora.player.seek(time * 1000);
5198 this.aurora.player.pause();
5209 if(this.aurora.player.duration > 0) {
5211 this.aurora.player.seek(percent * this.aurora.player.duration / 100); // Using seconds
5224 this.aurora.player.volume = v * 100;
5228 this.aurora.properties.lastvolume = this.aurora.player.volume;
5229 this.aurora.player.volume = 0;
5231 this.aurora.player.volume = this.aurora.properties.lastvolume;