[转]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. … >>阅读全文<<
1. 列设备 ffmpeg -list_devices true -f dshow -i dummy 命令执行后输出的结果如下(注:中文的设备会出现乱码的情况)。列表显示设备的名称很重要,输入的时候都是使用“-f dshow -i video="{设备名}"”的方式。 我自己的机器上列出了以下设备: [dshow @0388f5e0] DirectShow video devices [dshow @0388f5e0] "Integrated Camera" [dshow @0388f5e0] "screen-capture-recorder" [dshow @0388f5e0] DirectShow audio devices [dshow @0388f5e0] "鍐呰楹﹀厠椋?(Conexant20672 SmartAudi" [dshow @0388f5e0] "virtual-audio-capturer" 下文的测试中,使用其中的两个视频输入:"Integrated … >>阅读全文<<
Ubuntu 有apt-get,CentOS有yum,黑群晖想安装软件包,除了官方的套件中心,还有ipkg,而且软件更多,更自由。 1. 以root用户SSH到Synology,执行: cd /volume1/@tmp wget http://ipkg.nslu2-linux.org/feeds/optware/syno-i686/cross/unstable/syno-i686-bootstrap_1.2-7_i686.xsh chmod +x syno-i686-bootstrap_1.2-7_i686.xsh sh syno-i686-bootstrap_1.2-7_i686.xsh rm syno-i686-bootstrap_1.2-7_i686.xsh restart 2. 重启后再次ssh进入,/目录下多了opt目录 3. 修改/root/.profile, 将/opt/bin添加到PATH: PATH=/opt/bin:/sbin:/bin:...... 4. … >>阅读全文<<
在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." } … >>阅读全文<<