Tagged Questions

12
votes
2answers
10k views

ffmpeg settings for converting to mp4 and ogg for HTML5 video [closed]

Despite all the hype, in reality the HTML5 video tag has a bit of a problem. In order to use it and for it to be cross browser compatible, you have to include more than one format of the video. To ...
4
votes
1answer
4k views

How do you do true streaming with the video tag (i.e. not progressive download)? (html5)

I have I have cheap Apache PHP hosting. I have mp4 and or Ogg video file. I want to dinamicaly stream this video to users. And let that users see it thru html 5 video player. How do you do true ...
2
votes
2answers
399 views

How to serve OGG video to Firefox 3.6 and WEBM video to Firefox 4?

My code looks like this: <video> <source src="movie.webm" type="video/webm" /> <source src="movie.ogv" type="video/ogg" /> </video> or, like this: <video> ...
2
votes
3answers
507 views

Play ogg inside a page?

I was pretty surprised when i saw http://www.vorbis.com/music/Hydrate-Kenny_Beltrey.ogg link not give me a download option but had a player that was not flash playing the audio back. (FireFox) Is ...
2
votes
4answers
657 views

Audio Video (ogg) Generation using Javascript

is it possible to generate/send video/audio using javascript ?? for example, see jspdf - http://jspdf.googlecode.com/svn/trunk/examples/basic.htm generate client side generated pdf file using base64 ...
1
vote
1answer
853 views

Video file .ogv plays locally in Firefox, but not from server

I'm not having any problems playing this video in Chrome, Safari or Opera. When I try to play it in Firefox, I get a grey box with no video. Here is my code: <video width="640" ...
1
vote
1answer
103 views

Relative merits of encoding video with H.264 vs Ogg

What are the technical merits of using H.264 vs. Ogg for encoding video? Feel free, also, to chime in on business/user advantages (e.g., penetration) -- assuming the responses remain on topic. ...
1
vote
2answers
182 views

Get length of ogg theora video

I'm currently playing around with libtheoradec but I cannot find an easy way of finding out the playing time of an ogg theora file. There are several examples in the libtheoradec distribution but none ...
1
vote
2answers
214 views

PHP: Class to parse OGG and .ogv files?

I am looking for a php class that can parse ogg and .ogv files so that I can get some of the metadata out of the files, such as comments, bitrate, length, etc. I have found this: ...
1
vote
2answers
981 views

Playing video (OGG Theora) in a C# WinForms application?

I'm looking for a GPL-compatible solution for playing a video file in a Windows Forms control, specifically with the OGG Theora codec? I was looking into using the VLC player library. A Google ...
0
votes
1answer
129 views

mp4 video won't load in Safari (Status: pending / Type: undefined)

<source src="../../_media/videos/Video.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /> I am wondering why this video is not loading in Safari 5 - Chrome / Firefox are working ...
0
votes
1answer
41 views

How to play OGV inside iPhone app

I have simple website that contains Ogg Video files accessible via URLs. How can I play that files from inside iphone app?
0
votes
2answers
69 views

I have a OVG video that I want to put into my site

I have a OVG video and I would like to put that into my site. I do not know much about that file format so I am concerned how it will be with cross browser compatibility. I know that FF will play the ...
0
votes
0answers
188 views

Create OGG Files from Java

I want to create OGG format for Video. I am looking for a Java library to do this. Any suggestions?
-1
votes
1answer
129 views

Video Encoding with Java

How do I encode video in Java? Should it be OGG or any other open format?