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.

745 questions
5
votes
5 answers

Embed IP camera in web browser

I'm currently working on a smart home project, which conects sensors and that stuff. The main server runs on a Raspberry Pi, and was designed using Node JS. On the local network, you can access the system web page and see logs, users and manage the…
user3735796
  • 191
  • 2
  • 2
  • 7
5
votes
1 answer

Solution to Subresource requests whose URLs contain embedded credentials are blocked

http://username:password@domain.com/snap I have been using this embedded credentials method to retrieve photos from IP Cameras. Now that Google Chrome update blocked this method, I got this error: [Deprecation] Subresource requests whose URLs…
user3162662
  • 743
  • 1
  • 7
  • 20
5
votes
2 answers

Playing RTSP with python-gstreamer

I use gstreamer for playing RTSP stream from IP cameras (like Axis.) I use a command line like this: gst-launch-0.10 rtspsrc location=rtsp://192.168.0.127/axis-media/media.amp latency=0 ! decodebin ! autovideosink and it work fine. I want to…
tirlototo
  • 111
  • 1
  • 3
  • 8
5
votes
1 answer

Constructing a JPEG image from RTSP MJPEG stream

I am trying to construct a JPEG image from the RTSP MJPEG stream of an IP Camera. I am using CURL to get the RTSP data and then I am following the RTP Payload Format for JPEG-compressed video RFC I have been successfully able to form JPEG images…
Manny
  • 699
  • 6
  • 19
5
votes
1 answer

OpenCV and Network Cameras -or- How to spy on the neighbors?

A bit of context; this program was built originally to work with USB cameras - but because of the setup between where the cameras needs to be and where the computer is it makes more sense to switch to cameras run over a network. Now I'm trying to…
Alexander
  • 261
  • 4
  • 18
5
votes
5 answers

Extract metadata from a Video/Image

I am getting an MJPEG stream from an IP Camera which I am viewing and saving on my computer. The code of how I am doing it can be found here. The answer explains how to extract the images from the stream and save them. For extracting the images I am…
praxmon
  • 5,009
  • 22
  • 74
  • 121
5
votes
2 answers

VLC command to stop recording a stream

First of all, thanks everyone who is even reading this. I'm able to save a stream from my IP CAM into a file using the given command (although I'm getting no audio recorded to the file, if anyone can help with that would be great too) cvlc…
5
votes
0 answers

IP Cameras and their supported protocol

Do the majority of IP cameras support RTSP? Also, apart from using uPnP and Bonjour are there any other ways of detecting IP cameras on the local network?
Andrew Simpson
  • 6,883
  • 11
  • 79
  • 179
5
votes
1 answer

OpenCV VideoCapture IP camera reconnection

I'm reading images from a camera through HTTP. This is the code: Mat src; VideoCapture cap(); cap.open("http://192.168.1.10:8008"); // IP camera while(1) { cap.read(src); // Other code } It works perfectly, but after running for a while if…
dablak
  • 1,376
  • 1
  • 11
  • 21
4
votes
0 answers

Trouble opening video stream in Python using Axis 212 PTZ IP camera and openCV

I have been trying for some time now to connect my Axis 212 PTZ IP camera to a Python window using the openCV package, but so far have been unsuccessful. Most examples i have found to this point use the following code, specifically the .VideoCapture…
4
votes
0 answers

Get the latest image from IP Camera in Java

I'm working on Java APP that will process the stream from the IP Camera (Milesight MS-C2682-P) located on Local network. It will detect objects and trigger actions depending on what's in the image (let´s say it will start an alarm, when a person is…
Jake_3H
  • 372
  • 4
  • 14
4
votes
1 answer

How to take the latest frame from an ip camera with Opencv?

I need to take snapshots of an ip camera connected to my raspberry pi 3 b+. I´m using python3 and opencv. There is a timer in the camera so I can check if the snapshot is taken in the right moment. This script works well in my PC with Windows but…
4
votes
1 answer

OpenCV cv2.VideoCapture() stopping to read RTSP IP camera

Hello im learning opencv and im reading a ip camera through rtsp:// videoStream = "rtsp://admin:123456@10.0.0.1:554/Streaming/Channels/1" capture = cv2.VideoCapture(videoStream) im reading this stream and im making a facial detection in opencv but…
Jasar Orion
  • 626
  • 7
  • 26
4
votes
1 answer

Get rtsp stream from Axis camera on Android

I'm trying to show rtsp stream from an Axis camera into a mediaplayer object, here the code: public class Rtsp extends Activity { String PATH_TO_STREAM = "rtsp://192.168.131.21/mpeg4/1/media.3gp"; private VideoView video; private MediaController…
Mattia Lipreri
  • 953
  • 1
  • 16
  • 30
4
votes
0 answers

How to stream from webcam to React-Native app?

I want to stream video from a webcam to my react-native app. How do I do this?. Which module should i use in react-native for this?
Arshak Anjum
  • 142
  • 1
  • 10