java onvif是什么,讓我們一起了解一下?
ONVIF規(guī)范描述了網(wǎng)絡(luò)視頻的模型、接口、數(shù)據(jù)類型以及數(shù)據(jù)交互的模式。并復(fù)用了一些現(xiàn)有的標(biāo)準(zhǔn),如WS系列標(biāo)準(zhǔn)等。ONVIF規(guī)范的目標(biāo)是實(shí)現(xiàn)一個(gè)網(wǎng)絡(luò)視頻框架協(xié)議,使不同廠商所生產(chǎn)的網(wǎng)絡(luò)視頻產(chǎn)品(包括攝錄前端、錄像設(shè)備等)完全互通。
實(shí)戰(zhàn)操作:
Java如何整合ONVIF云臺(tái)控制獲取RTPM流地址,控制攝像機(jī)左右上下角度?
搜索發(fā)現(xiàn)設(shè)備獲取設(shè)備信息轉(zhuǎn)動(dòng)攝像頭提供兩種方式:
第一種main方法里直接發(fā)現(xiàn)設(shè)備獲取到設(shè)備ip獲取流地址或者轉(zhuǎn)動(dòng)攝像頭。
List?onvifPointer?=?OnvifDiscovery.discoverOnvifDevices(); for?(OnvifPointer?ref?:?onvifPointer)?{ System.out.println(ref.toString()); System.out.println("設(shè)備地址:"?+?ref.getAddress()); System.out.println("設(shè)備名:"?+?ref.getName()); System.out.println("設(shè)備:"?+?ref.getOnvifDevice()); System.out.println(ref.getSnapshotUrl()); } OnvifDevice?nvt?=?onvifPointer.get(0).getOnvifDevice(); //?獲取設(shè)備信息 GetDeviceInformationResponse?deviceInformation?=?nvt.getDevices().getDeviceInformation(); System.out.println("設(shè)備制造商:?"?+?deviceInformation.getManufacturer()); System.out.println("設(shè)備模型:?"?+?deviceInformation.getModel()); System.out.println("設(shè)備固件版本:?"?+?deviceInformation.getFirmwareVersion()); System.out.println("設(shè)備序列號(hào):?"?+?deviceInformation.getSerialNumber()); System.out.println("設(shè)備硬件id:?"?+?deviceInformation.getHardwareId()); //?獲取token List?profiles?=?nvt.getDevices().getProfiles(); for?(Profile?profile?:?profiles)?{ System.out.println("profile=="?+?profile); } String?profileToken?=?profiles.get(0).getToken();?//?PROFILE_000 //?設(shè)置StreamSetup StreamSetup?streamSetup?=?new?StreamSetup(); Transport?transport?=?new?Transport(); transport.setProtocol(TransportProtocol.UDP); streamSetup.setStream(StreamType.RTP_UNICAST); streamSetup.setTransport(transport); //?獲取流地址 String?getStreamUri?=?nvt.getMedia().getStreamUri(profileToken,?streamSetup); System.out.println("getStreamUri:"?+?getStreamUri); //?獲取視頻參數(shù) String?videoSourceToken?=?profiles.get(0).getVideoSourceConfiguration().getSourceToken(); System.err.println("videoSourceToken====="?+?videoSourceToken); ImagingSettings20?imagingSettings20?=?nvt.getImaging().getImagingSettings(videoSourceToken); System.err.println(imagingSettings20.getBacklightCompensation().getMode()); //?設(shè)置視頻參數(shù)上下轉(zhuǎn)動(dòng) nvt.getPtz().continuousMove(profileToken,?-1,?1,?1); nvt.getPtz().stopMove(profileToken);
第二種直接ip地址和用戶名密碼獲取流地址或者轉(zhuǎn)動(dòng)攝像頭。
try?{ OnvifDevice?nvt?=?new?OnvifDevice?nvt?=?new?OnvifDevice("192.168.1.200:80",?"admin","admin"); //?獲取設(shè)備信息 GetDeviceInformationResponse?deviceInformation?=?nvt.getDevices().getDeviceInformation(); System.out.println("設(shè)備制造商:?"?+?deviceInformation.getManufacturer()); System.out.println("設(shè)備模型:?"?+?deviceInformation.getModel()); System.out.println("設(shè)備固件版本:?"?+?deviceInformation.getFirmwareVersion()); System.out.println("設(shè)備序列號(hào):?"?+?deviceInformation.getSerialNumber()); System.out.println("設(shè)備硬件id:?"?+?deviceInformation.getHardwareId()); List?profiles?=?nvt.getDevices().getProfiles(); for?(Profile?profile?:?profiles)?{ System.out.println("dddd=="?+?profile); } String?profileToken?=?profiles.get(0).getToken();?//?PROFILE_000 StreamSetup?streamSetup?=?new?StreamSetup(); Transport?transport?=?new?Transport(); transport.setProtocol(TransportProtocol.UDP); streamSetup.setStream(StreamType.RTP_UNICAST); streamSetup.setTransport(transport); //?獲取流地址 String?getStreamUri?=?nvt.getMedia().getStreamUri(profileToken,?streamSetup); System.out.println("getStreamUri:"?+?getStreamUri); //?獲取視頻參數(shù) String?videoSourceToken?=?profiles.get(0).getVideoSourceConfiguration().getSourceToken(); System.err.println("videoSourceToken====="?+?videoSourceToken); ImagingSettings20?imagingSettings20?=?nvt.getImaging().getImagingSettings(videoSourceToken); System.err.println(imagingSettings20.getBacklightCompensation().getMode()); //?設(shè)置視頻參數(shù)上下轉(zhuǎn)動(dòng) nvt.getPtz().absoluteMove(profileToken,?0,?0,?0.5f); //?nvt.getPtz().stopMove(profileToken); //?System.err.println(nvt.getPtz().getPresets(profileToken)); }?catch?(ConnectException?e)?{ System.err.println("Could?not?connect?to?NVT."); }?catch?(SOAPException?e)?{ e.printStackTrace(); }
以上就是小編今天的分享了,希望可以幫助到大家。