28 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
29
views
Configuring RTSPServer within GStreamer without affecting original stream
I'm wanting to setup a stream that performs ultra low latency calculations on a video stream, but also makes it available to rtsp clients. Ie:
Incoming stream -> Scale & Perform work (Ultra ...
0
votes
1
answer
156
views
Gstreamer RTSP Server
I'm trying to implement a passthrough where one of the server can have rtp packets pushed to it and the other allows those same packets to be watched.
In a basic example I've created a record media ...
2
votes
0
answers
295
views
Not able to stream USB camera over RTSP on Luckfox Pico Mini B
Summary:
I'm trying to build a dual camera setup for an FPV drone with small form factor devices.
For this, I purchased three devices:
Luckfox Pico Mini B
SC3336 CSI Camera Module (B)
A generic USB ...
0
votes
0
answers
133
views
Streaming RTSP/SRTP from Live555 to GStreamer with MIKEY Encryption
I am using Live555 to stream an RTSP/SRTP stream, which appears to use MIKEY encryption. On the receiving end, I am using GStreamer. However, it seems that Live555 does not provide an option to ...
3
votes
0
answers
215
views
handling authentication in GO gortsplib github.com/bluenviron/gortsplib/v4
I am trying to do a rtsp live streaming POC with GO and rtsplib from github.com/bluenviron/gortsplib/v4. One thing I cannot seem to find in the docs is how to handle digest authentication.
The camera ...
0
votes
1
answer
35
views
Is it possible to make GstRTSPServer serve any path?
It looks like if I add a path and factory to the mount points the RTSP-server will complain that there's not factory for subpaths. It nevertheless seem to call the factory, but then it complains about ...
0
votes
1
answer
67
views
How to let multiple clients share the same pipeline in python gstreamer rtspserver
when multiple clients are connected, gstreamer creates a pipeline for each client. How can all clients share the same pipeline to reduce CPU usage?
my rtsp server code:
import cv2
import gi
gi....
0
votes
1
answer
613
views
How to split an incoming stream into multiple streams with different resolutions?
How to split an incoming stream into several streams with different resolutions on the MediaMTX server? There is one incoming stream in rtsp, it needs to be split into several channels with different ...
0
votes
0
answers
76
views
GStreamer RTSP server latency problem in c++
First of all, good work everyone. I am creating an RTSP server using the GStreamer C++ API. I am sharing the image I processed with the source OpenCV from my main loop and sending it at 30 FPS. But ...
0
votes
0
answers
120
views
Finding server port In RTSP server base on RTP with UDP transport
I want to find out Server port is RTSP server with Gstreamer when UDP is selected as Transport. This my source code it just shows Client port not server port(server port is shown = -1).
#include <...
0
votes
0
answers
125
views
C-code in Golang. Gortsplib client-play-format-h264
I'm trying to launch gortsp example: https://github.com/bluenviron/gortsplib/blob/main/examples/client-play-format-h264. But I have a problem with h264_decoder.go: "exec: "pkg-config": ...
0
votes
1
answer
2k
views
How do I setup a fallback from a MP4 file for multiple RTSP streams proxied through MediaMTX?
I've hit a snag with my MediaMTX setup while attempting to initiate a fallback stream using FFmpeg with the runOnInit directive. It appears that the environment variables $RTSP_PORT and $MTX_PATH aren'...
1
vote
0
answers
429
views
Android - RTSP Streaming from Camera and view from remote location
I Want to create an Android app that will have the functionality to stream camera over the RTSP on my public IP address, and it can be viewed by anyone with whom I'll share my IP address using the ...
1
vote
1
answer
613
views
Secure RTSP video stream in Flutter
I am trying to use secure vlc stream for my flutter app. I am using flutter_vlc_player package. Also the vlc itself doesn't support rtsps streams. Is there any solution for this that will work in both ...
0
votes
0
answers
78
views
GstAppSink: Sharing between two pipelines
We're trying to use appsink from one pipeline, which reads camera image data from appsrc using aravis library in gst-rtsp-server as a buffer provider for need-data signal.
The camera is acquiring ...