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
11
votes
1 answer

Live video streaming from an Wireless IP Camera to Android mobile

Here, I have to get live video streaming from an wireless Ip camera to android mobile using RTSP protocol.Camera is connected to the wireless router and mobile also has same wifi network.Now I need to implement live video streaming from camera. For…
vignesh ramanathan
  • 121
  • 1
  • 1
  • 5
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,443
  • 20
  • 61
  • 88
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
  • 12
10
votes
1 answer

ffmpeg restream rtsp to mjpeg

I have a few IP cameras that stream 720 X264 video over rtsp. The streams are really unreliable when viewing on Android. They also fail if more then 2 connections are made. I have a ubuntu server that I can use to connect and restream as mjpeg or…
JpaytonWPD
  • 485
  • 1
  • 7
  • 22
10
votes
4 answers

IP camera: open source software for recording H.264

I have an IP camera (Axis M1054) and I would like to record video stream. I would probably start with continuous recording, but then I would like to switch to clips triggered by motion detection (with pre-rec of couple seconds before the trigger…
Martin Vegter
  • 136
  • 9
  • 32
  • 56
10
votes
2 answers

Receiving video stream from an IP camera on android

I have an IP camera which is streaming video in MJPEG format. Now my aim is to receive it and display it in my own custom android app. For this I have three programming alternatives on android platform : Using inbuilt Anrdroid MediaPlayer…
Bhanu Kiran
  • 645
  • 1
  • 8
  • 14
9
votes
6 answers

Access IP camera with OpenCV

Can't access the video stream. Can any one please help me to get the video stream. I have searched in google for the solution and post another question in stack overflow but unfortunately nothing can't solve the problem. import cv2 cap =…
Taimur Islam
  • 960
  • 2
  • 11
  • 25
9
votes
1 answer

How to convert a C++ union to Delphi

I know this has been asked before, but I am unsuccessfully trying to convert some C++ structures/unions to Delphi to use the Hikvision SDK. The C++ structures/unions I’m trying to convert are as follow: struct{ BYTE …
tobi-wan
  • 93
  • 3
9
votes
4 answers

Convert RTSP stream to virtual web camera

I am trying to use a RTSP stream from an IP camera as video input source for various applications on Windows (eg. Skype, Zoom, Microsoft Teams, etc.). The only solution I have found so far is using "webcam 7", an application that fetches an RTSP…
astralmaster
  • 2,344
  • 11
  • 50
  • 84
8
votes
3 answers

IP Camera access using OpenCV

The code given below is for accessing an Axis IP camera using OpenCV. On running the program it first displays "Error in opening cap_ffmpeg_impl..." and then it displays Camera not found. #include #include…
praxmon
  • 5,009
  • 22
  • 74
  • 121
8
votes
3 answers

OpenCV: How to capture frames from an Ethernet camera

I have earlier programmed USB webcam, where the sole aim is to get the live frames from the camera and display in a window. I used cvCaptureFromCAM for that purpose, which worked fine for USB Camera(see code below). I want to know how do I capture…
gpuguy
  • 4,607
  • 17
  • 67
  • 125
7
votes
4 answers

Get frame to Hikvision IP Camera in python

I have the next Hikvision IP Camera http://www.hikvision.com/es/Products_accessries_161_i11969.html I configured it in my local network and I have connection with the browser and I can see the camera working perfectly. I have searched in different…
Francisco Pérez
  • 73
  • 1
  • 1
  • 4
7
votes
1 answer

Error while decoding camera stream video frame using FFMpeg iOS

I have an app, In which I am decoding video frames coming from ip camera, but the method avcodec_decode_video2(m_pCodecCtx, m_pFrame, &consumed_bytes, &avpkt); present in avcodec.h generating bad_access, I can't figure out what is wrong. This app…
Irfan Gul
  • 1,579
  • 13
  • 23
7
votes
3 answers

Is there a way to execute PHP script if there is NO new requests for some time?

Is there a way in PHP to take some action (mysql insert for example) if there is no new requests for say 1 second? What I am trying to achieve is to determinate beginning and the end of image sequence sent from a IP camera. Camera sends series of…
Gawran
  • 358
  • 2
  • 8
7
votes
3 answers

Read h264 stream from an IP camera

Currently, I am trying to use opencv to read a video from my Canon VB-H710F camera. For this purpose I tried two different solutions: SOLUTION 1: Read the stream from rtsp address VideoCapture cam…
João Neves
  • 71
  • 1
  • 1
  • 3
1
2
3
49 50