Questions tagged [rtsp]

The Real Time Streaming Protocol (RTSP) is a network control protocol designed for use in entertainment and communications systems to control streaming media servers.

The Real Time Streaming Protocol (RTSP) is a network control protocol designed for use in entertainment and communications systems to control streaming media servers.

2479 questions
0
votes
0 answers

Error method describe failed: 401 unauthorized

I am trying to connect to an RTSP camera using opencv c++ but for this specific camera i am getting the following message whenever i try to connect Error method describe failed: 401 unauthorized the code i used to connect is as follows: VideoCapture…
EYakoumi
  • 407
  • 6
  • 17
0
votes
0 answers

JSMPEG extract audio from decoded stream

I'm using Jsmpeg in a NextJS App and a NodeJS server, and everything is working just fine. I have build a relatively complex app, but I need a feature and I don't know if it's possible. I want to create a decibelmeter for the decoded streams. I know…
0
votes
0 answers

Opencv VideoCapture not streaming RTSP link and returns "no frame!"

I am trying to stream my HikVision IP camera throough python. I am using cv2.VideoCapture("rtsp_link") which works fine on my Laptop but when I try to run the same python script with same Opencv and FFmpeg version it gives me following…
Asadullah Naeem
  • 347
  • 2
  • 11
0
votes
0 answers

Stream video from Unity to Android

I'm looking for a way to stream the video of a Unity Camera, to an Android device, so as to show it on screen. On Unity's side, I've found a fork of FFMPEGOut which can stream the camera view over UDP, either as raw or RTSP stream. It has about 2s…
Big Bro
  • 797
  • 3
  • 12
0
votes
0 answers

how to capture a video using a rtsp link using node.js

i have a rtsp link and i need to in some moments capture few seconds and save that file in my computer like a mp4 file or something like i tried to use that code but doesnt worked for me const ffmpeg = require('fluent-ffmpeg'); // RTSP stream…
Matheus Leles
  • 58
  • 1
  • 6
0
votes
1 answer

How to stream video to a RTSP Url via python?

I am capturing frames from a RTSP url using opencv cap = cv2.VideoCapture(input_rtsp_url) Now I want to stream these captured frames to another RTSP Url "Output_rtsp_url". I will be performing YOLOv5s object detection on the frame and drawing…
0
votes
0 answers

Yolo OpenCV cannot use with RTSP stream

I try to use Yolo to detect car like this code. It have no error when I use VideoCapture with mp4. when I change to RTSP it can run about 5 Second then program auto stop running . It's not show error. cap = cv2.VideoCapture("rtsp:// url…
user572575
  • 1,009
  • 3
  • 25
  • 45
0
votes
0 answers

Managing application/binary response from rtsp request

I'm developing a Hikvision IP camera manager with SpringBoot 3.1 and Java 17. The IP cameras are linked to a server (Gateway Server as they call it) that serves a REST API. In essence I have to implement a reduced number of features like live view,…
Rafa J
  • 61
  • 9
0
votes
1 answer

Connecting to rtsp stream of ip camera using proxy

For my application I am running computer vision software on a jetson device that is connected to an ip-camera. This jetson device is enclosed and I don't have any access to it to connect a screen. My goal is to create a tool to aim my camera and…
NM138
  • 43
  • 5
0
votes
1 answer

Bought VLC UWP Unity plugin for playing rtsp stream, It works in edtior but cannot receive from internet

I have already enabled InternetClient, InternetClientServer and PrivateInternetClientServer. The UWP app only receives local stream on the development PC, it cannot play source from internet. Any cue? The log from native lib not saved in log file,…
0
votes
1 answer

DirectShow RTSP SourceFilter with MPEG-4 Video Stream

I create a simple direct show source filter using FFmpeg.I read rtp packets from RTSP source and give them to decoder. It works for h264 stream. MyRtspSourceFilter[H264 Stream] ---> h264 Decoder --> Video Renderer The bad news is that it does not…
Novalis
  • 2,265
  • 6
  • 39
  • 63
0
votes
0 answers

GStreamer Pipeline Delay Issue with Multiple rtspclientsink Outputs

I am working on a GStreamer pipeline that involves two rtspclientsink outputs. Here is the pipeline I am using: gst-launch-1.0 v4l2src device=/dev/video4 ! image/jpeg,width=1920,height=1080,framerate=30/1 ! jpegdec ! videoconvert !…
0
votes
0 answers

Python Gstreamer Webrtcbin does not rtsp video to javascript peer

Recently, I am working on streaming RTSP cameras to Javascript Webrtc peer to show the stream on the web. The Project Will be run on local network. I've tried to setup a connection similar to this gst-rtsp-webrtc github whic is based on…
Ehsan74
  • 1
  • 1
0
votes
0 answers

How can I display an RTSP stream on a web page with client-side decoding?

I'm trying to find a solution to display an RTSP stream on a web page. I want to perform client-side decoding of the RTSP stream to minimize server-side processing and reduce latency. What are some recommended approaches or technologies that I can…
Jocefyneroot
  • 137
  • 1
  • 11
0
votes
1 answer

I used flutter_vlc_player package for Rtsp camera preview Running fine in Android but getting error in macos. Is support this package for macos?

it's my code import 'package:flutter/material.dart'; import 'package:flutter_vlc_player/flutter_vlc_player.dart'; class IPCameraScreen extends StatefulWidget { final String url; const IPCameraScreen({Key? key, required this.url}) : super(key:…
1 2 3
99
100