Questions tagged [rtsp-client]
147 questions
0
votes
0 answers
Rtsp streaming on nodejs - Blank screen
I am currently working on a Node.js project where I need to implement streaming using ffmpeg. However, I am facing an issue with the streaming process, as I am getting an empty blank screen instead of the expected video stream.
Here's a brief…

theplaceofburak
- 160
- 1
- 13
0
votes
0 answers
live555 client got non-monotonic timestamp with audio stream
I used live555 library to create RTSP client which get video and audio stream. It get data without any problem. But in most cases after few seconds of receiving audio (AAC) data I get timestamp that is smaller than previous. It is not concern to…

Andrii
- 31
- 6
0
votes
0 answers
How to access Securus DVR camera Live Feeds from my python application
How can we programmatically access live camera feed from Securus DVR systems into my application for real-time monitoring?
Are there any available APIs or SDKs to access the Securus system and retrieve live camera data in our application?

Sachin Gaikwad
- 9
- 2
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
0 answers
RTSP/Airplay: how to poll or monitor for Airplay Audio playing
I'm building a stereo system, using a belkin Soundform Airplay adapter. I have a home server, and want to write an app that monitors the Soundform, and when it is playing audio turns the Audio Amp on or off.
I tried to monitor MDNS announce: I can…

scosman
- 2,343
- 18
- 34
0
votes
0 answers
How to Render RTSP Streams within a React App
how to embed RTSP stream in react js?
how to stream RTSP video input to your React frontend.
RTSP video is generally from your ip camera but it is a type of video format. I struggled with doing this whole project but i can`t.
for testing it is a…

khalid Mehmood
- 1
- 3
0
votes
1 answer
unable to live stream using srt, facing "Unsupported timestamp reference clock" issue
I am trying to stream video using the SRT protocol, streaming source is a rtsp client.
gst-launch-1.0 --gst-debug=3 rtspsrc location="rtsp://admin:admin@localhost/live.sdp" short-header=TRUE name=demux demux. ! rtph265depay ! queue ! video/x-h265 !…

abhinav gorle
- 1
- 1
0
votes
1 answer
Does the client have to query the server for each new piece of data in RTSP communication?
I'm trying to figure out how RTSP works, when the handshake is complete.
Does the client have to query the server for each new piece of data? Or the server sends data all the time and doesn't care how the client receives the data?
The reason why I…

harry_tums
- 91
- 7
0
votes
1 answer
Gstreamer pipeline Sinking to rtspclientsink advise
I am trying to Sink a public HTTP stream (MJPEG) to "rtsp-simple-server" using Gstreamer rtspclientsink.
The following command works using fakesink. But um unable to get the rtspclientsink to work. Note this public stream is an…

Lloyd Briggs
- 3
- 3
0
votes
0 answers
RTSP using ffmpeg
I wanted to stream a video file from one computer to another using FFmPEG. What I tried is:
RTSP server from here: https://github.com/revmischa/rtsp-server
transmitted a video file a1.mp4 using ffmpeg with the following command:
ffmpeg -re -i…

pretty
- 1
- 3
0
votes
1 answer
I need show "rtsp//:" live streaming on react
I am studying face detection system, but I have a problem, and I need help. I've read and tried many pictures from the internet, but I still can't.
I want to display "rtsp //:" live streaming on a response by nodejs.
My…

Hunter
- 11
- 4
0
votes
1 answer
Stream RTSP Video to Tkinter Frame using OpenCV
I have some IP cameras that provide RTSP video feed, and I know that OpenCV can display the video on its own cv2.imshow() function on a window by using cv2.videoCapture() and something like cap.read() . Now I'm trying to display that video onto a…

Alex
- 61
- 5
0
votes
1 answer
How to specify rtsp authentication credentials on client side with gstreamer?
The gstreamer RTSP server supports basic username-password authentication (example). On the client side, the gstreamer playbin element supports playback from an RTSP server, like this:
playbin uri=rtsp://127.0.0.1:554/test
Is there a way to specify…

Woodrow Barlow
- 8,477
- 3
- 48
- 86
0
votes
0 answers
Getting RTSP/1.0 404 Not Found after ANNOUNCE message
I'm trying to stream a video with FFmpeg to Gstreamer-RTSP-Server (it's actually a docker that runs the Gstreamer-RTSP-Server).
The OPTION message gets a "RTSP/1.0 200 OK" response. However, the ANNOUNCE message gets "RTSP/1.0 404 Not Found"…

J.M.
- 472
- 1
- 6
- 15
0
votes
1 answer
Is it possible to send RTSP streaming to html page using node js?
In my backend code (below) I am streaming rtsp and I want to send it to my frontend code. Specifically, I want the streaming response data to be sent to my html page and rendered as a video in a canvas tag. Is this possible?
Stream =…

Shree
- 145
- 4
- 15