会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
windlog
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
下一页
2025年3月3日
FFmpeg查看设备自带采集视频
摘要: 一、使用dshow 参考 使用ffmpeg调用电脑自带的摄像头和扬声器录制音视频 FFmpeg获取DirectShow设备数据(摄像头,录屏) 查看支持设备 ffmpeg -f dshow -list_devices true -i dummy 播放 ffplay.exe -f dshow -vid
阅读全文
posted @ 2025-03-03 09:09 windlog
阅读(251)
评论(0)
推荐(0)
2025年2月28日
ffmpeg推流
摘要: 流媒体服务端参考mediamtx流媒体服务器测试 推流命令 ffmpeg -re -i 3.mp4 -c copy -f flv -rtmp_app live -rtmp_playpath class rtmp://localhost:1935 等同于 ffmpeg -re -i 3.mp4 -c
阅读全文
posted @ 2025-02-28 15:42 windlog
阅读(58)
评论(0)
推荐(0)
2025年2月27日
git命令行使用
摘要: 一、证书 创建证书 ssh-keygen -t rsa -C 'xxxx@126.com' 获取 RSA 公钥内容,并配置到 SSH公钥 中 cat ~/.ssh/id_rsa_gitee.pub 配置免密登录 touch ~/.ssh/config 内容如下 Host gitee.com Host
阅读全文
posted @ 2025-02-27 13:54 windlog
阅读(26)
评论(0)
推荐(0)
2025年2月11日
centos7创建定时任务备份mysql数据库
摘要: 一、编辑、查看 crontab -u root -e crontab -l systemctl status crontab 二、配置 0 2 * * * /usr/bin/backup_script.sh #!/bin/bash * * * * * /opt/backup_script.sh 0
阅读全文
posted @ 2025-02-11 15:11 windlog
阅读(80)
评论(0)
推荐(0)
2024年12月27日
sveletkit开发
摘要: 一、安装 npx sv create svelte-app npm run dev -- --open 二、参考文档 https://kit.svelte.js.cn/docs/introduction 三、ollama大模型服务管理界面 https://github.com/ollama-webu
阅读全文
posted @ 2024-12-27 17:34 windlog
阅读(31)
评论(0)
推荐(0)
2024年4月7日
GPS坐标转换为BIM
摘要: 将GPS坐标转换为BIM(Building Information Modeling)坐标通常涉及几个步骤,因为这两种坐标系统服务于不同的目的并具有不同的参考框架。GPS坐标是基于全球定位系统(WGS 84)的地理坐标,而BIM坐标通常是基于项目特定的局部坐标系统。以下是一个基本的转换流程: 一、理
阅读全文
posted @ 2024-04-07 14:00 windlog
阅读(130)
评论(0)
推荐(0)
2024年3月3日
docker 镜像制作 commit --entrypoint
摘要: commit --entrypoint测试 替换原来镜像中的ENTRYPOINT["/bin/bash"] docker run -it --entrypoint ./hello --name testgo3 centosgo:v1 docker run -it --entrypoint /bin/
阅读全文
posted @ 2024-03-03 16:24 windlog
阅读(206)
评论(0)
推荐(0)
2024年2月29日
查看centos磁盘容量
摘要: 1、df -Th 2、fdisk -l 3、lsblk [root@xxx /]# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 512G 0 disk ├─sda1 8:1 0 1G 0 part /boot └─sda2 8:2
阅读全文
posted @ 2024-02-29 14:06 windlog
阅读(777)
评论(0)
推荐(0)
2024年2月24日
通过docker运行门户casdoor
摘要: firewall-cmd --zone=public --add-port=7001/tcp --permanent firewall-cmd --reload docker run -p 9000:8000 casbin/casdoor-all-in-one docker pull casbin/
阅读全文
posted @ 2024-02-24 16:17 windlog
阅读(248)
评论(0)
推荐(0)
2024年2月22日
docker使用
摘要: 安装tomcat 9 docker pull tomcat:9.0.56-jdk8-temurin-focal docker run -d -p 8082:8080 --name my-tomcat 6b16c2a1d213 docker exec -it my-tomcat /bin/bash c
阅读全文
posted @ 2024-02-22 13:17 windlog
阅读(48)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
下一页
公告