会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
代码诠释的世界
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
21
22
23
24
25
26
27
28
29
···
51
下一页
2022年8月24日
【mac】python使用cv2打开本机摄像头
摘要: 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)
2022年8月23日
【mac】brew安装mvn
摘要: 参考链接: https://www.freesion.com/article/97081132512/
阅读全文
posted @ 2022-08-23 18:02 代码诠释的世界
阅读(107)
评论(0)
推荐(0)
【IDEA】解决程序包不存在的问题
摘要: 1、报错 2、修改IDEA配置 重新打开项目 参考链接: https://blog.csdn.net/liveforyourself/article/details/122059698
阅读全文
posted @ 2022-08-23 16:21 代码诠释的世界
阅读(528)
评论(0)
推荐(0)
【docker】nginx-rtmp搭建RTMP服务器
摘要: 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)
【docker】使用docker安装nginx-rtmp实现rtmp和hls本地推流和播放
摘要: 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)
【mac】brew安装ffmpeg
摘要: 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)
【docker】docker安装nginx
摘要: 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)
2022年8月22日
【python】执行系统命令的方法
摘要: 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)
2022年8月19日
【web自动化】selenium根据浏览器版本下载对应的chromedriver
摘要: 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)
【Python】使用requests_html解析HTML页面
摘要: 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
下一页
公告