欢迎访问我的独立博客
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 67 下一页
摘要: WebRTC 的代码量不小,一次性看明白不太现实,在本系列中,我将试图搞清楚三个问题: 本文是第一篇,我将从最熟悉的采集入手,分析一下 WebRTC-Android 相机采集的实现。 WebRTC-Android 的相机采集主要涉及到以下几个类:Enumerator,Capturer,Session 阅读全文
posted @ 2018-08-21 09:31 github.com/starRTC 阅读(1229) 评论(0) 推荐(0) 编辑
摘要: 跨平台一直是老生常谈的话题,cordova、ionic、react-native、weex、kotlin-native、flutter等跨平台框架百花齐放,颇有一股推倒原生开发者的势头。 为什么我们需要跨平台开发? 本质上,跨平台开发是为了增加代码复用,减少开发者对多个平台适配的工作量,降低开发成本 阅读全文
posted @ 2018-08-20 16:06 github.com/starRTC 阅读(9273) 评论(0) 推荐(0) 编辑
摘要: 在数据传输流程中,json是以文本,即字符串的形式传递的,而JS操作的是JSON对象 JSON字符串: var str1 = '{ "name": "cxh", "sex": "man" }'; JSON对象: var str2 = { "name": "cxh", "sex": "man" }; 阅读全文
posted @ 2018-08-17 15:24 github.com/starRTC 阅读(5585) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/summers/p/3225375.html POST 方法不会缓存数据 $.get(URL,callback); 2个参数 callback 参数是请求成功后所执行的函数名。 $("button").click(function(){ $.get(" 阅读全文
posted @ 2018-08-17 10:39 github.com/starRTC 阅读(243) 评论(0) 推荐(0) 编辑
摘要: git clone git://git.ffmpeg.org/rtmpdump 不想要openssl 在rtmp.h里面 #undef CRYPTO 编译动态库与静态库只需要修改下面的 #include $(BUILD_SHARED_LIBRARY) include $(BUILD_STATIC_L 阅读全文
posted @ 2018-08-15 17:29 github.com/starRTC 阅读(581) 评论(0) 推荐(0) 编辑
摘要: 安全模式启动 chown -R mysql.mysql /var/run/mysqld/ mysqld_safe --skip-grant-tables & 无密码root帐号登陆 mysql -uroot -p //要求输入密码的时候,直接回车 或直接输入mysql FLUSH PRIVILEGE 阅读全文
posted @ 2018-08-13 17:12 github.com/starRTC 阅读(1301) 评论(0) 推荐(0) 编辑
摘要: libreoffice添加字体 TrueType字体文件的扩展名是.ttf,ttf就是TrueType Font的首字母缩写 一般在 /usr/share/fonts/truetype/ 目录下,这个是所有用户都能用 输入下面的命令刷新系统字体信息文件。 fc-cache -f -v 如果你只想提供 阅读全文
posted @ 2018-08-09 10:31 github.com/starRTC 阅读(2204) 评论(0) 推荐(0) 编辑
摘要: https://zh-cn.libreoffice.org/ http://www.imagemagick.org/script/ 首先用libreoffice将ppt转换为pdf格式,然后再用convert将pdf转换为图片 libreoffice可以实现doc,ppt转pdf 解压后 进入 RP 阅读全文
posted @ 2018-08-09 10:31 github.com/starRTC 阅读(662) 评论(0) 推荐(0) 编辑
摘要: LibreOffice的初始版本号码被设置为与OpenOffice.org一致,故初始发布(2010年)即为第三版,并不存在第二版、第一版。 后来,甲骨文宣布停止OpenOffice.org的商业支持。2011年6月,甲骨文宣布将OpenOffice.org捐赠给Apache软件基金会,后来成为Ap 阅读全文
posted @ 2018-08-08 15:50 github.com/starRTC 阅读(6581) 评论(0) 推荐(1) 编辑
摘要: core dump的概念: A core dump is the recorded state of the working memory of a computer program at a specific time, generally when the program has termina 阅读全文
posted @ 2018-08-08 09:48 github.com/starRTC 阅读(3873) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 67 下一页