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
12
votes
1 answer

How to encode media file in RTP packets with Xuggler

I am building an RTSP streaming server in java using xuggler, but I'm not sure how to implement correct RTP packetization. My current approach is to call ReadNextPacket(packet) on the input container, then craft an RTP packet with the payload filled…
12
votes
1 answer

UDP or RTP streaming solution for android

I need to create an android app to display a live TV feed. the app is supposed to play live video streams from a Multicast of a DVB gateway, according to the gateway vendor it can stream out UDP or RTP. I set up vlc on my computer to stream out UDP…
Omriko
  • 363
  • 1
  • 6
  • 14
11
votes
2 answers

MATLAB - capturing video streams (MJPEG, rtsp, mpeg)

Has anyone worked with capturing video streams from IP cameras in MATLAB? For example to grab frames in MATLAB from rtsp://10.10.10.10:554/live.sdp (rtsp stream) or from http://x.x.x.x/axis-cgi/mjpg/video.cgi (mjpeg stream). MATLAB's Image…
Alexey
  • 5,898
  • 9
  • 44
  • 81
11
votes
1 answer

How to send audio on RTSP backchannel?

My IP camera supports audio output (audio back-channel). I want to live stream PC microphone audio over RTSP so it will be audible at camera speaker. ONVIF streaming specification tells me I have to send my audio data over provided RTSP URL. My…
theburningfire
  • 481
  • 1
  • 4
  • 20
11
votes
3 answers

Is it possible to do a simple health check of RTSP stream with curl tool?

I'm trying to do a simple health check of RTSP stream with curl tool. But command like this always gives me 404 Stream Not Found error: curl -v --url rtsp://192.168.1.80/h264/ --user admin:1234 * Trying 192.168.1.80... * Connected to…
VitalyZ
  • 445
  • 1
  • 4
  • 12
11
votes
2 answers

H.264 decoding error log from RTSP stream

I am getting the following H264 error log. This log comes while decoding an RTSP video stream with help of FFMPEG. The picture displayed is blurred after 5/6 seconds. The picture would recover it from time to time. However, it remains blurred for…
Tariq
  • 2,274
  • 4
  • 24
  • 40
11
votes
1 answer

Live RTSP stream will not play with VideoView; No content provider error

I'm new to Android development and can't seem to get anywhere with the development of an app to live stream an RTSP feed from an ip camera. While I can get the code to stream from a website with an RTSP address of a .mov file, I cannot get it to…
11
votes
1 answer

Live video streaming from an Wireless IP Camera to Android mobile

Here, I have to get live video streaming from an wireless Ip camera to android mobile using RTSP protocol.Camera is connected to the wireless router and mobile also has same wifi network.Now I need to implement live video streaming from camera. For…
vignesh ramanathan
  • 121
  • 1
  • 1
  • 5
11
votes
2 answers

Android 4.1 - RTSP using VideoView and MediaController

Developing a simple app to play a RTSP stream on Android 4.1, but unable to do so Update I am able Able to play if I use BigBuckBunny_115k.mov Uri video = Uri.parse("rtsp://184.72.239.149/vod/mp4:BigBuckBunny_115k.mov"); BUT I tried with lot of…
Rohit
  • 6,941
  • 17
  • 58
  • 102
10
votes
4 answers

H.264 RTSP Absolute TIMESTAMP

Is it possible to read an absolute timestamp from an H.264 stream sent trough RTSP from an Axis camera? It will be necessary to know when the frame has been taken by the camera. Thanks Andrea
Grifo
  • 999
  • 4
  • 12
  • 16
10
votes
2 answers

How to convert a video (on disk) to a rtsp stream

I have a video file on my local disk and i want to create an rtsp stream from it, which i am going to use in one of my project. One way is to create a rtsp stream from vlc but i want to do it with code (python would be better). I have tried opencv's…
shahidammer
  • 1,026
  • 2
  • 10
  • 24
10
votes
1 answer

Video Streaming from IP Camera in Python Using OpenCV cv2.VideoCapture

I am trying to get video stream in python from IP camera but i am getting an error. I am Using Pycharm IDE. import cv2 scheme = '192.168.100.23' host = scheme cap = cv2.VideoCapture('http://admin:Ebmacs8485867@'+host+':81/web/admin.html') while…
Moazam Shahid
  • 137
  • 1
  • 1
  • 5
10
votes
1 answer

Play video in Android from a bytes stream

Is there any way to play a video from a bytes stream in Android? I'm using an specific communications middleware so I can't just pass the http/rtsp link to the MediaPlayer object. I was wondering if I can wrap my stream with a local http/rtsp link…
Pedriyoo
  • 1,259
  • 4
  • 16
  • 26
10
votes
1 answer

iOS multiple video display

I'm currently doing an iOS project that uses IJKPlayer which is based on FFmpeg and SDL to display RTSP feed from a certain source. I have no problem in displaying a single video feed but my project requires me to display multiple stream on the…
Lysdexia
  • 453
  • 8
  • 22
10
votes
2 answers

What is RTSP and WebRTC for streaming?

I'm very newbie for streaming. But I must do a user-based streaming system with IP camera. It will be like security cameras. One user will has one stream. My team think working with RTSP. And they want know how will we do it and what is rtsp ,…
faksu3442
  • 301
  • 1
  • 4
  • 11