[转]ffmpeg的中文文档
[转]ffmpeg的中文文档 转自:http://wanglongqi.github.io/tools/2015/02/13/ffmpegcn/ 感谢原文作者的辛勤翻译! 1. 概要 ffmpeg [global_options] {[input_file_options] -i INPUT_FILE} ... {[output_file_options] OUTPUT_FILE} ... 2. … >>阅读全文<<
[转]ffmpeg的中文文档 转自:http://wanglongqi.github.io/tools/2015/02/13/ffmpegcn/ 感谢原文作者的辛勤翻译! 1. 概要 ffmpeg [global_options] {[input_file_options] -i INPUT_FILE} ... {[output_file_options] OUTPUT_FILE} ... 2. … >>阅读全文<<
在http://www.w3school.com.cn/html5/html_5_video.asp的源码里摘出来的。 function checkVideo() { if(!!document.createElement('video').canPlayType) { var vidTest=document.createElement("video"); oggTest=vidTest.canPlayType('video/ogg; codecs="theora, vorbis"'); if (!oggTest) { h264Test=vidTest.canPlayType('video/mp4; codecs="avc1.42E01E, mp4a.40.2"'); if (!h264Test) { document.getElementById("checkVideoResult").innerHTML="Sorry. No video support." } … >>阅读全文<<