飘逸店员

文章
9
资源
0
加入时间
3年0月8天

FFMPEG解码流程

FFMPEG解码流程:  1. 注册所有容器格式和CODEC: av_register_all()  2. 打开文件: av_open_input_file()  3. 从文件中提取流信息: av_find_stream_info()  4. 穷举所有的流,查找其中种类为CODEC_TYPE_VIDEO  5. 查找对应的解码器: avcodec_find_decoder()

html5 直接打印,打印html5中Canvas的方法

function print_voucher(){ // 打印的主要方法var win=window.open(); win.document.write("");win.print();win.location.reload();}需要打开一个窗口进行打印,示例代码如下:$(function(){var canvas=document.getElementById("canvas");va...