Most voted "videojs" questions
Videojs is an open-source Javascript framework for embedding and working with HTML5 and Flash video. It uses the HTML5 video tag as an embed code and has a common HTML / CSS cover and API for HTML5 and Flash.
Learn more…6 questions
Sort by count of
-
8
votes1
answer5807
viewsHow to create a new. M3U file correctly? (Since I already have streaming .TS)
I’m starting to study to make an online teaching site (live video), but the examples I’m using from the internet are giving me the most varied errors, as the example I use... In this example, he is…
-
2
votes2
answers7653
viewsHow to put a video to open in fullscreen automatically in an HTML page?
Apparently for a video to stay on fullscreen there needs to be user interaction. Most players, including the native HTML5 has button 'fullscreen'. I’m building an interactive platform offline, and I…
-
0
votes1
answer59
viewsHow to set Videojs size by percentage
I would like to define the size of Videojs as for example 40% equal if defined by CSS, and that when the browser size is changed, it adapts the new percentages. So far I have it <div…
-
0
votes0
answers29
viewsVideojs ASS does not work on pages with Rewriterule
I use RewriteRule (.*) /index.php [QSA,L] and to manage the Urls use this code: <?php $url = ltrim( parse_url( $_SERVER['REQUEST_URI'] , PHP_URL_PATH ) , '/' ); $url = explode( '/' , $url );…
-
0
votes1
answer272
viewsCreate a video by javascript
I tried to create a video on my page that is generated by clicking the button through javascript, as follows in the code: function tocar_video(mysrc){ var video = document.createElement('video');…
-
-2
votes1
answer128
viewsStart video from where you left off - resume video from where you left off - website
How do I keep the current progress of a video saved, even when updating or leaving the page? The video is on the page with this simple code: < div class="embed-Responsive embed-Responsive-16by9"…