In the end I would like to take an RSTP stream from an Axis security camera, and then make it available for re streaming using Gstreamers GstRTSPServer object. For now though I cannot even get the example videotestsrc to play in any player.
I have been following the post found here:
GStreamer Launch RTSP Server for ReStreaming IP Camera H264
I have gotten the example code built and running in a console, but am unable to view the stream in any players I find. EXACT code I am using found here:
https://github.com/GStreamer/gst-rtsp-server/blob/master/examples/test-readme.c
Both Windows 10 computers I am using are on the same network, I can ping both directions, firewall is completely off on both computers.
I have tried VLC player, Axis Media Control SDK modified examples, and GStreamer
using commands:
gst-launch-1.0 rtspsrc location=rtsp://127.0.0.1:8554/test latency=0 ! rtph264depay ! avdec_h264 ! videoconvert ! autovideosink
gst-launch-1.0 rtspsrc location=rtsp://10.2.3.10:8554/test latency=0 ! rtph264depay ! avdec_h264 ! videoconvert ! autovideosink
VLC is stating in logs that the connection was actively refused. It seems it is trying to connect to port 80? Not sure if I am reading that correctly. See VLC log below. Full log is pasted here from local machine:
https://pastebin.com/my3kTsRV
and here from a second machine:
https://pastebin.com/g1q47UBm
...Connection to server failed: No connection could be made because the target machine actively refused it
Opening connection to 127.0.0.1, port 80...
...Connection to server failed: No connection could be made because the target machine actively refused it
[06421494] live555 demux debug: connection error -10057
[06421494] live555 demux error: Failed to connect with rtsp://127.0.0.1:8554/test
The Axis Media Control (AMC) is trowing this for an error on both the local and secondary computers:
503 Service Unavailable
The maximum number of clients are already connected.
Trying to connect using the GStreamer command I get the following error, on both local and secondary computers:
ERROR: from element /GstPipeline:pipeline0/GstRTSPSrc:rtspsrc0: Unhandled error
Additional debug info:
gstrtspsrc.c(5633): gst_rtspsrc_send (): /GstPipeline:pipeline0/GstRTSPSrc:rtspsrc0:
Service Unavailable (503)
ERROR: pipeline doesn't want to preroll.
With VLC, AMC and GStreamer I am able to pull a stream directly from a camera, so something works at least. I am also able to successfully run other GStreamer examples, without the GstRTSPServer, successfully.
Let me know if you want/need me to try anything.
Related
I have a little project where I try to make a low latency video stream from a raspberry pi to a PC. Here for I’m trying Gstreamer. Now I have a working Pipeline on windows with the following command on the pi:
gst-launch-1.0 -v v4l2src device=/dev/video2 ! "image/jpeg,width=1280, height=720,framerate=30/1" ! rtpjpegpay ! udpsink host=192.168.1.94 port=5004
And on the windows receiving site:
gst-launch-1.0 -e -v udpsrc port=5004 ! application/x-rtp, encoding-name=JPEG,payload=26 ! rtpjpegdepay ! jpegdec ! autovideosink
Windows client waiting for server
Windows client and server connected
_
Bud when I try to use the same command on ubuntu it looks like it makes connection bud it won’t open a window with the render.
Ubuntu client waiting for server
Ubuntu client and server connected
Can someone help me get this to work?
Thank you in advance.
Im working on this project :
https://www.hackster.io/jonmendenhall/jetson-nano-search-and-rescue-ai-uav-9ca547
At some point I will need to mount my camera (waveshare ; IMX219-77IR) on top of the drone and I would like to use vlc on Windows or Linux outside of nomachine (because I have installed nomachine server on the nano and the client on windows and because it will run in headless mode),to display what the camera sees when the drone is flying. For this reason I’m trying to configure a gstreamer with RTSP to start a streaming server on the Ubuntu 18.04 that I have installed on the jetson nano.
Below u can see what are the commands that I have issued :
$ ./test-launch "videotestsrc ! nvvidconv ! nvv4l2h264enc ! h264parse ! rtph264pay name=pay0 pt=96"
And on the same Jetson Nano, I opened another console where I ran this pipeline to decode the RTSP stream:
gst-launch-1.0 uridecodebin uri=rtsp://127.0.0.1:8554/test ! nvoverlaysink
I see this picture :
The picture is from videotestsrc plugin. I would like to replace videotestsrc with my video source,but I don't know how to do that.
I tried these combinations,but none of them worked :
./test-launch "v4l2src device=/dev/video0 ! nvvidconv ! nvv4l2h264enc ! h264parse ! queue ! rtph264pay name=pay0 pt=96"
./test-launch "device=/dev/video0 ! nvvidconv ! nvv4l2h264enc ! h264parse ! queue ! rtph264pay name=pay0 pt=96"
but the error is still the same :
Setting pipeline to PAUSED ...
Pipeline is live and does not need PREROLL ...
Progress: (open) Opening Stream
Progress: (connect) Connecting to rtsp://127.0.0.1:8554/test
Progress: (open) Retrieving server options
Progress: (open) Retrieving media info
ERROR: from element /GstPlayBin:playbin0/GstURIDecodeBin:uridecodebin0/GstRTSPSrc:source: Could not read from resource.
Additional debug info:
gstrtspsrc.c(5917): gst_rtsp_src_receive_response (): /GstPlayBin:playbin0/GstURIDecodeBin:uridecodebin0/GstRTSPSrc:source:
Could not receive message. (Timeout while waiting for server response)
ERROR: pipeline doesn't want to preroll.
Setting pipeline to PAUSED ...
Setting pipeline to READY ...
Setting pipeline to NULL ...
Freeing pipeline ...
but why ? I know for sure that my camera (model waveshare ; IMX219-77IR) created a device called /dev/video0 and I know for sure that it works,because this command is able to show my face on the screen :
DISPLAY=:0.0 gst-launch-1.0 nvarguscamerasrc ! 'video/x-raw(memory:NVMM), width=3280, height=2464, format=(string)NV12, framerate=(fraction)20/1' ! nvoverlaysink -e
I set up the following pipelines:
Server
gst-launch-1.0 -v audiotestsrc ! mulawenc ! tcpserversink host=<IP> port=<PORT>
Client
gst-launch-1.0 tcpclientsrc host=<IP> port=<PORT> ! "audio/x-mulaw, rate=44100, channels=1" ! mulawdec ! audioconvert ! audioresample ! alsasink(windows: directsoundsink)
Using a Windows server and a Linux client I only get a sound for a fraction of a second after closing the pipeline (doesn't matter if I close client or server first). When running both server and client on the same Windows machine I get the same result. However, if I run both server and client on the same Linux machine I get the expected result (sin signal).
What do I need to change to make it work on Windows?
I wanted to use gstreamer for network steaming. Intention is to launch a video content (from Transmitter) and play it on receiver side.
I wrote a sample test code for steaming network content.
At transmitter side:
GST_DEBUG="*:2" gst-launch-1.0 videotestsrc ! video/x-raw ! jpegenc ! rtpjpegpay ! udpsink host=127.0.0.1 port=5001
At Receiver side:
GST_DEBUG="*:2" gst-launch-1.0 udpsrc port=5001 ! application/x-rtp,encoding-name=JPEG,payload=26 ! rtpjpegdepay ! jpegdec ! autovideosink
At receiver I'm getting following error:
Setting pipeline to PAUSED ...
Pipeline is live and does not need PREROLL ...
Setting pipeline to PLAYING ...
New clock: GstSystemClock
0:00:00.130187750 4589 0x1a690a0 WARN GST_PADS gstpad.c:3669:gst_pad_peer_query: could not send sticky events
0:00:00.130796352 4589 0x1a690a0 WARN basesrc gstbasesrc.c:2865:gst_base_src_loop: error: Internal data flow error.
0:00:00.130812589 4589 0x1a690a0 WARN basesrc gstbasesrc.c:2865:gst_base_src_loop: error: streaming task paused, reason not-negotiated (-4)
ERROR: from element /GstPipeline:pipeline0/GstUDPSrc:udpsrc0: Internal data flow error.
Additional debug info:
gstbasesrc.c(2865): gst_base_src_loop (): /GstPipeline:pipeline0/GstUDPSrc:udpsrc0:
streaming task paused, reason not-negotiated (-4)
Execution ended after 0:00:00.017176721
Setting pipeline to PAUSED ...
Setting pipeline to READY ...
Setting pipeline to NULL ...
Freeing pipeline ...
Please guide me.
(note Im using Gstreamer in Ubuntu 14.04 PC. The same PC is being for transmitter and receiver purpose.)
you need to copy paste the caps like mentioned here
I'm running Windows and I'm connected to a webcam via stand-alone Video Servers.
I'm trying to save the stream to file using gstreamer,
with the following command:
gst-launch-1.0 rtspsrc location=rtsp://10.0.0.115/?multicast/mpeg4 ! decodebin ! mpegtsmux ! filesink location=D:\SomeDir\Somefile.mp4
But I get the following error:
ERROR: from element
/GstPipeline:pipeline0/GstRTSPSrc:rtspsrc0/GstUDPSrc:udpsrc0 :Internal
data flow error. Additional debug info: gstbasesrc.c(2943):
gst_base_src_loop (): /GstPipeline:pipeline0/GstRTSPSrc:rtsp
src0/GstUDPSrc:udpsrc0:
Any ideas why?