ffmpeg命令行截取音频效率慢

摘要: 一直在使用ffmepg截取音频,但是执行效率一般 蟹蟹 http://www.linuxidc.com/Linux/2014-07/104408.htm 博文的指导,调整参数即可 阅读全文
posted @ 2017-06-15 10:00 zhangxiaolan 阅读(406) 评论(0) 推荐(0)

python.exe停止工作,未解决!!!

摘要: 第二波更新 自己手写一个简单返回弹框DLL,然后调用,未出现停止工作的问题 但是,还未解决问题,会暂时放过解决!!!!!!!!!!! https://zhidao.baidu.com/question/2074604948882525828.html 等真正解决的时候,会进行说明 第一波更新 解决方 阅读全文
posted @ 2017-04-19 17:28 zhangxiaolan 阅读(7348) 评论(0) 推荐(0)

python多次调用WIM失败,解决方法

摘要: x_wmi_uninitialised_thread at / 阅读全文
posted @ 2017-04-19 14:51 zhangxiaolan 阅读(1522) 评论(0) 推荐(0)

python中调用dll

摘要: 1:使用DLL分析工具,看到DLL中各种方法 这里我使用的是Alternate DLL Analyzer "XXXFunction" == "??0NetInfo@@QAE@ABV0@@Z" "XXXFunction" != "NetInfo" (错误类型:function not find... 阅读全文
posted @ 2017-04-17 09:17 zhangxiaolan 阅读(3337) 评论(0) 推荐(0)

Python生成pyc文件

摘要: pyc文件是py文件编译后生成的字节码文件(byte code)。pyc文件经过Python解释器最终会生成机器码运行 为什么要手动提前生成pyc文件呢,主要是不想把源代码暴露出来。 python -m foo.py #生成单个pyc文件 阅读全文
posted @ 2017-04-14 08:57 zhangxiaolan 阅读(168) 评论(0) 推荐(0)

在页面中正常显示包含html标记的内容--django

摘要: {% autoescape off %} #关闭整段代码的自动转义 {{ htmlContent }} {% endautoescape %} 阅读全文
posted @ 2017-04-13 14:48 zhangxiaolan 阅读(196) 评论(0) 推荐(0)