Questions tagged [rtsp-server]
18 questions
1
vote
0 answers
how to get the info whether the stream is running or not in rtsp-multi-stream@0.2.1 npm package?
Im still a beginner in nodejs. I need to get the info of whether the stream is running or not so that i can display that error in frontend.
import { VideoStream } from '../src/video-stream';
const streamer: VideoStream = new VideoStream({
…

Richard David
- 11
- 4
1
vote
0 answers
Gstreamer stream mp4 video over RTSP endlessly
I try to stream a mp4 video in a loop over RTSP. To achieve this I modified the example code from test-appsrc2.c. The idea is to restart the pipeline once I have received the EOS (end of stream) for the generating pipeline.
I successfully receive…

graugans
- 240
- 3
- 14
1
vote
0 answers
How to stream a regular html-js website via RTSP?
I'm trying to find a way of streaming a website via RTSP.
Note: I do not want to embed an RTSP stream in my website! I want the opposite
I have an AWS EC2 server, which can be used as the RTSP server, and I have a regular website containing…

Matan Kintzlinger
- 148
- 9
1
vote
1 answer
How can I change serve RTSP stream on custom ip and port?
I`m trying to publish a video file over RTSP with Gstreamer with Python binding. Here is my code
from argparse import Namespace, ArgumentParser
import gi
gi.require_version('Gst', '1.0')
gi.require_version('GstRtspServer', '1.0')
from…

armin ajdehnia
- 145
- 1
- 9
1
vote
0 answers
Unable to stream more than 1 rtsp stream at a time using VLC command?
I'm currently working on building a rtsp server with vlc and have successfully outputed a rtsp stream to my client. However, when I tried to start another stream on the same ip, port (just different path), I can clearly see in the log that the 2nd…

Hoang Nguyen
- 31
- 1
- 8
0
votes
0 answers
Gstreamer 1.20 or 1.22.65 - Seekable Pipeline with audio not working
Using version 1.22.5.
I currently have the following dash manifest that I'm including in a pipeline inside the rtsp server:
Properties:
Duration: 2:01:58.000000000
Seekable: yes
Live: no
container #0: application/dash+xml
container #-1:…
0
votes
1 answer
Raspberry Pi libcamerasrc and GStreamer RTSP server
I have a Raspberry Pi 4, 32 bit OS; GStreamer 1.18, Arducam 64MP Hawkeye camera.
I'm trying to create a RTSP stream using GStreamer. I'm using VLC on a secondary computer to verify the stream.
I built GStreamer RTSP Server (test-launch)…

jduff1075
- 380
- 1
- 3
- 15
0
votes
0 answers
Error with RTSP Stream in Node.js: Could not find codec parameters for stream 0 (Video: h264, none)
I have a Node.js application that uses the node-rtsp-stream package to stream an RTSP video from an IP camera. However, when I run the application, I encounter the following errors in the console after a few minutes:
[rtsp @ 000002402795dd80] Could…

theplaceofburak
- 160
- 1
- 13
0
votes
0 answers
Drawing and Taking Snapshots from an RTSP Stream in Node.js using node-rtsp-stream and canvas
I'm working on a Node.js project where I need to draw images from an RTSP stream on a canvas and take snapshots from the drawn canvas. I'm using the node-rtsp-stream library to handle the RTSP stream and the canvas library to create and manipulate…

theplaceofburak
- 160
- 1
- 13
0
votes
0 answers
stream udp-> rtsp server
Try to launch the rtsp server with udp stram from /dev/video
cam(/dev/video0 -> udp -> rtsp) server
but I can not hear from the server
but the thing is it just not automcaically spit the error message
it take time (around 15 seconds and spit the…

jakeE
- 11
- 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
Trouble using videoscale in gstreamer when using a rtph264pay sink for rtsp output
I'm passing the following pipeline string to the gst_rtsp_media_factory_set_launch function to create an rtsp output:
souphttpsrc location=[some https url.m3u8] ! decodebin ! videoscale ! video/x-raw,width=1080,height=720 ! x264enc ! rtph264pay…

sidllama
- 1
0
votes
0 answers
OpenCV appsrc from Gstreamer RTSP server
Problem in accessing the stream of OpenCV appsrc for Gstremer RTSP - Server
I'm working to create a OpenCV appsrc for Gstreamer RTSP-SERVER and the code is able to open the camera and push the buffer when the client requests for stream but I'm not…

Vimal William
- 1
- 3
0
votes
1 answer
Stream a web camera using Gst-Rtsp (GStreamer) server
I'm trying to build a Gst-RTSP Server which can stream the web camera via RTSP server of G streamer but I'm facing a error that the pipeline is not working properly. basically the pipeline doesn't seem to work.
my code
#include…

Vimal William
- 1
- 3
0
votes
2 answers
How to stream video to rtsp-simple-server with ESP32-S3?
I'm looking for a solution to send a video stream from a USB camera connected to an ESP-32-S3 to an rtsp-simple-server.
https://github.com/aler9/rtsp-simple-server
There are many solutions to transform an ESP into a server but I want the ESP to be a…

Tancelin MAZZOTTI
- 11
- 1
- 4