user4096371
user4096371

Reputation:

How to save video stream without using a SDK

I'm developing an app that interacts with ONVIF compliant network cameras. So far I've been able to manage discovery, security, streaming and ptz by my self according to ONVIF specifications. Now I need to save a video stream to a file on my PC, but so far I've been unable to find how to do it without using a third party SDK like Ozeki for example.

Any help??

Upvotes: 0

Views: 1494

Answers (1)

Ottavio Campana
Ottavio Campana

Reputation: 4168

You need the get the list of the profiles configured in the device by using the media service (see §5.2). After that, you need to get the StreamingURI for the desired profile (see 5.15) and then you get the video with RTSP from the URI you obtained.

Upvotes: 1

Related Questions