Questions tagged [ip-camera]

An Internet protocol camera which sends video data over the Internet

An Internet protocol camera which sends video data over the Internet. These cameras are frequently used for video surveillance.

716 questions
90
votes
3 answers

Issue with recording from the Open ONVIF (Network Video Interface Forum ) device

I'm working on Open Network Video Interface Forum-Java project and following the steps described in the ONVIF Application Programmer's Guide. I have generated sources from the wsdls provided in ONVIF site. I'm able to retrieve the live stream URI…
Neenu
  • 6,740
  • 1
  • 26
  • 52
37
votes
4 answers

Receiving RTSP stream using FFMPEG library

I have an IPCamera on my LAN streaming video using RTSP. I have been able to capture and display it successfully using ffplay command: ffplay rtsp://admin:123456@192.168.2.50:7070 (with authentication) So I would like to achieve the same using…
Bhanu Challa
  • 605
  • 1
  • 7
  • 13
33
votes
4 answers

Recording video feed from an IP camera over a network

I am building a camera security system for my office however we do not want to keep the DVR on site. We looked at NVR (network video recorders) and they are too expensive. I thought of an alternative to this. I do not know how much feasible it is…
YD8877
  • 9,236
  • 18
  • 56
  • 89
30
votes
3 answers

Android ICS and MJPEG using AsyncTask

I modified the MJPEG viewer code from Android and MJPEG to work using an AsyncTask (and thus work on Ice Cream Sandwich (ICS), 4.0.4) and here is my code. If anyone has any suggestions on how to optimize, cleanup, or do something more proper with…
bbodenmiller
  • 2,782
  • 5
  • 29
  • 48
28
votes
3 answers

Android and MJPEG

I need to get the mjpeg stream from an IP camera, anyone know the right way do it? I googled a bit and I find this example http://www.anddev.org/mjpeg_on_android_anyone-t1871.html but I've been stucked when I tried to get the stream from another…
bl4d3
  • 335
  • 1
  • 5
  • 8
27
votes
5 answers

How to parse mjpeg http stream from ip camera?

Given below is the code written for getting live stream from an IP Camera. from cv2 import * from cv2 import cv import urllib import numpy as np k=0 capture=cv.CaptureFromFile("http://IPADDRESS of the…
Prakhar Mohan Srivastava
  • 4,631
  • 21
  • 66
  • 113
26
votes
11 answers

Access IP Camera in Python OpenCV

How do I access my IP Camera stream? Code for displaying a standard webcam stream is import cv2 import numpy as np cap = cv2.VideoCapture(0) while(True): ret, frame = cap.read() cv2.imshow('frame',frame) if cv2.waitKey(1) & 0xFF ==…
Employee
  • 2,434
  • 3
  • 22
  • 42
22
votes
2 answers

Cross-browser solution for displaying MJPEG stream

Is there a lightweight, free, and reliable way to display MJPEG in a cross-browser environment? I'm trying to display an MJPEG stream from an Axis 2120 IP camera on a site that I'm developing, and I've found that this is quite reliable in current…
Nicholas J. Arnold
  • 324
  • 1
  • 2
  • 10
18
votes
5 answers

Use an IP-camera with webRTC

I want to use an IP camera with webrtc. However webrtc seems to support only webcams. So I try to convert the IP camera's stream to a virtual webcam. I found software like IP Camera Adapter, but they don't work well (2-3 frames per second and delay…
Minz
  • 301
  • 1
  • 2
  • 6
15
votes
2 answers

Android external camera options - overlay on top of video stream, no middleman server/router

I'm looking for a way to interface with an external camera from an Android device. The reason it needs to be an external camera is because I need to be able to modify the camera (remove IR filter) and I have no desire to break an on-board phone…
bbodenmiller
  • 2,782
  • 5
  • 29
  • 48
12
votes
1 answer

How to discover onvif devices in C#

I'm developing an application that will probe ONVIF devices attached on network for auto-discovery. According to ONVIF Core specification SOAP format of Probe message is :
user1828855
  • 123
  • 1
  • 1
  • 6
12
votes
3 answers

How to deal with cv::VideoCapture decode errors?

I'm streaming H264 content from an IP camera using the VideoCapture from OpenCV (compiled with ffmpeg support). So far things work ok, but every once in a while I get decoding errors (from ffmpeg I presume): [h264 @ 0x103006400] mb_type 137 in I…
George Profenza
  • 45,059
  • 16
  • 133
  • 201
11
votes
1 answer

OpenCV-Python: How to get latest frame from the live video stream or skip old ones.

I've integrated an IP camera with OpenCV in Python to get the video processing done frame by frame from the live stream. I've configured camera FPS as 1 second so that I can get 1 frame per second in the buffer to process, but my algorithm takes 4…
10
votes
5 answers

How to get an IP camera stream into C#?

I've used AForge library to make this little program, that shows live feed from a webcam into a PictureBox. private FilterInfoCollection VideoCaptureDevices; private VideoCaptureDevice FinalVideoDevice; private void Form1_Load(object sender,…
Roger
  • 6,177
  • 19
  • 55
  • 86
10
votes
1 answer

How to integrate multiple IP cameras into Android programmatically?

I am new in android networking. Now I am doing an Android network related project. In this project I want to integrate 6 IP cameras into my project and all cameras stream simultaneously. This IP cameras are Wi-Fi enabled cameras. The problem is…
Astro
  • 201
  • 1
  • 11
1
2 3
47 48