会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
9
下一页
2022年7月31日
ffmpeg 旋转视频&加黑边 不损失清晰度
摘要: shell脚本: #以推流为例 URL="rtmp://192.168.*.*:1935/test1/index" while(true) do ffmpeg -re -i "rtmp://192.168.*.*:1935/live/index" -vf 'pad=1366:768:93:24:bl
阅读全文
posted @ 2022-07-31 12:39 冬音
阅读(1146)
评论(0)
推荐(0)
2022年7月24日
centos7 docker 安装 sqlserver 2019
摘要: centos7直接 sqlserver 2019 存在依赖问题难以解决,故采用docker方式安装 1.安装docker 参考:https://www.runoob.com/docker/centos-docker-install.html 2.docker安装 sql server 2019 参考
阅读全文
posted @ 2022-07-24 12:58 冬音
阅读(664)
评论(0)
推荐(0)
2022年7月3日
小红书推流地址获取
摘要:
阅读全文
posted @ 2022-07-03 00:56 冬音
阅读(622)
评论(0)
推荐(0)
2022年6月7日
FFMPEG裁剪视频命令
摘要: 命令: ffmpeg -i "input.mp4" -vcodec copy -acodec copy -ss 00:02:00 -t 00:01:00 "output.mp4" ffmpeg -i "input.mp4" -vcodec copy -acodec copy -ss 00:02:00
阅读全文
posted @ 2022-06-07 00:30 冬音
阅读(1596)
评论(0)
推荐(0)
2022年6月5日
如何观看“直播世界”直播?
摘要: 1.打开电脑浏览器(暂不支持手机) 浏览器使用微软Edge或谷歌Chrome浏览器(建议使用Edge,Chrome安装插件麻烦些) 2.打开浏览器插件 打开网址:Tampermonkey - Microsoft Edge Addons 点击“获取”按钮,如下图: 打开网址:直播世界播放助手 (gre
阅读全文
posted @ 2022-06-05 14:16 冬音
阅读(920)
评论(0)
推荐(0)
Nginx+RTMP HLS降低延迟参数
摘要: (24条消息) Nginx+RTMP HLS降低延迟参数_得意霄尽欢的博客-CSDN博客_nginx rtmp 减少延迟
阅读全文
posted @ 2022-06-05 04:43 冬音
阅读(892)
评论(0)
推荐(0)
html中播放m3u8文件
摘要: (24条消息) html中播放m3u8文件_雷haoming的博客-CSDN博客_html m3u8
阅读全文
posted @ 2022-06-05 03:24 冬音
阅读(999)
评论(0)
推荐(0)
nginx允许跨域配置
摘要: 配置如下 #允许跨域请求的域,*代表所有 add_header 'Access-Control-Allow-Origin' *; #允许带上cookie请求 add_header 'Access-Control-Allow-Credentials' 'true'; #允许请求的方法,比如 GET/P
阅读全文
posted @ 2022-06-05 00:24 冬音
阅读(9044)
评论(0)
推荐(0)
2022年6月4日
nginx代理绕过X-Frame-Options的限制
摘要: nginx配置: server { listen 80; location / { proxy_hide_header X-Frame-Options; #隐藏掉返回头部 proxy_pass http://xxxxx; #网站如果配置了http跳转https,将http://换成https://
阅读全文
posted @ 2022-06-04 22:28 冬音
阅读(1459)
评论(0)
推荐(0)
streamlink报ssl.SSLEOFError: EOF occurred in violation of protocol错
摘要: 1.下载 urllib3 1.25.11 https://pypi.org/project/urllib3/1.25.11/#files 2.解压urllib3 1.25.11 3.将urllib3文件夹替换 (24条消息) python开代理后访问网站报ssl.SSLEOFError: EOF o
阅读全文
posted @ 2022-06-04 02:55 冬音
阅读(1249)
评论(0)
推荐(0)
2022年5月30日
CentOS 7 升级 git 版本到 2.x
摘要: https://juejin.cn/post/7071910670056292389
阅读全文
posted @ 2022-05-30 00:33 冬音
阅读(24)
评论(0)
推荐(0)
2022年5月26日
记一次python调试经历
摘要: 最近下了最新版本的streamlink项目,获取ibm网站视频老是提示找不到流媒体,回忆起以前成功获取过,所以决定调试排查原因 1 python环境搭建 *开始尝试在自己windows电脑上搭建,装依赖的过程中要装的以来过多,最后需要vc++ 2019而作罢,决定在centos虚拟机中搭建环境 1.
阅读全文
posted @ 2022-05-26 03:00 冬音
阅读(76)
评论(0)
推荐(0)
2022年3月9日
nginx tcp端口模块
摘要: 1.[不推荐,实测安装存在错误] nginx不自带tcp转发模块,可以进行下载编译安装tcp转发模块源码 https://github.com/yaoweibin/nginx_tcp_proxy_module 安装参考:Centos7 搭建Nginx+rtmp+hls直播推流服务器 - 冬音 - 博
阅读全文
posted @ 2022-03-09 19:54 冬音
阅读(272)
评论(0)
推荐(0)
2022年2月6日
frp内网穿透,以Windows远程连接为例
摘要: 1 准备 1)公网ip的服务器(本文以Centos7系统为例) 2)内网电脑(本文以Windows7为例) 2 实现步骤 2.1 服务端 linux服务器下载对应frp:Releases · fatedier/frp (github.com) wget https://github.com/fate
阅读全文
posted @ 2022-02-06 20:20 冬音
阅读(696)
评论(0)
推荐(0)
2022年2月3日
win7系统证书错误问题,证书无效,不受信任的网站问题
摘要: 下载更新证书: https://files.cnblogs.com/files/wintertone/rootsupd.zip https://blog.csdn.net/dreamtheworld1/article/details/105038076
阅读全文
posted @ 2022-02-03 18:34 冬音
阅读(249)
评论(0)
推荐(0)
2022年1月26日
CentOS 7修改Swap空间
摘要: centos中设置swap交换空间的大小设置和swappiness的比例设置 - 相心 - 博客园 (cnblogs.com) CentOS 7添加Swap空间_时光不语的博客-CSDN博客_centos7 增加swap
阅读全文
posted @ 2022-01-26 16:03 冬音
阅读(118)
评论(0)
推荐(0)
2022年1月23日
虚拟机 the image's hash and certificate are not allowed 解决方案
摘要: 关闭Hyper_V中此虚拟机的的安全启动选项 虚拟机 the image's hash and certificate are not allowed 解决方案 - 威流 - 博客园 (cnblogs.com)
阅读全文
posted @ 2022-01-23 01:35 冬音
阅读(144)
评论(0)
推荐(0)
Hyper-v中安装完Centos7修改分辨率
摘要: grubby --update-kernel=ALL --args="video=hyperv_fb:1920x1080" Hyper-v中安装完Centos7修改分辨率_IAGod的博客-CSDN博客
阅读全文
posted @ 2022-01-23 01:33 冬音
阅读(247)
评论(0)
推荐(0)
2022年1月2日
Linux创建脚本服务
摘要: 创建脚本: vi ***.sh chmod a+x ***.sh 创建服务: vi /etc/systemd/system/***.service [Unit] Description=demo [Service] ExecStart=/bin/bash /root/***.sh[Install]W
阅读全文
posted @ 2022-01-02 22:44 冬音
阅读(370)
评论(0)
推荐(0)
Linux使用USB摄像头推流
摘要: 1 安装nginx Centos7 搭建Nginx+rtmp+hls直播推流服务器 - 冬音 - 博客园 (cnblogs.com) 2 安装ffmpeg Linux直播推流 - 冬音 - 博客园 (cnblogs.com) 3 检查usb摄像头是否连接成功 查看usb信息,确认usb摄像头连接成功
阅读全文
posted @ 2022-01-02 22:42 冬音
阅读(3225)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
9
下一页
公告