Copyright © 2012 Kaltura Inc.
All Rights Reserved. Designated trademarks and brands are the property of their respective owners.
Use of this web site constitutes acceptance of the Terms of Use and Privacy Policy.
EduVideo.org
For some reason I can't get playback in Firefox. Works in Safari, Chrome, iPhone etc. I have the appropriate file types uploaded. Why do the video source type tags for h264 = m4v and ogg = ogv?
The test page is here: http://johnarneson.com/swim.html
Any ideas much appreciated.
newb
Thanks for your quick reply. That doesn't seem to fix it, and isn't the way the code reads on the widget sample code...?
I've set up http://johnarneson.com/fish.html as you've suggested, please let me know if I've misinterpreted or missed something.
Thanks,
John
The embed code on you page does not seem to point to real video files. See your source tags ... are just /movies/.webm .. you should point it to the asset url.
Thanks, I'm more confused now. Changed the video/ogv tag to ogg but everything else seemed correct. Why does this call for a sound source file to then play a video file? The file names were included in my source code and I confirmed that's the correct directory location through ftp, am I missing something? This is what's there:
Yes you are missing the idea of content type headers. you can look up this concept on Wikipedia. Content headers are sent out by the webserver you may need contact your web service provider and make sure they support sending the correct mime type for webm and ogg videos.
Thanks Michael, that was the issue. I grabbed the Firefox sample .htaccess file from here: https://developer.mozilla.org/en/Sample_.htaccess_file and added two lines: AddType audio/ogg oga ogg, AddType video/ogg ogv to the top and it works.
your video is responding:
Content-Type: text/plain
you need your video asset to send the correct headers ( content-type: video/ogg OR content-type: video/webm ) for firefox to play it see:
https://developer.mozilla.org/En/Using_audio_and_video_in_Firefox
for more information