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

Reduce video buffering

I'm playing video on Android using media player via RTSP. The player takes about 12s to buffer before it starts playing. Anyone know how I can convince the player to buffer less? I have full control over the RTSP server and the SDP it returns.
Philip Pearl
  • 1,523
  • 16
  • 26
6
votes
3 answers

Error: spawn ffmpeg ENOENT

I tried got video stream on the rtsp with use MEAN stack, but when I added this code in my server.js file, I caught the error: "spawn ffmpeg ENOENT". Maybe I forgot to install some lib or what? please help me! Code: app.get('/', function (req,…
Dima Frost
  • 71
  • 1
  • 1
  • 6
6
votes
0 answers

How can I extract rtsp data into MediaCodec

I am having issues with MediaPlayer playing my RTSP stream, so i decided to use the lower level APIs - MediaExtractor and MediaCodec. The problem is that the setDataSource() method for MediaExtractor does not accept an RTSP stream. So, my question…
JoeyZee
  • 165
  • 1
  • 8
6
votes
1 answer

How to stream in h265 using gstreamer?

I am trying to use latest gstreamer and x265enc together. I saw that someone have already posted some commits in http://cgit.freedesktop.org/gstreamer/gst-plugins-bad/log/ext/x265/gstx265enc.c Can anyone please give an example pipeline where it is…
tapas ..
  • 91
  • 1
  • 2
  • 7
6
votes
0 answers

GStreamer 1.0 1.4.5 RTSP Example Server sends 503 Service unavailable

I'm trying to make RTSP server based on Gstreamer 1.0 1.4.5 plugin. Source code of the example is taken from here. WITH_TLS and WITH_AUTH flags are not enabled. I'm compiling it using Visual Studio 2013 Community Edition. The project is building and…
6
votes
3 answers

How to play HTTP Live Streaming(HLS) in all PC browsers?

We have stored audio sources in WOWZA server.We are searching a audio player to play audio in Web Browser over RTMP or HTTP(HLS). We have tested HTML5 audio tag, but it does not support RTMP and HLS streaming. Tried :
6
votes
0 answers

How to get the latest frames in ffmpeg, not the next frame

I have an application which connects to an RTSP camera and processes some of the frames of video. Depending on the camera resolution and frame rate, I don't need to process all the frames and sometimes my processing takes a while. I've designed…
LawfulEvil
  • 2,267
  • 24
  • 46
6
votes
2 answers

How to detect I/P/B frame from H264 RTP packet

I got H264 RTP packet from RTSP stream. So I want to detect whether the frame is an I-frame or not. Below is the first packet I got from the first time I open the stream. So I believe that it is an I-frame. Here are the first 160 bytes: packet: 00…
vominhtien961476
  • 317
  • 4
  • 17
6
votes
2 answers

rtsp over http over a proxy

I am trying to fetch an RTSP stream over HTTP using a proxy. The behavior of the Real client seems to be a bit hectic: it tries all the possible ports, methods and protocols at once. The only thing that should work is HTTP GET over port 80. Such a…
user29402
  • 123
  • 1
  • 3
  • 8
6
votes
0 answers

Reducing lag in wifi-direct video streaming application

Currently, I have a working prototype app that streams the output from one phone's camera to another phone's screen. However, the delay between the stream and the actual video ranges from 1 second to up to 5 seconds. For my particular use case, I…
Doronz
  • 704
  • 8
  • 21
6
votes
2 answers

Playing audio stream using html5

How can i play RTSP streams with HTML5 audio tag, I already check streaming links from wowza http and RTSP both work perfectly on VLC but when I embed these links in html5 audio tag, nothing seems to work any help would be appreciated. Here is my…
user2009750
  • 3,169
  • 5
  • 35
  • 58
6
votes
2 answers

How to send streaming from Android via WiFi base on VLC or RTSP?

I am new for this. I want to develop an application that it can streaming music for SD card to another device via WiFi. There has many protocol for streaming , like RTP ,RTCP and RTSP. But I don't know how to begin for streaming... Ideal is like the…
Martin
  • 2,813
  • 11
  • 43
  • 66
6
votes
0 answers

Does Android 4.x support streaming RTSP over TCP?

I've used VideoView in Android to play video on wowza successfully. Now I got to deal with my server which the UDP ports seems to be blocked. With the proof of openRTSP command: -> % openRTSP rtsp://61.218.52.250:554/live/ch00_0 Opening connection…
Robert
  • 1,660
  • 22
  • 39
6
votes
1 answer

How to play/stream RTSP via web.

Can someone guide me on how to properly stream an RSTP in web? So I have this url rtsp://192.168.1.55:554/vid/stream/channels/1 When played via VLC player Streaming in my desktop appears to run/stream fine. My next challenge is, to view this via…
bobbyjones
  • 2,029
  • 9
  • 28
  • 47
6
votes
2 answers

RTSP Authentication : digest issue

I need to authenticate my RTSP stream to a streaming server, here is the challenge : RTSP/1.0 401 Unauthorized WWW-Authenticate: Digest realm="Streaming Server", nonce="76bfe6986d3e766424de9bd6e7d3ccc1" Session: 1845562184;timeout=60 Cseq:…