well it works, thank you !!
but how can I avoid that the user pauses the video?
I can hide the commands:

You can use the WebViewer.WebViewString property to communicate between your app and Javascript code running in the Webviewer page. In the app, you get and set WebViewString. In the WebViewer, you include Javascript that references the window.AppInventor object, using the methods and setWebViewString(text).
For example, if the WebViewer opens to a page that contains the Javascript command
document.write("The answer is" + window.AppInventor.getWebViewString());
and if you set WebView.WebVewString to "hello", then the web page will show
The answer is hello.
And if the Web page contains Javascript that executes the command
window.AppInventor.setWebViewString("hello from Javascript"),
then the value of the WebViewString property will be
hello from Javascript.
I also cannot get the WebViewer to play a video, which could just be me but the same html file does play in the main browser.
Trying to push the limits of App Inventor!
Snippets,
Tutorials and
Extensions from
Pura Vida Apps by
Taifun.
<!DOCTYPE html><html><body> <video width="560" height="320" autoplay loop muted> <source src="MyVideo.mp4" type="video/mp4" /> </video></body></html>