- 浏览: 1482589 次
- 性别:
- 来自: 北京
最新评论
-
wahahachuang8:
我喜欢代码简洁易读,服务稳定的推送服务,前段时间研究了一下go ...
websocket的helloworld -
q114687576:
http://www.blue-zero.com/WebSoc ...
websocket的helloworld -
zhaoyanzimm:
感谢您的分享,给我提供了很大的帮助,在使用过程中发现了一个问题 ...
nginx的helloworld模块的helloworld -
haoningabc:
<div class="quote_title ...
qemu+emacs+gdb调试内核 -
leebyte:
太NB了,期待早日用上Killinux!
qemu+emacs+gdb调试内核
文章列表
注意mtu,需要aws和tx各网卡设置成一致的
ifconfig设置就可以
ifconfig eth0 mtu 1500
aws:
eth0:172.31.33.238
ppp0:192.168.3.99---------172.17.0.13
tx:
eth0: 172.17.0.13
ppp0: 172.17.0.13-------- 192.168.3.99
ppp1:192.168.2.99---------192.168.2.128
手机 192.168.2.128
tx:
iptables -t nat -A POSTROUT ...
bert几乎同一天下的时候,
rasa这个nlu的框架如何使用bert,可用的超级攻略在此:
代码在:
https://github.com/killinux/rasa_bert
git clone https://github.com/killinux/rasa_bert
cd rasa_bert
哈,安装可能错误比较多,用我的方式:
pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
pip uninstall tensorflow
pip install tensor ...
中文的rasa分支Rasa_NLU_Chi在安装过程中有一些错误:
https://blog.csdn.net/qq_30650047/article/details/96697361
在mac上使用conda,避免污染环境
conda info --env
conda create --name rasa_chi python=3.7
conda activate rasa_chi
避免mkl报错,需要安装mkl
conda install mkl-devel
如果需要升级conda
conda update -n base -c defaults conda
...
参考https://www.jianshu.com/p/3d0bb34c488a
rasa:https://blog.csdn.net/u012526436/article/details/82911565
一个是基于MRPC(Microsoft Research Paraphrase Corpus )的句子对分类任务,一个是基于SQuAD语料的阅读理解任务。run demo分为以下几步
零。先安装环境安装
Anaconda3-2019.10-MacOSX-x86_64.pkg
conda基本使用
conda默认装在了~/opt/下
conda init zsh
conda cr ...
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install -g webassembly
Learn-WebAssembly 第十章
如果使用llvm-wasm 参考
https://blog.csdn.net/weixin_34356555/article/details/89572081
memory.wasm在
https://github.com/killinux/wasm-stdlib-hack
mac install emcc:
brew install SDL2 SDL2_i ...
1.websocket转发的最简单server
2.h5接收websocket数据,写到img里
3.h5获取摄像头,并send到另一端
server代码:
sendserver.js
var express = require('express'),
app = express(),
server = require('http').createServer(app);
server.listen(3000);
app.get('/', function(req, res) {
res.sendfile(__dirname + '/send.html');
...
getImageFile()获取网络图片
showImage()加载本地indexedDB图片
<html >
<head><meta charset="UTF-8"></head>
<body onload="showImage()">
<pre>
通过chrome://indexeddb-internals/# 查看indexdb的存储路径,可以手动删除做测试
基本内容:http://www.ruanyifeng.com/blog/2018/07/indexed ...
1。无服务的方式:udp,
2。srs作为服务端:rtmp推收都可用 ;srt推,rtmp播放可用,支持264 https://haoningabc.iteye.com/admin/blogs/2513514
3。srt-live-server作为服务端: srt协议推收测试可用,支持264 https://haoningabc.iteye.com/admin/blogs/2513939
4。nginx-rtmp-module && pingos作为服务端:rtmp推收都可用, 可以支持265 https://haoningabc.iteye.com/admin/blogs/25 ...
概念:
视频码率:视频码率就是数据传输时单位时间传送的数据位数,一般我们用的单位是kbps即千位每秒。通俗一点的理解就是取样率,单位时间内取样率越大,精度就越高,处理出来的文件就越接近原始文件
帧率:hz
FEC:前向纠错也叫前向纠错码(Forward Error Correction,简称FEC)
udp的基本粒子:
ffmpeg -re -i chrome.mp4 -f h264 udp://127.0.0.1:6666
ffplay udp://127.0.0.1:6666
###################### ffmpeg 264 265. 转视频文件 #### ...
除了srs,有个可以直接支持srt的sls
srt-live-server
git clone https://github.com/Edward-Wu/srt-live-server
make
1.启动服务
bin/sls -c sls.conf
2.推流
ffmpeg -f avfoundation -framerate 30 -i "0:0" -vcodec libx264 -preset ultrafast -tune zerolatency -flags2 local_header -acodec libmp3lame -g 30 -pkt_siz ...
参考:https://www.jianshu.com/p/3957c55a702d
实时模式用于传送实时多媒体流。
实时模式下,数据分片(默认是1316 = 7 * 188,188是单个MPEG TS大小)在一定的速率控制下发出,并且在接收端按照发送端发送的时间间隔重新组织好。
默认情况下,接收端重组会有一定的时延,默认为120ms。
参考
https://github.com/Haivision/srt/blob/master/examples/test-c-server.c
和
https://github.com/Haivision/srt/blob/master/exam ...
协议:rtmp. hls flv
264 265 标准
####################################
准备:
yum install autoconf automake bzip2 cmake freetype-devel gcc gcc-c++ git libtool make mercurial pkgconfig zlib-devel harfbuzz-devel -y
yum install bzip2 bzip2-devel -y
yum install tcl tcl-devel -y
cent ...
srs代码:
git clone https://github.com/ossrs/srs
./configure
make安装
启动
cd trunk
./objs/srs -c conf/rtmp.conf
默认的即可
listen 1935;
max_connections 1000;
daemon off;
srs_log_tank console;
vhost __defaultVhost__ {
}
netstat -nltp|grep 1935检查端口
把流推导服务器,默认端口就是1 ...
注意:scl enable devtoolset-7 bash
这个不是默认的gcc
centos安装ffmpeg
:https://www.jianshu.com/p/94a1759ceb34
~/ffmpeg_source 源码
~/ffmpeg_build 安装
~/bin 二进制
注意pkgconfig的设置,so的寻找路径,配置错误有可能找不到so,会有lib和lib64的问题,
也可以用LD_LIBRARY_PATH 帮助解决
yum install autoconf automake bzip2 cmake freetype-devel gcc gcc ...
1。无服务的方式:udp,
2。srs作为服务端:rtmp推收都可用 ;srt推,rtmp播放可用,支持264 https://haoningabc.iteye.com/admin/blogs/2513514
3。srt-live-server作为服务端: srt协议推收测试可用,支持264 https://haoningabc.iteye.com/admin/blogs/2513939
4。nginx-rtmp-module && pingos作为服务端:rtmp推收都可用, 可以支持265 https://haoningabc.iteye.com/admin/blogs/25 ...