html5-video

seek to a point in html5 video

穿精又带淫゛_ 提交于 2019-11-27 03:02:48
问题 Is it possible to seek to a particular point in html5 video displayed in a web page? I mean ,can I input a particular time value (say 01:20:30:045 ) and have the player control (slider) move to that point and play from that point onwards? In older version of mozilla vlcplugin I think this is possible by seek(seconds,is_relative) method..but I would like to know if this is possible in html video. Edit: I created the page with video and added javascript as below.When I click on the link ,it

HTML5 <video> callbacks?

痞子三分冷 提交于 2019-11-27 02:54:21
I'm working on a site for a client and they're insistent on using HTML5's video tag as the delivery method for some of their video content. I currently have it up and running with a little help from http://videojs.com/ to handle the Internet Explorer Flash fallback. One thing they've asked me to do is, after the videos finish playing (they're all a different length), fade them out and then fade a picture in place of the video --- think of it like a poster frame after the video. Is this even possible? Can you get the timecode of a currently playing movie via Javascript or some other method? I

Why HTML5 video doesn't play in IOS 8 WebApp(webview)?

纵然是瞬间 提交于 2019-11-27 02:51:33
Simple HTML5 video plays on safari browser. but after adding it to home screen(Standalone WebApp), it doesn't work. It is working on iOS7 but stopped working on iOS8. <!DOCTYPE html> <head> <meta charset="utf-8"> <meta name="apple-mobile-web-app-capable" content="yes" /> <title>HTML5 Video Standalone Test</title> <style> body{ margin:0; } </style> </head> <body> <video src="http://www.jplayer.org/video/m4v/Big_Buck_Bunny_Trailer_480x270_h264aac.m4v" autoplay="autoplay" controls="true" webkit-playsinline /> </body> </html> Please help. Is there any solution for this? Video playback is broken on

HTML5 live streaming

淺唱寂寞╮ 提交于 2019-11-27 02:49:39
For school I need to set up an HTML5 live stream site. They have a flash stream-player they've been using but now they want it to use HTML5 instead. How can I do this? I tried using the video tag but I can't get it working. Below is the code I have. Could someone point me in the correct direction? <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Deltion Live Streaming</title> <script language="javascript" type="text/javascript" src="../swfobject.js"></script> </head> <body> <video id="movie" width="460" height="306" preload

video as site background? HTML 5

杀马特。学长 韩版系。学妹 提交于 2019-11-27 02:48:45
I want to use a video as a background instead of an image that automatically stretches to the whole screen (background). I would also like to rotate videos and images.. so that there is a random video/image displayed in any order. It would also be nice to know how to delay video playback, so that the video only plays once 30 seconds after the site loaded. thx! sydlawrence Take a look at my jquery videoBG plugin http://syddev.com/jquery.videoBG/ Make any HTML5 video a site background... has an image fallback for browsers that don't support html5 Really easy to use Let me know if you need any

Streaming mp4 with vlc to html browser

落爺英雄遲暮 提交于 2019-11-27 02:14:09
问题 I have problems streaming my webcam picture (without sound) to a html page. I'm using the latest (v2.0.2 vlc for windows) for streaming, here's the command line: "c:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -I dummy dshow:// --dshow-vdev="Logitech QuickCam Chat" --dshow-adev=none --dshow-caching=0 --sout=#transcode{vcodec=h264,vb=1024,channels=1,ab=128,samplerate=44100,width=320}:http{mux=ts,dst=:8080/webcam.mp4} when I open the stream in another vlc player (http://127.0.0.1:8080/webcam.mp4)

How do I get a HTML5 Video to work using IE10

青春壹個敷衍的年華 提交于 2019-11-27 02:08:57
I am hoping someone has an idea on what I can do to help me play HTML5 videos on my local intranet. My Web server= Windows Server 2008 R2 Standard 64bit IIS version= IIS7 Test User environment = Windows 7 Enterprise Video plays perfectly using 'Google Chrome' Video fails to play using 'IE10' My html code is as follows: <!DOCTYPE html> <html> <body> <video src="AccReadings.mp4" width="400" height="300" preload controls> </video> </body> </html> My test machine using IE10 does play HTML5Rocks video ' http://craftymind.com/factory/html5video/CanvasVideo.html ' Regards, Chris Adamy Make sure you

Mobile Safari: link (<a>) element over video element does not work on click

送分小仙女□ 提交于 2019-11-27 01:51:18
问题 my current project is a html website that contains a dropdown menu (javascript/jquery) and a html5 videoplayer (video-tag only). When clicking on a menu entry, the dropdown submenu overlays the videoplayer container (z-index of dropdown is higher than of videoplayer). In Safari and Chrome the links of the submenu entries work properly on click, but in Mobile Safari on iPad they do not react. To reduce the problem, my minimal example includes a link element that overlays a video element. <head

chrome could play html5 mp4 video but html5test said chrome did not support mp4 video codec

浪子不回头ぞ 提交于 2019-11-27 01:46:44
According to html5test.com , chrome does not support html5 mp4 video (see following link). http://html5test.com/compare/feature/video-mpeg4.html However, in this test page , the mp4 video could be played successfully by setting the body as following: <!DOCTYPE html> <html> <body> <video width="320" height="240" controls="controls"> <source src="movie.mp4" type="video/mp4" /> Your browser does not support the video tag. </video> </body> </html> How can I interpret this correctly? .mp4 is just a container format ( MPEG-4 Part 14 ), the video and audio formats under .mp4 file can be varied. For

HTML5 offline video caching in mobile safari

我只是一个虾纸丫 提交于 2019-11-27 01:38:10
问题 I can't seem to get Safari on the iPhone or iPad to offline cache videos. Everything else gets cached just fine when I go offline. The video file is obviously in the manifest, but I just get the broken arrow. Works fine in Safari desktop. Any clues? I've tried both object embed and the video tags. 回答1: Sadly there’s a ~5 MB limit on offline cache in Mobile Safari. Not much you can do about it. 回答2: See these two articles for mobile browser cache limits (note that the second one adds vital