最近忙于新產品技術點突破,針對架構摸索暫時停住。目前需要解決的問題是如何從視頻流中截取一張圖。
概況
在安防領域有各種視頻監(jiān)控產品办成,它們遵循的通訊協(xié)議也不盡相同,歸納起來主要遵循GB/T 28181搂漠、ONVIF迂卢、PSIA等協(xié)議。
GB/T 28181協(xié)議
其通信協(xié)議如下所示
其視頻編碼格式主要有:MPEG-4桐汤、H.264而克、SVAC等,目前主流的視頻編碼格式是H.264怔毛。
其實時傳輸協(xié)議為RTP员萍,在此傳輸協(xié)議基礎上對視音頻數據進行封裝,其又分為PS封裝和非PS封裝:
基于RTP的PS封裝拣度,是將視音頻流封裝成PS包充活,再將PS包以負載的方式封裝成RTP包。
基于RTP的非PS封裝蜡娶,是直接將視音頻流以負載的方式封裝成RTP包。
如果對RTP協(xié)議感興趣可以參考:
RTP協(xié)議分析
RTSP/RTP/RTCP詳解整理
RTP協(xié)議全解析(H264碼流和PS流)
RTP/RTSP/RTCP有什么區(qū)別映穗?
Wireshark 抓包分析 RTSP/RTP/RTCP 基本工作過程
公司裝有一臺宇視的電警卡口抓拍機HC161智能交通600萬攝像單元窖张,可以看出該電警搭載的網絡攝像頭支持ONVIF、GB/T28181等協(xié)議蚁滋,同時查看其視頻配置
可以嘗試通過VLC連接RTSP視頻流
安裝ffmpeg
在CentOS7上安裝ffmpeg
yum -y install epel-release
rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro
rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-1.el7.nux.noarch.rpm
yum search ffmpeg
yum -y install ffmpeg ffmpeg-devel
ffmpeg -version
ffmpeg -y -i rtsp://user:password@ip:port-ss 00:00:01 -vframes 1 -f image2 -vcodec png image.png
Java調用腳本
腳本正確調用宿接,接下來就通過Java調用遠程服務器上腳本實現視頻流截圖赘淮,在此借助Ganymed SSH-2 for Java,實現SSH遠程執(zhí)行腳本睦霎。
package com.dhl.runshell;
import ch.ethz.ssh2.Connection;
import ch.ethz.ssh2.Session;
import ch.ethz.ssh2.StreamGobbler;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
/**
* Created by daihl on 2017/10/10.
*/
public class CommandRunner {
public static Connection getOpenedConnection(String host, String username, String password) throws IOException {
Connection conn = new Connection(host);
conn.connect(); // make sure the connection is opened
boolean isAuthenticated = conn.authenticateWithPassword(username, password);
if (isAuthenticated == false)
throw new IOException("Authentication failed.");
return conn;
}
public static String execShellScript(String host, String username,
String password,
String cmd, int port) throws IOException {
Connection conn = null;
Session sess = null;
InputStream stdout = null;
BufferedReader br = null;
StringBuffer buffer = new StringBuffer("exec result:");
buffer.append(System.getProperty("line.separator"));// 換行
try {
conn = getOpenedConnection(host, username, password);
sess = conn.openSession();
sess.execCommand(cmd);
stdout = new StreamGobbler(sess.getStdout());
br = new BufferedReader(new InputStreamReader(stdout));
while (true) {
// attention: do not comment this block, or you will hit
// NullPointerException
// when you are trying to read exit status
String line = br.readLine();
if (line == null)
break;
buffer.append(line);
buffer.append(System.getProperty("line.separator"));// 換行
}
} finally {
sess.close();
conn.close();
}
return buffer.toString();
}
public static void main(String[] args) {
String cmd = "ffmpeg -y -i rtsp://user:password@ip:port -ss 00:00:01 -vframes 1 -f image2 -vcodec png image.png;echo end";
try {
String info = CommandRunner.execShellScript("ip", "user",
"password",cmd,22);
System.out.println("info is:"+info);
} catch (IOException e) {
e.printStackTrace();
}
}
}
后繼工作
通過SSH遠程執(zhí)行腳本有點簡單粗暴梢卸,何不將這截圖功能做成服務,向外發(fā)布副女,更加靈活方便蛤高。故后期工作如下:
準備一臺圖片服務器,其主要職責有
1.圖片文件存儲
2.響應終端的抓圖請求碑幅,并將圖片保存到指定文件夾目錄下
3.響應終端的合圖請求戴陡,以上兩者做成服務的形式,終端通過分布式調用服務沟涨,完成操作并返回結果狀態(tài)
4.接收終端上傳的圖片
硬件需求:
1.因圖片服務器上安裝ffmpeg工具恤批,其需要對視頻流進行解碼,并按照png格式組織編碼裹赴,對計算性能要求高喜庞,所以CPU性能要好
2.作為圖片文件存儲服務器,存儲容量要大
3.接受多終端設備連接棋返,網口帶寬要大
后記
因為要接收反饋結果延都,cmd命令可以這樣寫
rtsp://user:password@ip:port -ss 00:00:01 -vframes 1 -f image2 -vcodec png image.png && echo succeeded ||echo failed
當ffmpeg執(zhí)行正確時,會輸出succeeded懊昨,當ffmpeg不能正確執(zhí)行時窄潭,會輸出failed
新建目錄文件夾,將截圖文件放入指定文件夾中
if [ ! -d /home/daihl/$(date +%Y%m%d) ]; then mkdir -p /home/daihl/$(date +%Y%m%d)&&echo "mkdir"; fi