06 2021 档案
摘要:#安装adb brew install android-platform-tools #测试adb adb devices
阅读全文
摘要:redis-server.exe --service-install redis.windows.conf
阅读全文
摘要:nginx配置https server { listen 80; listen 443 ssl; server_name lan.oldwei.com; client_max_body_size 2000M; #charset koi8-r; #access_log logs/host.access
阅读全文
摘要:创建git仓库 …or create a new repository on the command line echo "# blank" >> README.md git init git add README.md git commit -m "first commit" git branch
阅读全文
摘要:使用chrome插件油猴 油猴编码 go语言使用chromedp模拟chrome浏览器 github地址
阅读全文
摘要:Go 支持交叉编译,在可以一个平台上生成多个平台的执行文件。 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build CGO_ENABLED=0 GOOS=darw
阅读全文
摘要:在浏览器中拉流播放报错: DemuxException: type = CodecUnsupported, info = Flv: Unsupported codec in video frame: 2 解决方案: 推流时加上编码格式h264: -vcodec h264 ffmpeg -re -i
阅读全文