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() ffmpeg 2023-10-29 60 点赞 0 评论 90 浏览
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... html5 直接打印 2023-10-27 40 点赞 0 评论 60 浏览