videogular

Controls font/symbols missing - videogular

我是研究僧i 提交于 2020-03-26 06:27:20
问题 I ran into a a problem with videogular controls. I must be missing some step in the installation process. I guess I need to include some symbols font, but have no idea where to find it and how to include it. The controls appear to have no images/symbols/fonts - instead I get empty rectangles (don't have enough of reputation here to post a screenshot). Here are the included files: "/js/Vendors/videogular/videogular.min.js", "/js/Vendors/videogular/vg-controls.min.js", "/js/Vendors/videogular

Videogular Player shows filmstrips on Android-Smartphone

安稳与你 提交于 2019-12-13 01:24:50
问题 I am in the final steps on my first Ionic-App and I am using the videogular-player. So far everything works fine but I see a strange bug/feature on my Samsung S5 mini android phone. everytime I am opening my "MediaPlayer-Player"-page, where the videogular-player is integrated I see this strange filmstrips-picture in the background. Also I got an overlay-play not from videogular. For a test I hide every videogular-plugin like poster and overlayplay and I still see this picture. Does anybody

videogular crops video rather than resizing

人盡茶涼 提交于 2019-12-11 17:34:07
问题 I have a video with original size 1920x1080. I am using the css from the basic set up tutorial, but tried setting the default height in css to 1080: .videogular-container { width: 100%; height: 1080px; margin: auto; overflow: hidden; } @media (min-width: 1200px) { .videogular-container { width: 1170px; height: 658.125px; } } @media (min-width: 992px) and (max-width: 1199px) { .videogular-container { width: 940px; height: 528.75px; } } @media (min-width: 768px) and (max-width: 991px) {

Videogular - how to play given video file on div ng-click?

浪尽此生 提交于 2019-12-11 11:06:40
问题 I have a list of items and and would like to after the ng-click on selected item play videofile with given URL. It means that player instance for view should be hidden and after the click on the list item should be played given video file in fullscreen, loop and without sounds. How can i do it please? I tried to to do via API.play() method from: http://www.videogular.com/tutorials/videogular-api/ But without the luck. Many thanks for any advice. 回答1: You can use API.toggleFullScreen() method.

Angular - 404 (Not Found) when loading async data from endpoint

好久不见. 提交于 2019-12-11 11:06:26
问题 I keep getting an 404 error on my media player as the "sermon.fileName" property is made available after the component loads on screen. How can I work around this? sermon.component.ts import { Component, OnInit, ChangeDetectorRef, AfterViewChecked } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { ApiProvider } from '../../providers/api/api'; import { Breakpoints, BreakpointState, BreakpointObserver } from '@angular/cdk/layout'; import { Observable } from 'rxjs

Html5, chuncked video streaming

假如想象 提交于 2019-12-11 04:51:04
问题 My html-video calls multiple separate request for chunks. seems not like single stream. When I see that in debugging tools, As you see, there are 3 different call. This is the request header, Accept:*/* Accept-Encoding:identity;q=1, *;q=0 Accept-Language:ja-JP,en-US;q=0.8 Connection:keep-alive Cookie:stg_domain_token=oNijQNByftcYnsLGzFZxRyCesLR-GdWKi6a-uKSJJ9060Yk8pwCiUlcHChyf Host:stg.myhost.com Range:bytes=32768- User-Agent:Mozilla/5.0 (Linux; Android 6.0.1; SC-05G Build/MMB29K; wv)

stop other video that is playing in background on play the new one

半城伤御伤魂 提交于 2019-11-28 02:13:34
I am using Videogular to show video. could you please help me how to stop/pause other video when user click on play button to new one. So by this at a time user can play only one video at a time. The system should automatically stop other video that is playing in background and play the new one Thanks You can get all the APIs separately for each player and listen for a change in the state: <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> In you

stop other video that is playing in background on play the new one

为君一笑 提交于 2019-11-26 22:10:01
问题 I am using Videogular to show video. could you please help me how to stop/pause other video when user click on play button to new one. So by this at a time user can play only one video at a time. The system should automatically stop other video that is playing in background and play the new one Thanks 回答1: You can get all the APIs separately for each player and listen for a change in the state: <videogular ng-repeat="config in ctrl.videoConfigs" vg-player-ready="ctrl.onPlayerReady($API,