Questions tagged [rtsp-client]
147 questions
4
votes
1 answer
How can I connect to an RTSP h.264 stream on iPhone using objective-c library
I realize that the official supported streaming protocol for the iPhone is HTTP streaming . This is great, but many appliances implement the RTSP protocol to stream video. I have looked around for quite some time looking for RTSP libraries in…

Scott
- 16,711
- 14
- 75
- 120
4
votes
2 answers
How to play rtsp stream in android using ffmpeg
I want to play rtsp stream using ffmpeg library. I was buid ffmpeg for android and also I try to save rtsp stream to file it's work fine.
my command ffmpeg -i rtsp://@URL -acodec copy -vcodec copy abc.mp4
now I want to view my ip camera live stream…

msj
- 199
- 1
- 2
- 13
4
votes
1 answer
RTSP client in Java - link doesn't work
I am writing simple rtsp client. I wanna play video from my IP camera.
I can see preview of my camera when I open this link in VLC.
rtsp://@192.168.1.10:554/user=admin_password=tlJwpbo6_channel=1_stream=0.sdp?real_stream
But I can't open this…

Eliasz Kubala
- 3,836
- 1
- 23
- 28
4
votes
1 answer
How to play RTSP stream video (MPEG4, baseline) from a camera with Android videoview?
I have a live video streaming camera device which is in the same network with my Android phone. My Android version is 4.1.2. The camera streams video through RTSP and its format is MP4. The address is: rtsp://192.168.0.102:8554/test
I have the…

fercis
- 611
- 2
- 12
- 26
3
votes
3 answers
How to make Android device as RTSP server
I am curious to know if there is way that I can make my android device as a RTSP server and stream video with any other acceptable device.
I have no understanding of RTSP server and other protocol that should be followed to make this happen.
Any…

sku
- 607
- 1
- 8
- 26
3
votes
1 answer
Getting video width height from RTP Packets or Rtsp Server
I have to get stream video [which is from rtsp server] width and height.
Third party servers give the following info at RTSP DESCRIBE REQUEST:
One RTSP server give me width-height
Server Response:
RTSP/1.0 200 OK
....
Content-Type:…

Novalis
- 2,265
- 6
- 39
- 63
3
votes
0 answers
Record RTSP stream with libVLC Python
I have been trying for a while to record an RTSP stream with libVLC in python. I have a basic command that works with cvlc, but I am unable to do the same with libVLC.
Here is the cvlc command:
cvlc -I dummy rtsp://admin@192.168.31.56/0/av0…

Aymeric Maisonneuve
- 51
- 3
3
votes
1 answer
Playing RTSP stream in VLC player
I am trying to make a simple rtsp streaming server in java. The server is able to stream the video properly to the custom written player.
The problem I that I am not able to play the same stream in vlc media player.
When I start the vlc media player…

Vinod Maurya
- 4,167
- 11
- 50
- 81
3
votes
0 answers
Android VideoView plays audio and video out of sync
I have been using the Videoview to play a streaming RTSP video from a server. everything works fine expect for the video lag over the voice. Initially when the video starts the audio and video are in Sync (No mismatch atall)... but as time goes on…

Akh
- 5,961
- 14
- 53
- 82
3
votes
1 answer
RTSP streaming using node js?
I am using the node-rtsp-stream package to run rtsp streaming. How can i implement and callback it in mvc structure
Controller:
var RTSP = require('./models/rtsp.js');
var startRTSP = function startRTSP(queryData) {
console.log("startRTSP…

Shree
- 145
- 4
- 15
3
votes
0 answers
Broadcasting video stream using rtsp from pi zero
I have set up the RTSP server.Video is broadcasting but I am not getting the video stream on my pc.
I had first installed Gstreamer camera source
git clone https://github.com/thaytan/gst-rpicamsrc.git
cd gst-rpicamsrc
./autogen.sh
make
sudo make…

Udeshi
- 35
- 6
3
votes
2 answers
Xamarin.Forms video streaming library that supports RTSP video feeds
I am using Plugin.MediaManager NuGet package to provide cross-platform video player for my app. However, it does not support playing RTSP video streams. Is there any other library that supports this?
I have looked around and the most common ones are…

Steztric
- 2,832
- 2
- 24
- 43
3
votes
1 answer
How to Play Multiple Streams with FFPLAY at the Same Time using RTSP Url
I am trying to play live stream coming from the server with RTSP URL. A sample RTSP URL is given below:
rtsp://username:password@machine_ip/42331536059e9f21
Actually, this stream is the call between two participants (caller & called). But when I…

Bilal Ahmed Yaseen
- 2,506
- 2
- 23
- 48
3
votes
4 answers
Libstreaming - use VLC as a RTSP client
I'm trying to use VLC as a RTSP client. The RTSP server is based on the libstreaming library. I'm using the code provided by the 1rst example:
// Sets the port of the RTSP server to 1234
Editor editor =…

DavidL
- 1,120
- 1
- 15
- 34
3
votes
1 answer
Creating a rtsp client for live audio and video broadcasting in objective C
I am trying to create a RTSP client which live broadcast Audio and Video. I modified the iOS code at link http://www.gdcl.co.uk/downloads.htm and able to broadcast the Video to server properly. But now i am facing issues in broadcasting the audio…

Dinesh
- 929
- 7
- 25