Main Features:
- Easy to integrate into video surveillance application
- Simple calls to support preview/record/playback
- Visual C, C++, Visual BASIC and JavaScript supported
- Sample codes included
- C Library edition
- ActiveX Control edition
- URL Command edition
- May decode with XViD, FFMPEG
- Support video and audio functions
Software modules
ACTi Streaming SDK modules include User Interface, Media, PTZ, Network, Video Motion Detection and Digital I/O modules. User may program with these modules through supported programming languages.
Decodes with Xvid, FFMPEG
Developers may get MPEG-4 raw stream with a simple function, then decodes with XViD, FFMPEG or other MPEG-4 compliant software decoders. Users may manipulate these MPEG-4 raw data by themselves, or decode them into RGB buffer and process them as a series of pictures, in this way, you can treat the decoded RGB buffer as if they are MJPEG streams. Sample codes are included. Sample implementation codes
To implement a video surveillance system with ActiveX Control, the codes is listed as follow:
;; preview
objMedia.MediaSource = “192.168.1.1”
objMedia.Account = “root”
objMedia.Password = “password”
objMedia.Play()
;; recording
objMedia.Record(“C:\\TEST.AVI”)
;; playback
objMedia.MediaSource = “C:\\TEST.AVI”
objMedia.Play()