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
4
votes
2 answers

OpenCV network (IP) camera frames per second slow after initial burst

EDIT: Upgrading to OpenCV 2.4.2 and FFMPEG 0.11.1 seems to have solved all the errors and connection problems, but it still hasn't solved the slow-down of frame rate. I am using the default OpenCV package in Ubuntu 12.04 which I believe is 2.3.1. I…
zzzz
  • 682
  • 10
  • 16
4
votes
2 answers

RTSP live streaming from IP Camera

Is it possible to see the live stream of an IP camera using RTSP ? Example URL: rtsp://public ip:554/1363e66e.mp4 The encoding is mp4 h.264 baseline profile at 320 x 240 resolution. I followed the Wiki link here. But I get the error: Prefetch error…
Viraj
  • 1,880
  • 22
  • 31
3
votes
1 answer

onvif.exceptions.ONVIFError: Unknown error: No such file: /etc/onvif/wsdl/devicemgmt.wsdl

I have bought a V380 ip camera avaiable at https://www.daraz.pk/products/i1977066-s1481128974.html?urlFlag=true&mp=1 . I am trying to implement onvif client in Python. When I run the following code from onvif import ONVIFCamera mycam =…
3
votes
2 answers

Obtaining frames from IP Camera with low latency

I am currently using this command to get frames from my RTSP stream and reading frames from stdout: ffmpeg -nostdin -rtsp_transport tcp -i -pix_fmt bgr24 -an -vcodec rawvideo -f rawvideo - However, I would like to get the same latency…
Russ1337
  • 51
  • 1
  • 6
3
votes
0 answers

Stream FLV video in browser

I've got an IP camera that produce a flv stream on a URL like: http://192.168.0.6/flv?port=1234&app=bcs&stream=channel0_main.bcs The URL works fine in VLC. I tried to stream the video in Chrome with video.js according to this previous…
Fifi
  • 3,360
  • 2
  • 27
  • 53
3
votes
0 answers

Sniffing an RTMP stream from an OOSSXX IPCAM

I'm trying to sniff RTMP streams from my IPCAM for recording them separately from my computer. Unfortunately, they do not support RTSP unless connected directly to the PC instead of the NVR, however, I noticed that the web gui has RTMP streams that…
user3839044
  • 235
  • 1
  • 6
  • 22
3
votes
0 answers

Stream multiple RTMP IP Cameras with OBS and ffmpeg

I created a streaming server using Nginx and the RMTP module on a VPS running CentOS 7. I am trying to stream multiple IP cameras using OBS for broadcasting the stream. My question is how to create multiple m3u8 stream files for each camera, using…
Nck80
  • 31
  • 2
3
votes
1 answer

How to get http stream from wifi camera compressed format: h.264 on python?

Hy! I am working on a project for school using a HD-eyewear Wifi Camera that uses H.264 compressed format. I have read a lot of documentation about how to get the frames from the camera, but I shouldn't manage my problem. My code looks like…
Fellon
  • 61
  • 5
3
votes
2 answers

How to authenticate to IP camera using OpenCV

I'm trying to connect to an IP Camera (Dahua) using OpenCV and Python using an RTSP URI. I added a sample code below (with the username, password and ip provided in separate variables), which results in [rtsp @ 0x55cc3715c600] method OPTIONS failed:…
sPY4CN
  • 61
  • 1
  • 5
3
votes
2 answers

Port missing in uri warning: Error opening file with Python OpenCV cv2.VideoCapture()

I got a blunder as depicted beneath when I endeavor to stream ipcam "[tcp @ 000000000048c640] Port missing in uri warning: Error opening file (/build/opencv/modules/videoio/src/cap_ffmpeg_impl.hpp:901)" import numpy as np import…
Step In
  • 31
  • 1
  • 4
3
votes
1 answer

FFmpeg RTSP problem with IP camera

I download FFmpeg windows binary and use ffplay.exe successfully for media files and some Ip Cameras with RTSP support (eg Acti). I try ffplay on a Bosch( h264) NDC 265 P camera it does not work. When i start ffplay with debug option i get…
NoviceAndNovice
  • 705
  • 2
  • 13
  • 21
3
votes
2 answers

How to access a IP Camera in python using ONVIF to record a video

Friends, i'm trying to record a video using IP Camera in python2. I can able to get only device name using "devicemgmt", similarly i am doing for "media" and "recording".Error comes like this. for media: "WARNING:suds.umx.typed:attribute (ViewMode)…
3
votes
1 answer

Connecting to Hikvision Camera using python and open cv

i want to Connect Hikvision ip camera with python and open cv using this code : import numpy as np import cv2 cap = cv2.VideoCapture() cap.open("rtsp://yourusername:yourpassword@172.16.30.248:555/Streaming/channels/2/") while(True): # Capture…
miss nefrat
  • 93
  • 1
  • 1
  • 9
3
votes
4 answers

OpenCV - RTSP stream not opening

I have a RTPS streaming camera. The stream works fine when I test it with VLC: vlc -vvv rtsp://192.168.0.23:554/stream However with openCV it does not open: cv::VideoCapture capture; bool ok =…
goaran
  • 353
  • 2
  • 11
3
votes
1 answer

Control PTZ of an IP Camera

I am building a project using the IP Camera Intelbras 5220 SD IR Datasheet. In this project, I am using a website through which I can access the camera, but also need to control the movement of this camera, i.e. I need to control its PTZ. I have no…