https://evermeet.cx/ffmpeg/[......]
Author Archives: coder4
安卓手机远程控制开源解决方案
https://www.myfreax.com/how-to-use-scrcpy-to-remotely-control-an-android-phone/
https://github.com/Genymobile/scrcpy
scrcpy --v4l2-sink=/dev/video2
docker run -d -p 1935:1935 --name nginx-rtmp tiangolo/nginx-rtmp
ffmpeg -framerate 15 -i /dev/vi[......]
minikube / docker 设置代理的方法
启动minikube时:
minikube start --image-mirror-country='cn' --image-repository='registry.cn-hangzhou.aliyuncs.com/google_containers'
Docker制作镜像时:
docker build --build-arg http_proxy=http://your_proxy:your_proxy_port .
Docker推送镜像时:[......]
Web学习资料汇总
CSS 教程/资料类
- 实战教程:https://www.freecodecamp.org/learn/responsive-web-design/
- W3C教程:https://www.w3schools.com/css/
- MDN基础教程:https://developer.mozilla.org/en-US/docs/Learn/CSS/First_steps
- 30分钟学会Flex:https://zhuanlan.zhihu.com/p/25303493
- 阮老[......]
minikube设置代理
新版已经支持设置代理了,设置后,在内部dcker会使用这个来拉取镜像,如下:
minikube start --docker-env http_proxy=http://192.168.49.1:8123 \
--docker-env https_proxy=http://192.168.49.1:8123 \
--docker-env no_proxy=localhost,127.0.0.1,10.96.0.0/12,192.1[......]