欢迎访问我的独立博客

11 2018 档案

摘要:该函数用于初始化一个视音频编解码器的AVCodecContext。 int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options); 各个参数的含义: avctx:需要初始化的AVCodec 阅读全文
posted @ 2018-11-30 10:17 github.com/starRTC 阅读(1900) 评论(0) 推荐(0) 编辑
摘要:git remote -vgit remote add upstream urlgit fetch upstreamgit checkout mastergit merge upstream/master 同步更新到自己的github库上git push origin master欢迎使用我的库ht 阅读全文
posted @ 2018-11-27 15:53 github.com/starRTC 阅读(165) 评论(0) 推荐(0) 编辑
摘要:IS_PARAMETER_SET_NAL:是不是参数集nal 头文件codec_api.h codec_app_def.h codec_def.h codec_ver.h SEncParamExt.iMultipleThreadIdc: lager than 1: count number of t 阅读全文
posted @ 2018-11-27 14:56 github.com/starRTC 阅读(2435) 评论(0) 推荐(0) 编辑
摘要:思科的 安装NASM git clone https://github.com/cisco/openh264.git Android Builds install android sdk and ndk. export PATH=**ANDROID_SDK**/tools:$PATH make OS 阅读全文
posted @ 2018-11-14 13:52 github.com/starRTC 阅读(2053) 评论(0) 推荐(0) 编辑
摘要:https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip 1,先安装java https://developer.android.com/studio/ 下载linux sdk 找到tools 执行 ./android 阅读全文
posted @ 2018-11-14 13:50 github.com/starRTC 阅读(4856) 评论(0) 推荐(1) 编辑
摘要:1,下载离线包 rpm 2,rpm -ivh ** 报错: lsb_release被chrome依赖 libXss.so被chrome依赖 libappindicator3被chrome依赖 yum -y install redhat-lsb yum install libappindicator* 阅读全文
posted @ 2018-11-13 18:28 github.com/starRTC 阅读(464) 评论(0) 推荐(0) 编辑
摘要:下载rpm http://www.oracle.com/technetwork/cn/java/javase/downloads/jdk7-downloads-1880260.html wget http://download.oracle.com/otn-pub/java/jdk/8u191-b1 阅读全文
posted @ 2018-11-13 18:27 github.com/starRTC 阅读(229) 评论(0) 推荐(0) 编辑
摘要:webRTC源码下载地址:https://pan.baidu.com/s/18CjClvAuz3B9oF33ngbJIw 提取码:wl1e Windows版:visual studio 2017工程所在目录:src\out\vs\all.sln Mac(iOS)版:未运行gn Linux(Andor 阅读全文
posted @ 2018-11-09 10:09 github.com/starRTC 阅读(942) 评论(0) 推荐(0) 编辑
摘要:Git 有三种状态 已提交(committed)、已修改(modified)和已暂存(staged) 已提交表示数据已经安全的保存在本地数据库中。 已修改表示修改了文件,但还没保存到数据库中。 已暂存表示对一个已修改文件的当前版本做了标记,使之包含在下次提交的快照中。 由此引入 Git 项目的三个工 阅读全文
posted @ 2018-11-08 17:15 github.com/starRTC 阅读(486) 评论(1) 推荐(0) 编辑
摘要:web端用webRTC实现的一对一视频,互动直播和会议。https://github.com/starrtc/android-demo 安装depot_tools chromium的webrtc下载的时候,没有下载它的一些资源文件 src\third_party\webrtc\resources f 阅读全文
posted @ 2018-11-06 14:06 github.com/starRTC 阅读(1029) 评论(0) 推荐(0) 编辑
摘要:web端用webRTC实现的一对一视频,互动直播和会议。https://github.com/starrtc/android-demo Chromium requires Visual Studio 2017 (15.7.2) to build. 错误:Exception: Visual Studi 阅读全文
posted @ 2018-11-06 13:31 github.com/starRTC 阅读(3540) 评论(0) 推荐(0) 编辑
摘要:Visual Studio Professional 2015简体中文版(专业版) KEY:HMGNV-WCYXV-X7G9W-YCX63-B98R2 Visual Studio Enterprise 2015简体中文版(企业版) KEY:HM6NR-QXX7C-DFW2Y-8B82K-WTYJV 阅读全文
posted @ 2018-11-02 12:26 github.com/starRTC 阅读(910) 评论(0) 推荐(0) 编辑
摘要:1、查看当前所有可用的环境变量:输入 set 即可查看。 2、查看某个环境变量:输入 “set 变量名”即可,比如想查看path变量的值,即输入 set path 3、修改环境变量 :输入 “set 变量名=变量内容”即可,比如将path设置为“d:\nmake.exe”,只要输入set path= 阅读全文
posted @ 2018-11-01 17:19 github.com/starRTC 阅读(5356) 评论(1) 推荐(0) 编辑
摘要:windows: HTTP(S)代理服务器:127.0.0.1:5783 SOCKS代理服务器:127.0.0.1:5789 SOCKS5 代理设置: 12set http_proxy=socks5://127.0.0.1:1080set https_proxy=socks5://127.0.0.1 阅读全文
posted @ 2018-11-01 16:07 github.com/starRTC 阅读(4681) 评论(0) 推荐(0) 编辑
摘要:一句话说,Android Things就是让开发者可以使用Android开发工具开发嵌入式设备。 If you can build an app, you can build a device. 只要你会开发APP,你就能开发智能设备。 谷歌2016年12月发布的Android Things是一个面 阅读全文
posted @ 2018-11-01 13:53 github.com/starRTC 阅读(345) 评论(0) 推荐(0) 编辑
摘要:海康是生产监控摄像头和硬盘录像机的,海思是提供机器里芯片的,海思属于华为的。 http://www.hisilicon.com/en/Products/ProductList/Surveillance Hi3516A : Professional HD IP Camera SoC Booting f 阅读全文
posted @ 2018-11-01 11:08 github.com/starRTC 阅读(8553) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示