今天头给了我一个新活,客户手上有一个高速摄影机,目前他们采集数据的方式仅仅是利用另外一个蓝线接口,他们现在想通过HD-SDI接口实现监控方式的数据采集,这个口和电脑连接还需要一个HD-SDI采集卡,黄哥让我去调研一下有没有合适的采集卡,包括品牌和价格。
简单搜索后发现,这种在直播行业中非常常见,主要关注两个参数,一个是1080p,一个是USB3.0,再往上肯会有2k,价格会贵一些,但是这个相机是1080p,60帧,也没必要上那么高的参数。
尝试和一款1600+rmb的采集卡销售咨询,他们直接把我拉进了包含他们工程师的销售群,不过在我抛出有无pc端驱动可以将画面直接传到网页上播放的问题后瞬间哑火,我还以为这种方案非常常见,而且卖这么贵可能会有自己的独立驱动程序。
退群后意识到采集卡的作用都是一致的,他的任务就是将流从摄像机导出,输送到电脑。至于怎么买后实现传输画面,那并不是采集卡厂商的活,而是我们自己需要解决的问题。
下面是简单调研的word,在调查比较之后,我认为LCC382 SDI相机采集卡 就是性价比比较高和实用的采集卡了。
我发现现在主流的直播软件OBS STUIO可以很好的解决第一阶段传输到电脑上面的问题。
可以非常方便的选择输入源,这里可以是本机的屏幕,vlc源(视频),高速摄像机画面。
这里我查阅了非常非常非常非常多的资料,了解到在上一家公司实习时候熟悉的nginx可以提供解决方案。下载了很多很多的nginx,因为并不支持rtmp,所以需要手动配置。这里花了至少五个小时才在csdn找到了合适的组件,火速下载。
链接贴在下面:
nginx搭建自己的rtmp服务器_nginxrtmp资源-CSDN文库
流媒体服务器 (nginx-rtmp):接收RTMP流并分发给客户端。
配置nginx-rtmp(这里可以直接参考原博主利用Nginx搭建自己的rtmp服务器_nginx rtmp-CSDN博客)
编辑nginx配置文件(通常是nginx.conf),添加以下配置以启用RTMP模块:
#user nobody;
# multiple workers works !
worker_processes 2;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 8192;
# max value 32768, nginx recycling connections+registry optimization =
# this.value * 20 = max concurrent connections currently tested with one worker
# C1000K should be possible depending there is enough ram/cpu power
# multi_accept on;
}
rtmp {
server {
listen 1935;#监听端口,若被占用,可以更改
chunk_size 4000;#上传flv文件块儿的大小
application live { #创建一个叫live的应用
live on;#开启live的应用
allow publish all;#
allow play all;
}
}
}
http {
#include /nginx/conf/naxsi_core.rules;
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr:$remote_port - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
# # loadbalancing PHP
# upstream myLoadBalancer {
# server 127.0.0.1:9001 weight=1 fail_timeout=5;
# server 127.0.0.1:9002 weight=1 fail_timeout=5;
# server 127.0.0.1:9003 weight=1 fail_timeout=5;
# server 127.0.0.1:9004 weight=1 fail_timeout=5;
# server 127.0.0.1:9005 weight=1 fail_timeout=5;
# server 127.0.0.1:9006 weight=1 fail_timeout=5;
# server 127.0.0.1:9007 weight=1 fail_timeout=5;
# server 127.0.0.1:9008 weight=1 fail_timeout=5;
# server 127.0.0.1:9009 weight=1 fail_timeout=5;
# server 127.0.0.1:9010 weight=1 fail_timeout=5;
# least_conn;
# }
sendfile off;
#tcp_nopush on;
server_names_hash_bucket_size 128;
## Start: Timeouts ##
client_body_timeout 10;
client_header_timeout 10;
keepalive_timeout 30;
send_timeout 10;
keepalive_requests 10;
## End: Timeouts ##
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
## Caching Static Files, put before first location
#location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ {
# expires 14d;
# add_header Vary Accept-Encoding;
#}
# For Naxsi remove the single # line for learn mode, or the ## lines for full WAF mode
location / {
#include /nginx/conf/mysite.rules; # see also http block naxsi include line
##SecRulesEnabled;
##DeniedUrl "/RequestDenied";
##CheckRule "$SQL >= 8" BLOCK;
##CheckRule "$RFI >= 8" BLOCK;
##CheckRule "$TRAVERSAL >= 4" BLOCK;
##CheckRule "$XSS >= 8" BLOCK;
root html;
index index.html index.htm;
}
# For Naxsi remove the ## lines for full WAF mode, redirect location block used by naxsi
##location /RequestDenied {
## return 412;
##}
## Lua examples !
# location /robots.txt {
# rewrite_by_lua '
# if ngx.var.http_host ~= "localhost" then
# return ngx.exec("/robots_disallow.txt");
# end
# ';
# }
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000; # single backend process
# fastcgi_pass myLoadBalancer; # or multiple, see example above
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl spdy;
# server_name localhost;
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_timeout 5m;
# ssl_prefer_server_ciphers On;
# ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
# ssl_ciphers ECDH+AESGCM:ECDH+AES256:ECDH+AES128:ECDH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!eNULL:!MD5:!DSS:!EXP:!ADH:!LOW:!MEDIUM;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
修改完后就可以启动nginx。
在OBS中找到设置,可以修改成本地的服务器(中间的部分为本地ip地址也可以直接写localhost),这里的推流码可有可无,直接写123也行。
随后打开万能播放器vlc,左上角媒体,打开网络串流,输入同样的URL即可。
下面是效果:
测试出延迟在1-2秒。
算是初步实现了基于流媒体服务器 (nginx-rtmp):接收RTMP流并分发给客户端。
下一步是将画面显示在网页上。下一篇讲如何在网页显示