ip-camera

How do I create a live video recording program on Visual Studio using c#?

元气小坏坏 提交于 2019-12-20 07:40:07
问题 I am currently doing a project for school and desperately in need of help. The main gist of the project: I am using 3 Bosch Dinion IP Cameras to film students during a lecture. I have to create a program on Visual Studio that enables the lecturer to view all 3 cameras on one screen, able to record all 3 footages and then save them in a database afterwards. The thing about Bosch is that there is very limited material for me to refer to online. I have already referred to SDKs from Bosch and

ffmpeg restream rtsp to mjpeg

五迷三道 提交于 2019-12-18 11:13:30
问题 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 something else. There are tons of different commands out there but they all seem to involve transcoding the video. How can I simply restream the live rtsp feed as a mjpeg without doing anything to the video itself? Theres no audio so no worries there

OpenCV IP Camera RTSP stream

北城余情 提交于 2019-12-18 09:24:18
问题 I'm trying to access a RTSP video stream from an IP camera using OpenCV and Java. I can access the stream using VLC player with the following format: rtsp://192.168.1.10:554/rtsp_live0 but when I try to use OpenCV the video stream seems to always be closed. The code I'm using... (simplified) VideoCapture capture = new VideoCapture(); capture.open("rtsp://192.168.1.10:554/rtsp_live0"); while(!capture.isOpened()) System.out.print("Not opened :( \r"); I have a Mustcam H806P and found the stream

how to get video from ip camera using emgucv

依然范特西╮ 提交于 2019-12-17 20:59:16
问题 Summary: I'm trying to get video from IP camera in emgu, I could display video in the browser from an ip like "http://169.254.255.253". Question: How could I display this from emgu? 回答1: Capture _Capture = new Emgu.CV.CvInvoke.cvCreateFileCapture("http://username:pass@cam_address/axis-cgi/mjpg/video.cgi?resolution=640x480&req_fps=30&.mjpg"); I didn't test but may be this code snippet or approach can help you. For OpenCV example you can examine this page: OpenCV with Network Cameras And you

Cross-browser solution for displaying MJPEG stream

北战南征 提交于 2019-12-17 10:40:53
问题 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 versions of Firefox. However, after some testing I've found that IE, Opera and Chrome all have varying degrees of trouble doing this (no Mac access, so I'm not sure about Safari). Internet Explorer has no support for MJPEG and doesn't work at all.

Receiving RTSP stream using FFMPEG library

随声附和 提交于 2019-12-17 06:27:11
问题 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 programming in C/C++ using ffmpeg library. I guess this must be possible. So let me phrase two simple questions : How do I receive the stream in a C/C++ program using FFMPEG library? (just provide some URL/tutorial, as google was not helpful) How do I

Fake http server for testing purpose

倾然丶 夕夏残阳落幕 提交于 2019-12-14 04:19:12
问题 I have an application that connect to an IP camera and that do HTTP request to get image and M-JPEG. For now it's ok because I have the camera in the developpement room. But in a few weeks, the cam will be out in production (they are very expensive cam) so I will not have them for testing and debugging my app. What I want to know is what would be the best way to "mock" these cams? For now, my application is using 2 cams, let's say they are on http://192.168.88.1 and http://192.168.88.2. I

embedding live ip camera feed into webpage

纵饮孤独 提交于 2019-12-14 02:45:02
问题 i am trying to set up a few ip cameras for a client. yet i am having trouble getting the stream from the camera to the webpage then for it to play through a player. i have tried different players such as WMP, VLC(cant get it to work). i am now trying to use jplayer which would be great if i could get it to work on this one as works for phones or so it says. what i have done so far is to go into my router(thomson TG585 v8) and set up port forwarding. i have set up port 554 on TCP/UDP which in

How to display video smoothly?

痞子三分冷 提交于 2019-12-13 02:45:28
问题 I'm writing a program that will get video stream from IP Camera and display its video. I request MJPEG stream, parse data and display frame by frame on WPF control for making video. I have compared my program with the other programs, and I saw that my program displayed video less smooth than others although the FRAME RATE DISPLAY is same. I displayed video on a WPF control by updating control's image sequentially. Someone can tell me why my program is not smooth? and how to improve it. UPDATE

android boofcv ip camera manipulation using videoview

狂风中的少年 提交于 2019-12-13 00:40:51
问题 I have successfully stream ip camera on an android phone using rtsp using this code: public class MainActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); VideoView video= (VideoView) findViewById(R.id.videoview); String viewSource = "rtsp://192.168.1........."; video.setVideoURI(Uri.parse(viewSource)); video.setMediaController(new