This post is kind of a follow up to a post I made earlier in regards to HTML5 video callbacks. In that thread, I was given a great piece of code that would allow for the browser to be informed of when the video stops playing and then fire off an action (with jQuery). This is the code I'm currently using:
$('video.normal').bind('ended', ...
Is there any movie that actually works in iPhone/iPad safari using the video tag? We tried so many formats and code snippets. I've heard that mp4/h264 should work, but not for us.
Can anyone point me to a working example online?
If you know the code or specs/formats for the videotag on iphone, that would be great.
Update:
Here is a l...
I am trying to load a video from the web, but am having trouble getting it to appear in QuickTime. I can only hear the audio. I would like it to launch QuickTime.
- (void)loadView {
NSURL *movieURL = [NSURL URLWithString:@"http://movies.apple.com/media/us/mac/getamac/2009/apple-mvp-biohazard_suit-us-20090419_480x272.mov"];
if ...
I have an iPhone/iPad app that has to offer video on demand.
According to the HTTP Live Streaming Overview
If your app delivers video over
cellular networks, and the video
exceeds either 10 minutes duration or
5 MB of data in a five minute period,
you are required to use HTTP Live
Streaming. (Progressive download may
be ...
Any help? Now can get NSSize, duration and its all.
...
How to change the video play speed in HTML5? I've checked video tag's attributes in w3school but couldn't approach that.Any help would be appreciated!
...
I am trying to play a video in android emulator
I have the video in my assets folder as well as the raw folder
But after doing some research still i cant play video in my emulator
i am working on android 2.1
My video format is mp4 so i don't think that should be a problem
Could anyone just give me an example code so that i can understa...
hello.
Is there a way, to make view's background animated? Android cant handle animated GIFs in 1.5 afaik, and I can't set video for BG resource.
...
I am looking for a easy to use library in java that can convert a video into arrays(corresponding to frames). Arrays will be used for frame processing with standard algos like GMM
...
Hi All.
I've created a custom ASF file containing compressed voice + screen streams.
The total duration of the file according to the header is 29 secs.
When opening it in WMP (using custom DMOs to play the streams), the file plays 25 seconds, and then the seek bar snaps to the beginning, but oddly, WMP continues to play 4 more seconds...
Hi,
I am using Amazon CloudFront to stream paid video content to my users and I am having problems getting the videos secured. Wowza does that by creating a secure token, but the use of wowza would be much more costly.
Is there anyway that I can better protect my content by using Cloudfront or other CDN?
Thanks!
...
Hi there,
I am due to do a demo in a week of an app which i have been working on for a company - until now, i have been using code taken from this useful tutorial here
The problem is that this no longer seems to be working - causing a SIGABRT inside of the following (see initWithVideoView):
- (void) startTVOut;
{
// you need to have ...
I've got this in the <head>:
<script>
function log(event){
var Url = "./log.php?session=<?php echo session_id(); ?>&event=" + event;
xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", Url, true );
xmlHttp.send( null );
}
</script>
And this in the <body>:
<video id="video" src="./video/Larr...
Recently a client asked me to make their site "work on smart phones", which normally wouldn't be too much of an issue... However it's a video site, and I have absolutely no idea where to even begin. Right off the bat I'm not even going to consider allowing the site to even function in anything other than Android (Maybe even 2.0+) and iPh...
This works:
gst-launch-0.10 \
videotestsrc ! ffmpegcolorspace ! 'video/x-raw-yuv' ! mux. \
audiotestsrc ! audioconvert ! 'audio/x-raw-int,rate=44100,channels=1' ! mux. \
avimux name=mux ! filesink location=gst.avi
I can let it run for a while, kill it, and then totem gst.avi displays a nice test card with tone.
However, trying to do ...
hi all,
i am working on a project. my project needs videos tv( Playing videos flash player).
my reference site is http://www.zooweekly.com.au/zootube/index.htm.
I need that type of flash player.
is it passible to do it. can you guide me plz...
...
How to read video frames in hadoop?
...
hello to all,
my client wants to play a flash video in their website.
just to make sure i understand correctly, i need to:
1. create an FLV file
2. use either some flv player or wrap the flv inside swf
questions:
1. the player option - will visitor have to download /install it or is it install only once, in the website itself? any FREE ...
I want my video to show a specified image while embedding it on html
basically I'm doing the following:
<embed src="video.m4v" width="520" height="456" autoplay="false" controller="true" type="video/quicktime" scale="tofit" pluginspage="http://www.apple.com/quicktime/download/" bgcolor="black"> </embed>
Is there a specific parameter t...
I'm building a simple proof-of-concept for an iPad-specific website that would use video transitions to bring users from section to section. For purposes of the proof of concept, each "section" is just an image with a semitransparent content text box positioned above it. There are just 2 sections, "home" and "contact", and they've got a...