May 24th, 2010

WebM HD Video Example VP8 HTML 5
The purpose of this post is to provide general information about the new webm open video format and VP8 High-Quality Video Codec.
Define webm
WebM is an open, royalty-free media file format designed for the web. WebM files consist of video streams compressed with the VP8 video codec and audio streams compressed with the Vorbis audio codec. The WebM file structure is based on the Matroska media container.
Define VP8
VP8 is a highly efficient video compression technology that was developed by On2 Technologies. Google acquired On2 in February, 2010.
webm Browser Support
Google Chrome — Currently only available in Chromium
Firefox — Grab a Firefox WebM nightly build
Opera — Opera 10.54 has WebM support
HTML 5 webm Implementation
<video src="video_name.webm" controls="controls">
Your browser does not support the video tag!
</video>
webm VP8 HTML 5 DEMO
Demo Page
Download Sample webm vp8 video
How To Build FFMpeg for Windows and Linux with VP8 WebM Guides
Build FFMpeg for Linux with VP8 WebM support
Build FFMpeg for Windows with VP8 WebM support
Thanks for reading!
Uncategorized |
No Comments »
December 22nd, 2009
/* preprocessor directive */
#include
/* preprocessor directive */
#define KMPERMILE 1.6
/* main() function: beginning */
int main() {
/* integer variable declaration */
int miles;
/* float variable declaration */
float km;
/* output */
printf("\n\nMiles2Kilometers'R'US!\n");
printf("\n");
printf("How many miles? ");
/* input */
scanf("%d", &miles);
/* assignment statement */
km = miles * KMPERMILE;
/* formatted output */
printf("%d miles is %f kilometers\n", miles, km);
/* return statement */
return 0;
/* end of main() function */
}
SOURCE CODE
Uncategorized |
No Comments »
November 23rd, 2009
Hello everyone. I have 5 google wave invitations that I am going to give away to the people that email me the best 5 php tutorials at admin@erunways.com. Only the 5 selected tutorials will be posted on erunways and the authors will be given credit for it and a link to their site. Please email me the tutorial and you email where you want the invitation to be send to. Please post questions as comments and only email tutorials. Thank you and good luck! ~Admin
Uncategorized |
3 Comments »