Questions tagged [rtsp]

The Real Time Streaming Protocol (RTSP) is a network control protocol designed for use in entertainment and communications systems to control streaming media servers.

The Real Time Streaming Protocol (RTSP) is a network control protocol designed for use in entertainment and communications systems to control streaming media servers.

2479 questions
8
votes
3 answers

How to get RTSP Links Android

Am having you-tube links like http://www.youtube.com/v/YR71GnQ4CU4?f=videos&app=youtube_gdata , then how to convert it to RTSP format to play in VideoView. Am searching gdata api with this:…
Uday
  • 5,933
  • 9
  • 44
  • 76
8
votes
1 answer

Mosaic of RTSP streams VLC 3.0.8

I found a way to properly show mosaic of streams from RTSP cameras on VLC 3.0.8 and wanted to share the solution: Write the following into a file # Comment the following line if you don't want to reset your VLM configuration del…
Nik
  • 630
  • 1
  • 6
  • 17
8
votes
1 answer

Storing RTSP stream as video file with OpenCV VideoWriter

I'm developing a Python module, with OpenCV, that connects to an RTSP stream to perform some preprocessing on the video (mostly, reducing fps and resolution), and then store it in the file system. But, even after trying several codecs, looking for…
rafamartinc
  • 125
  • 1
  • 1
  • 10
8
votes
2 answers

Implementing RTSP media server in Java

I am trying to implement a simple RTSP server in java that will use an android handset as the receiving client. I have trawled the internet for answers and have been returned to this site many times. Through this I have found out that JMF does not…
user673090
  • 167
  • 1
  • 4
  • 10
8
votes
1 answer

Launch GstRTSPServer from GstElement pipeline

I'm doing a Gstreamer 1.0 application in C. The pipeline is built, based on user configuration and system "state" during runtime. Therefore I'm using multiple GstElements which are later added and linked to a "GstElement pipeline". Here's a minimal…
g0hl1n
  • 1,367
  • 14
  • 28
8
votes
1 answer

React Native Play RTSP Stream from IP Camera

I would like to play video stream (h264) through RTSP protocol from IP/Network in iOS device. I am using React Native. I have tried several React Native packages as below, but not manage to make it…
Sem
  • 1,237
  • 16
  • 17
8
votes
2 answers

How to set up Nimble server without WMSpanel?

i can't figure it out, how to configure nimble server, there is lack of information/examples about: Setting my own Nimble server. Scenario: IP camera which streams live RTSP h.256 video. Transmux/transport it, through my own Nimble Server. And…
Noproblem
  • 745
  • 1
  • 6
  • 15
8
votes
1 answer

I don't know the time unit to use for av_dict_set to set a timeout

I am confused. I am using the av_dict_set function to set a time-out, but when I searched for information about av_dict_set, the time unit seems to be different. I don't know how to set it now. Can anyone help? I found some code like the…
ICYMYM
  • 113
  • 6
8
votes
3 answers

Send more data than what can be stored in send buffer

I am using C# sockets to implement my own basic RTSP server (for learning purposes). I am currently in the process of writing the logic for the server to perform the handshake with the client when negotiating media ports on a DESCRIBE request. The…
Halfpint
  • 3,967
  • 9
  • 50
  • 92
8
votes
1 answer

Using Live555 to Stream Live Video from an IP camera connected to an H264 encoder

I am using a custom Texas Instruments OMAP-L138 based board that basically consists of an ARM9 based SoC and a DSP processor. It is connected to a camera lens. What I'm trying to do is to capture live video stream which is sent to the dsp processor…
Shehryar
  • 530
  • 1
  • 4
  • 18
8
votes
1 answer

onvif vs rtsp - difference

i have just started to delve into streaming libraries and the underlying protocols. I understand rtsp/rtp streaming and what these 2 protocols are for. But if we need the ip address, codec and the rtsp/rtp protocols to stream the video and audio…
man_luck
  • 1,605
  • 2
  • 20
  • 39
8
votes
2 answers

RTSP/RTMP Video Streaming Client iOS

I'm in need of a open source solution/library to stream RTSP/RTMP to an iOS Application. I need to build an app that connects to a media server, and opens the provided video stream. I believe there has to be libraries out there, but I have yet to…
nathansizemore
  • 3,028
  • 7
  • 39
  • 63
8
votes
1 answer

How can I play H.264 RTSP video in Windows 8 Metro C# XAML app?

I have a device that provides an H.264 video stream from a URL like: rtsp://192.168.0.10:554/videoservice Since this is live video I don't need to be able to control it (pause, rewind, etc), just play. Is this supported by MediaElement or…
parsley72
  • 8,449
  • 8
  • 65
  • 98
8
votes
1 answer

How to test a network device for a valid RTSP stream?

I am working on a project which streams video/audio through RTSP using VLC Media Player plugin. I would like to provide an option to scan the network for RTSP cameras. I'm sure this will consist of querying a list of all network devices, and testing…
Jerry Dodge
  • 26,858
  • 31
  • 155
  • 327
8
votes
1 answer

Android 4.0.4 MediaPlayer prepare issue using RTSP urls

I am experiencing an odd issue with a video streaming application I am working on. The actual streaming of video/audio is working fine on all of my test devices. However, on seemingly any device 4.0+, when using an RTSP URL, prepare() returns…