html5-video

How to play MPEG4 Visual with HTML5 <video>?

I currently use this to play AVC (H.264 or MPEG-4 Part 10) videos. <video controls preload> <source src="xyz.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'> </video> However, that doesn't work for MP4V (MPEG-4 Visual or MPEG-4 Part 2) videos. I tried codecs="mp4v.20.8, mp4a.40.2" but that doesn't seem to work either. Does a...

Counting embedded video plays from an external player

I'm trying to serve videos to my users using an embedded player. My current video provider provides a way of storing the amount of views that a video has, however I want to bring this functionality in house. Is there a way that I can register the 'play' of an embedded flash player (and HTML5 video player)? Perhaps by registering a callba...

HTML5 live video "hack"

Hi, For the last two month I have been trying to "fool" safari into thinking that it's looking at a file on the server, which in fact is a live video stream from a camera encoded and muxed upon request using Gstreamer into a format that is supported by the browser. Since HTML5 supports progressive video downloads this should at least be...

missing html5 video "ended" event on iPad

Hello all - Sometimes my HTML5 video does not generate an "ended" event on the iPad. Seems only to happen when I omit the "controls" attribute and start playback from javascript. It usually works fine the first time, but the second time the video plays out but does not generate an "ended" event. I do call "load()" after each playback...

iPad HTML5 Video element not displaying poster

I'm building an iPad app that loads information dynamically via XML, some of which is displayed in video tags. The tags themselves work properly and the video can load and play, but for some reason, the iPad doesn't want to render the poster attributes for the videos. However, once I play any of the videos, all of a sudden all of the p...

Can you display HTML5 <video> as a full screen background?

How can you display HTML5 <video> as a full screen background to your website? Similar to this Flash site demo... http://activeden.net/item/full-screen-video-background-template-v2/full_screen_preview/29617 ...

How do I play 2 videos in HTML5 back to back

Hi I wish to use html5 to play 2 different videos back to back. Is there a way to do this within the html5 or do I have to take a javascript route & if so can anyone make any suggestions Thanks ...

Mp4 video won't play in the iPad

Good day, I've been working on this project and learning how to place a video on the ipad, and all the other browsers. But after writing the code for this, I noticed that the only thing I get from the iPad is the first keyframe of the video, but the video is not playing. When I press the "Play" button that appears in that screen of the...

I can not reproduce html5-video on a site

On the local server of html5-video is reproduced in all browsers, but on the fighting web server refuses to be reproduced <video controls width="640" height="360" autoplay="true"> <source src="video.ogv" type="video/ogg" /> <source src="video.mp4" type="video/mp4" /> </video> ...

Play a local video from iPad in an HTML 5 webpage

Hi, Does anyone know if you can use the HTML5 video tag to play a video from the iPad library? Something like: <source src="/local/path/video.mp4" type="video/mp4" /> Thanks for your time ...

Callback functions from kaltura html5 video

Can anybody help me how to call video callback functions from kaltura html5 video player. ...

What is a good peer-to-peer video service to embed in my website?

I'm developing a website in ASP.NET and would like to have a video service that is peer-to-peer. Basically users schedule peer to peer video meetings with each other and they enter a video chat room for their sessions. What is out there? I've looked at oovoo, how easy and scalable is it? I don't mind a paid solution either, as long as ...

rotating DIV tags pending on position of Video progress (HTML5 player)

Hi We produced a moodle (Virtual Learning Environment) plugin for deaf students that shows video on the right and text belonging to the video on the left. The next step is to tag the video in such a way that the text changes pending on the progress of the video. We would like to do this using an HTML5 Player such as VideoJS. Any ideas ...

What is a good video+soundplayer with flash and html5-support?

I need a audio and videoplayer that is usable both in non flash-browsers (such as iphone-safari) and in non html5-video-enabled browser (such as all old browsers) Apart from this clean asthetics(think vimeo), support for many codec-types and easyness to implement are all bonuses. Free or paid doesn't matter! ...

How to set video to play on all major browsers on windows and mac and andoid and iOS devices?

We have a requirement to create video demo of certain products. What is the best way to make sure that video plays on maximum possible browsers on all popular platforms? Current implementation we just have flash videos that load in a flash player. ...

Video encoding for websites

Hello, I am a little new to embedding videos on a website. What is the best way to go about it? I just started reading up on it. I read that I should use HTML5 and the browser's native player. -- Does anyone know of a javascript library that will use the browser's player and detect if the browser is not using HTML5 to downgrade to a f...

HTML5 with Web Services

Now the case, I want to develop a iPhone apps/web apps using Phonegap. Ok, imagine the app can do all sort of thing include data processing, transaction, login, video streaming, display data from the web services, so to do this I need use JavaScript (Ajax) to call the web services, then only put it into the HTML? HTML5 now come with sup...

How to control HTML5 video with javascript ?

Hi,I've searched so much about HTML5 video control and I'm stuck at controlling video with javascript.There is a rule in application you should know. There will not be any user interaction with browser at any time. What I'm trying to achieve is 1) Open video as fullscreen and play video 2) When video is ended,close video and video wil...

scale HTML5 Video and break aspect ratio to fill whole site

I want to use a 4:3 video as a background on a site, but setting the width and height to 100% doesnt work, since the aspect ratio is kept intact, so the video doesnt fill the whole width of the site. thanks for your help! here is my html and css code html: <!DOCTYPE HTML> <html land="en"> <head> <link rel="stylesheet" type="text/cs...

HTML5 video player prevent seeking

I'm creating a series of video tutorials and would like to prevent users from seeking forward and skipping sections. I'll be using an HTML5 video player that will be used for desktop and iPad browsers. Ideally, I'd like this to work on the iPhone as well, but I realize you have no control over the video on the phone since it uses the i...