Questions tagged [rtsp-client]

147 questions
1
vote
0 answers

By using Gstreamer - how to receive a live-source stream by rtsp-server and send it to other client?

I'm trying to build a quite simple RTSP-server (apparently, it's less simple then I thought) with gst-rtsp-server. I used the 'test-record' example to RECORD by the rtsp-server a stream from a rtsp-client (FFmpeg in my case). It seems to work, I…
J.M.
  • 472
  • 1
  • 6
  • 15
1
vote
1 answer

Demultiplex and proxy for RTSP video stream

I have the problem of having to connect multiple clients to RTSP video stream, without overloading the bandwidth of the original streaming camera. Basically I want something the will maintain only one connection to a RTSP streaming camera/server,…
NeuronQ
  • 7,527
  • 9
  • 42
  • 60
1
vote
1 answer

java: how to read RTSP stream frame by frame

For performance reasons, I ditched Python-Opnecv/FFmpeg solution and moved on to Java. But to my surprise, I am not able to find any better and complete solution as we have in Python. I tried using vlcj but again it just gives more of a command line…
Ravinder Payal
  • 2,884
  • 31
  • 40
1
vote
0 answers

An html page (and player) to play RTSP video play back

I want to run the RTSP live video stream on my web page.The following code works good with the rtsp//url as shown in the code but when I replace that URL with my cam IP ,its not working.The cam IP link is playing in VLC player but not in my HTML…
Ramlal S
  • 1,573
  • 1
  • 14
  • 34
1
vote
1 answer

There is a way to receive RTSP stream (RTSP Client) and get access to the input raw buffer?

I'm trying to receive RTSP stream (playback) to android device and get access to video/audio tracks byte buffer pre/post decode. Is there a way to achieve that?
Mor S.
  • 123
  • 1
  • 7
1
vote
1 answer

How to run rtsp video into browser?

We are developing an application, where we required to load the rtsp video into the browser without using any poxy. We tried to VLC Plugin but it only supports for the ie browser.
Manjunath Mg
  • 88
  • 1
  • 10
1
vote
0 answers

nginx for rtsp publish load balancing

I am trying to loadbalance rtsp publish requests using nginx.I am able to redirect the publish request to RTSP server using UDP loadbalancing.But when multiple clients trying to publish ,I am facing the issue.I tried the different options of…
sandeep
  • 211
  • 1
  • 2
  • 9
1
vote
2 answers

What alternatives do I have for open source RTSP streaming player

Is there anything besides VLC? I need to develop a youtube player without using a flash plugin
user63898
  • 29,839
  • 85
  • 272
  • 514
1
vote
2 answers

RTSP streaming on VLC

We have implemented RTSP server on our MCU. For testing purpose we are using VLC media player as a client. We coded our MCU such a way that only after receiving PLAY command from client, MCU reads data from camera. And we are seeing MCU receives…
Video
  • 11
  • 1
  • 2
1
vote
1 answer

Unable to stream RTSP video in Android MediaPlayer

I'm trying to stream a video from an RTSP server. I want to run the video inside my app. I have tried three different approaches and only one of them seems to work: Using VideoView (does not work). Using native player (works). Using MediaPlayer…
user3566211
  • 87
  • 2
  • 10
1
vote
1 answer

Use VLC to fetch SDP file once using RTSP

Context Most RTP streams (from e.g. an IP camera) need some information from a SDP to be able to decode them. SDP is usually fetched just in time, usually from a RTSP URL but other means are possible (e.g. HTTP). Specific case We have a…
Stéphane Gourichon
  • 6,493
  • 4
  • 37
  • 48
1
vote
0 answers

get the first frame of the Mjpeg files using jmf with a client server application

am using jmf library with netbeans 8.0.2 IDE for transporting media across network. so i want make a little thumbnail for the video founds on current path before showing the whole video i found a way to get the number of files with distinct…
Mohammed Ali
  • 1,117
  • 1
  • 16
  • 31
1
vote
0 answers

Decode and render H264 encoded RTSP stream using hardware acceleration in Chrome

I need to decode and render an H.264 encoded RTSP stream in Google Chrome. Low latency is needed and therefore I need to use hardware acceleration for the decoding process. I have been searching for any PPAPI plugins that can be used to RTSP…
1
vote
0 answers

Getting recent frames using FFMPEG

I have a rtsp, udp multicast stream. I read frames by calling av_read_frame() method in a loop and it works as expected. My problem is, If I sleep my loop (let's say) for 500 ms, I'm not receiving recent frames. Since, I'm not reading a regular…
Ali Can
  • 564
  • 3
  • 15
1
vote
1 answer

Only 1 stream plays while rtsp Broadcast

I am trying to implement a RTSP broadcaster for mac. I am able to broadcast the audio and video independently but when i start to broadcast them simultaneously i hear only audio or video at a single time. If Audio plays than video doesn't shows and…