上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 51 下一页
摘要: 1、代码 # -*- coding:utf8 -*- import cv2 as cv cap = cv.VideoCapture(0) while (True): hx, frame = cap.read() if hx is False: print('read video error') ex 阅读全文
posted @ 2022-08-24 11:55 代码诠释的世界 阅读(379) 评论(0) 推荐(0)
摘要: 参考链接: https://www.freesion.com/article/97081132512/ 阅读全文
posted @ 2022-08-23 18:02 代码诠释的世界 阅读(107) 评论(0) 推荐(0)
摘要: 1、报错 2、修改IDEA配置 重新打开项目 参考链接: https://blog.csdn.net/liveforyourself/article/details/122059698 阅读全文
posted @ 2022-08-23 16:21 代码诠释的世界 阅读(528) 评论(0) 推荐(0)
摘要: 1、docker hub https://hub.docker.com/r/alfg/nginx-rtmp/ 2、安装 docker pull alfg/nginx-rtmp docker run -it -p 1935:1935 -p 8080:80 --rm nginx-rtmp 测试关闭后删除 阅读全文
posted @ 2022-08-23 15:47 代码诠释的世界 阅读(1161) 评论(0) 推荐(0)
摘要: 1、nginx http://nginx.org/en/ 2、docker-hub https://hub.docker.com/r/alqutami/rtmp-hls https://hub.docker.com/_/nginx 3、github https://github.com/TareqA 阅读全文
posted @ 2022-08-23 15:23 代码诠释的世界 阅读(4040) 评论(0) 推荐(0)
摘要: 1、安装 brew install ffmpeg 2、过程 % brew install ffmpeg HOMEBREW_BREW_GIT_REMOTE set: using https://mirrors.ustc.edu.cn/brew.git for Homebrew/brew Git rem 阅读全文
posted @ 2022-08-23 13:50 代码诠释的世界 阅读(962) 评论(0) 推荐(0)
摘要: 1、docker hub https://hub.docker.com/_/nginx 2、安装 默认配置安装 docker run --name nginx -d nginx 指定端口安装 docker run --name nginx -d -p 8080:80 nginx 文件映射主机安装 # 阅读全文
posted @ 2022-08-23 10:52 代码诠释的世界 阅读(57) 评论(0) 推荐(0)
摘要: 1、使用os.popen 2、使用os.system 3、使用subprocess.Popen 参考链接: https://blog.csdn.net/weixin_43276033/article/details/125481262 https://blog.csdn.net/sirobot/ar 阅读全文
posted @ 2022-08-22 11:20 代码诠释的世界 阅读(37) 评论(0) 推荐(0)
摘要: 1、使用国内的镜像地址 https://registry.npmmirror.com/binary.html?path=chromedriver/ 2、通过simulation模拟用户点击来下载(只贴出部分方法) #!/usr/bin/env python # -*- coding:utf-8 -* 阅读全文
posted @ 2022-08-19 20:49 代码诠释的世界 阅读(342) 评论(0) 推荐(0)
摘要: 1、官网 https://pypi.org/project/requests-html/ 2、github https://github.com/kennethreitz/requests-html 3、安装 pip install requests-html 4、使用HTMLSession hea 阅读全文
posted @ 2022-08-19 14:03 代码诠释的世界 阅读(821) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 51 下一页