Video Player Feedback

In Video Player , When I try To Load A Video From Web , Then while i play the video it the video gets loaded automatically full . But i want it to load till next 10 Sec of the current play .
If any one have any other option then please inform
or No then please add in MIT App Inventor

Stream player (Video and Audio) Extension by Kus Zab

Any Other Way ?

Use webviewer and HTML 5 video tags ?

Please Tell Me In Detail
I am Noob

<html>
<body>
<video controls preload="auto">
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  Your browser does not support the video tag.
</video>
</body>
</html>
1 Like

Will it only load to 10 sec of current play

preload auto is the best you can hope for inside the webviewer, seems to do what it thinks is best. But should allow playback without downloading the entire video.

Why is 10 seconds important ?

1 Like

What does auto load means
is it means it will load as it play

An How to Load Html In Webview ?

Learn about html5 video:

The url requirements will be changing soon with the release of App Inventor n185

1 Like

I want the what should be the Url ?

Will This work ?

Note that the URL change is a strict superset of the existing functionality. Any apps that use file:///android_asset/ or reference the file on the storage partition will continue to work. The goal of the change is to provide a URL format that unifies the various paths and is companion and Android version aware.

Pleased to hear it Evan :+1:, that will save a lot of retro repairs :wink:

I do not think so, try like this:

full url

data: text/html, 
<html> 
<body> 
<video  width="320" height="240"controls preload="auto">   
<source src="
<tbVideoUrl.Text HERE>
" type="video/webm">  
Your browser does not support the video tag. 
</video> 
</body> 
</html>
1 Like

Can You Tell Me How To FIll Parent the video frame

https://easyhtml5video.com/help/how-to-add-html5-video-fullscreen-21.html

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.