上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 50 下一页
摘要: 1.cmake https://www.bilibili.com/video/BV1LK4y1f7UW?from=search&seid=10875148492165671126 https://wangyazhou.blog.csdn.net/article/details/109748474 2 阅读全文
posted @ 2020-12-20 19:50 lianhuaren 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 1. FILE* file =fopen("YUV420P.YUV", "w"); int i; for (i = 0; i<height; i++) { fwrite(pFrame->data[0]+i*pFrame->linesize[0] , 1, width, file); } for (i 阅读全文
posted @ 2020-12-19 09:42 lianhuaren 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 1. shutdown()函数:优雅地断开TCP连接 howto 在 Linux 下有以下取值: SHUT_RD:断开输入流。套接字无法接收数据(即使输入缓冲区收到数据也被抹去),无法调用输入相关函数。 SHUT_WR:断开输出流。套接字无法发送数据,但如果输出缓冲区中还有未传输的数据,则将传递到目 阅读全文
posted @ 2020-12-16 11:51 lianhuaren 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1. https://zhuanlan.zhihu.com/p/37350346?utm_source=qq&utm_medium=social&utm_oi=69933966819328 https://www.cnblogs.com/chyingp/p/websocket-deep-in.htm 阅读全文
posted @ 2020-12-13 22:28 lianhuaren 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 1. 安装:python setup.py install --record log。 卸载:cat log | xargs rm -rf https://www.cnblogs.com/still-smile/p/11583639.html 2. 下载 https://www.python.org 阅读全文
posted @ 2020-12-12 07:32 lianhuaren 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1. #define A_RECEIVE 1000 NSData *imageData = UIImageJPEGRepresentation([UIImage imageNamed:@"xxx.jpg"], 1); NSMutableArray *imageDataArray = [[NSMuta 阅读全文
posted @ 2020-12-08 14:06 lianhuaren 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 1. 我测试的是 DNS 改 “8.8.4.4” 成功了 如果 8.8.4.4 不行,DNS 还可以换成以下的 试试。 114.114.114.114 223.5.5.5 https://www.jianshu.com/p/35ff80d6d047 阅读全文
posted @ 2020-11-25 20:05 lianhuaren 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 1.licode libnice install_libnice(){ if [ -d $LIB_DIR ]; then cd $LIB_DIR curl -OL https://nice.freedesktop.org/releases/libnice-0.1.4.tar.gz tar -zxvf 阅读全文
posted @ 2020-11-16 08:15 lianhuaren 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 1. https://www.cnblogs.com/lingyunhu/p/rtc55.html ----------------------------------------------------------------- ---------------------------------- 阅读全文
posted @ 2020-11-13 13:51 lianhuaren 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 1. QoS策略的主要任务是对抗影响数据传输的网络变量,比如时延,抖动,丢包,带宽等。我们简单介绍下QoS的常规武器。 ARQ:自动重传请求,是数据链路层的错误纠正协议之一,WebRTC中用到是协议中的NACK机制,即接收端监测到数据包SeqN丢失后,发送对该数据包的重传请求,由发送端执行重传。 F 阅读全文
posted @ 2020-11-12 21:40 lianhuaren 阅读(114) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 50 下一页