How to add video to html page ?

Kubber

I have a 15mb video file I want to be played on my website.

I wonder if I use video html5 tag will this file be downloaded before playing or will it stream?

What is the best way to serve videos nowadays - without putting it into youtube or installing own media server like wowza?

user3009138
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>

Here is a quick help -> http://www.w3schools.com/html/html5_video.asp And Yes html5 player will work for you

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to add background video to html page?

From Dev

How to embed DailyMotion video on local html page?

From Dev

How to add javascript to HTML Page?

From Dev

How to add Youtube video in the background of HTML section

From Dev

How to add html styling in html page in python

From Dev

How to add html styling in html page in python

From Dev

Embed video in HTML page

From Dev

How to add html page to another html page by using object tag?

From Dev

How to add HTML headers and footers to a page?

From Dev

How to add a picture in html page in Spring application

From Dev

How to add blank HTML page to Magento?

From Dev

How to add jQuery code into HTML Page

From Dev

How to add a bottom toolbar in an html page

From Dev

How to add a picture in html page in Spring application

From Dev

How to add a bottom toolbar in an html page

From Dev

How to add div field dynamically in to a html page?

From Dev

How can I add an html page into wordpress?

From Dev

How to add HTML page to React application

From Dev

How to create an HTML 5 Landing Page w/ Video Background

From Dev

How can I add buffering to my HTML video

From Dev

How to Add HTML5 Video controls dynamically

From Dev

How to add video to doxygen-generated html file

From Dev

Backbone: how can i add event for html5 video?

From Dev

how to add skin to a video element in html5

From Dev

how can i add this to my html page with jquery html()?

From Dev

Add HTML page in Laravel

From Dev

How to add custom HTML on user profile page in Drupal 8?

From Dev

how to create button dynamically and add the onclick event for html page

From Dev

How could I add a header to a HTML page via CSS?

Related Related

HotTag

Archive