鱼儿慢慢游~~

导航

 

2021年4月29日

摘要: chrome://flags/#unsafely-treat-insecure-origin-as-secure 阅读全文
posted @ 2021-04-29 18:12 miss_UU 阅读(147) 评论(0) 推荐(0) 编辑
 

2021年4月12日

摘要: sed -i 's/^public_ip =.*$/public_ip = '$public_ip'/' filename 阅读全文
posted @ 2021-04-12 10:38 miss_UU 阅读(175) 评论(0) 推荐(0) 编辑
 

2019年6月6日

摘要: 以下是tcpdump的下载安装 一、下载安装包: 因为tcpdump需要依赖包libcap,所以需安装2个包。可以从以下网址下载。 http://www.tcpdump.org/release/libpcap-1.5.3.tar.gz http://www.tcpdump.org/release/t 阅读全文
posted @ 2019-06-06 15:41 miss_UU 阅读(7644) 评论(0) 推荐(2) 编辑
 

2019年5月28日

摘要: 在webrtc的sdp中描述: 通过在rtp头里添加扩展信息来完成手机端的视频旋转描述。 具体描述如下: https://mailarchive.ietf.org/arch/msg/rtcweb/NsBchthmGD4aWy7K74r_1xCK-SI https://tools.ietf.org/h 阅读全文
posted @ 2019-05-28 11:35 miss_UU 阅读(639) 评论(0) 推荐(0) 编辑
 

2019年5月24日

摘要: 命令行调试日志: --gst-debug-level=X 或 --gst-debug=myelement:X(X的取值为[0,5]) Udpsrc Sender: ./gst-launch-1.0 videotestsrc is-live=true ! video/x-raw,framerate=2 阅读全文
posted @ 2019-05-24 14:59 miss_UU 阅读(1630) 评论(0) 推荐(0) 编辑
 

2018年12月29日

摘要: 提交:1. git add 文件名/文件夹2. git commit -s 记录log3. git push origin url git更新代码:1. 执行git stash将本地修改暂存2. 执行git pull 拉取远程最新代码3. 执行git pop将本地修改和远程代码合并 git mera 阅读全文
posted @ 2018-12-29 14:33 miss_UU 阅读(76) 评论(0) 推荐(0) 编辑
 

2018年12月27日

摘要: 最近在做webrtc相关的内容,底层ice协商遇到如下问题: libnice版本:0.1.14 获取地址:https://nice.freedesktop.org/releases/ 单nat的情况: 1. 当浏览器(标准webrtc实现)位于nat内,服务器(使用libnice)位于公网时,可以实 阅读全文
posted @ 2018-12-27 10:24 miss_UU 阅读(2048) 评论(0) 推荐(0) 编辑
 

2018年12月18日

摘要: Lite Implementations: 一般是ice服务器可以实现,这种模式下,只接受binding request请求,并且回复。 不会主动发送binding request请求给对方 Full Implementations: ice客户端实现,这种模式既可以收binding request 阅读全文
posted @ 2018-12-18 19:23 miss_UU 阅读(1551) 评论(0) 推荐(0) 编辑
 

2018年12月14日

摘要: sudo mount -t cifs -o username=aaa,password=' ',nounix,noserverino //ip/dir /home/dir 阅读全文
posted @ 2018-12-14 17:14 miss_UU 阅读(113) 评论(0) 推荐(0) 编辑
 

2018年10月16日

摘要: 题目描述: Example 1: Example 2: 即:对于一个整数n,共有n!个排列,给出数字k,返回第k个全排列 观察题目可得如下规律: 对于n,其中每个字母 开头的全排列共有n-1!个,如数字3,以 1开头的共有2!个。 因此:m= k / (n-1)! 可以确定出第一个数字, 将该数字加 阅读全文
posted @ 2018-10-16 11:31 miss_UU 阅读(203) 评论(0) 推荐(0) 编辑