上一页 1 2 3 4 5 6 7 8 9 ··· 123 下一页
摘要: def decompose_file(data): # ungz_file_path = gz_file_path.replace(".gz", "") # with gzip.open(gz_file_path, 'rb') as f_in: # with open(ungz_file_path, 阅读全文
posted @ 2023-02-16 11:20 公众号python学习开发 阅读(61) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-07 17:51 公众号python学习开发 阅读(0) 评论(0) 推荐(0) 编辑
摘要: ffmpeg -i 1 aaa.ts -acodec copy -vcodec copy -absf aac_adtstoasc output.mp4 阅读全文
posted @ 2023-02-03 14:50 公众号python学习开发 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 按照github的步骤一步步来的时候,最后一步出现问题, ld: cannot link directly with dylib/framework, your binary is not an allowed client of /usr/lib/libcrypto.dylib for archi 阅读全文
posted @ 2023-02-02 15:47 公众号python学习开发 阅读(47) 评论(0) 推荐(0) 编辑
摘要: git clone https://github.com/emscripten-core/emsdk.git pyenv local 3.8.0 ./emsdk install latest https://xmanyou.com/wasm-emsdk-mac-start-up/ js调用wasm 阅读全文
posted @ 2023-02-01 22:19 公众号python学习开发 阅读(77) 评论(0) 推荐(0) 编辑
摘要: //对arm64比较友好,arm32的可能崩溃 function call_1CFF0(input_str) { var base_hello_jni = Module.findBaseAddress("libhello-jni.so"); var sub_1CFF0 = new NativeFun 阅读全文
posted @ 2023-01-30 18:01 公众号python学习开发 阅读(700) 评论(2) 推荐(1) 编辑
摘要: 从png图片中分离出png图片 binwalk -D 'image:png' result.png 从图片中分离出zip压缩文件并解压 binwalk -D 'zip archive:zip:unzip %e' cqzb.jpg 或者使用下面的命令 binwalk cqzb.jpg -e 阅读全文
posted @ 2023-01-30 17:12 公众号python学习开发 阅读(298) 评论(0) 推荐(0) 编辑
摘要: document.addEventListener('mousemove',function (e) { //mousemove 鼠标一移动,就会触发事件 //获取鼠标最新的坐标 console.log("y:",e.clientY,"x:",e.clientX) }) clientX:当鼠标事件发 阅读全文
posted @ 2023-01-17 11:59 公众号python学习开发 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 方法 @staticmethod def get_distance(fg, bg): """ 计算滑动距离 """ target = cv2.imdecode(np.asarray(bytearray(fg.read()), dtype=np.uint8), 0) template = cv2.im 阅读全文
posted @ 2023-01-13 17:46 公众号python学习开发 阅读(117) 评论(0) 推荐(0) 编辑
摘要: true = False def wazzup(): """ 假亦真时真亦假 """ false = True or False def true(): nonlocal false false = True return false false = true() false = True if f 阅读全文
posted @ 2023-01-12 11:00 公众号python学习开发 阅读(56) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 123 下一页