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
5
votes
2 answers

FFMPEG: RTSP stream freezes but FFMPEG keeps recording

EDIT: At the time of this writing there is no functionality within FFMPEG that can detect/handle when an RTP/RTSP stream is still active but is no longer delivering valid frames. The only solution I could find was to periodically reset the stream by…
Kagetsuki
  • 309
  • 2
  • 18
5
votes
1 answer

How to turn webcam to rtsp

I have a product that can analyze video after inputting an rtsp url. I would like to use a webcam to stream and feed my product the webcam rtsp. How can I do that?
giladi
  • 51
  • 1
  • 2
5
votes
2 answers

Live555 on Android

I'm trying to get the RTSP video stream play in my Android App using the build-in Videoview/MediaPlayer, but there're always various problems on different ROMs or different network status(UDP packets blocked), it's really annoying so I want to…
Bolton
  • 2,226
  • 3
  • 25
  • 29
5
votes
1 answer

Using youtube-dl and ffmpeg (or vlc) to transcode a YouTube live stream to rtsp rtmp udp rtp

I'm trying to use youtube-dl to transcode the YouTube NASA ISS live stream (or any YouTube stream) to rtmp or rtsp. I think I have the right command but for some reason I can't get anything to connect to my newly transcoded stream. Here's the…
Matthew Wachter
  • 132
  • 1
  • 7
5
votes
1 answer

rtsp method SETUP failed: 461 Client error

I am trying to read rtsp live stream using python opencv. I am getting the following errors: [rtsp @ 000001f610c828a0] method SETUP failed: 461 Client error warning: Error opening file…
5
votes
0 answers

RTSP video stream capture in OpenCV

The goal is to take a video file from disk, turn it into an RTSP stream, serve it across the LAN to another PC, and capture this video stream into OpenCV. My PC is 192.168.1.100. I've run VLC with syntax as follows. vlc --vlm-conf=vlm.conf -I telnet…
user37998
  • 63
  • 6
5
votes
2 answers

How to fix opencv python cv2.VideoCapture rtsp onvif "nonmatching transport in server reply" error?

I am on Windows and using Python 3.6.4. I've installed OpenCV (3.4) via pip. Here is the code I am using: import numpy as np import cv2 cap = cv2.VideoCapture('rtsp://192.168.15.116:554/onvif1') while(cap.isOpened()): ret, frame =…
5
votes
0 answers

RTSP video stream to HTML5

I need to implement RTSP video stream to my angulajs app. Like all we know, RTSP does not work easy with HTML, we need to use some plugin. I tried with html5_rtsp_player and this is only working solution for me, but I cannot find a way how to make…
Arter
  • 2,224
  • 3
  • 29
  • 66
5
votes
5 answers

Embed IP camera in web browser

I'm currently working on a smart home project, which conects sensors and that stuff. The main server runs on a Raspberry Pi, and was designed using Node JS. On the local network, you can access the system web page and see logs, users and manage the…
user3735796
  • 191
  • 2
  • 2
  • 7
5
votes
2 answers

Does android support APIs for implementing RTP,RTSP for VoIP and PTT Project?

I am going to make a PTT project on Android. Could you tell me how deep Android supports Voice and Multimedia API (such as RTP,RTSP,VoIP) for developers?
Alireza Asadi
  • 78
  • 1
  • 7
5
votes
1 answer

RTSP to HTTP MJPEG transcoding embedded in website

I have a phone which can display http MJPEG streams, and I would like to get this working. I have a camera here, which only sends out an RTSP Stream, I could convert this with vlc to a http MJPEG stream, but my phone needs this embedded into a…
Manuel
  • 613
  • 1
  • 6
  • 20
5
votes
0 answers

RTSP server for more than one stream (gstreamer)

I'm trying to setup a RTSP server by using gstreamer. And I can use some help to define the server. The concept of the project is: We have several camera modules (let's say 'cam0' and 'cam1') and each of these have some video channels (HD and SD)…
Toon Heyrman
  • 101
  • 2
  • 7
5
votes
1 answer

Android bindProcessToNetwork and RTSP stream through MediaPlayer

I have an app that is using bindProcessToNetwork() to force all connections out over the wifi connection. This is done because the wifi connection is connected to a camera with no Internet connection so naturally android tries to push all traffic…
Kebabman
  • 776
  • 1
  • 7
  • 18
5
votes
2 answers

Playing RTSP with python-gstreamer

I use gstreamer for playing RTSP stream from IP cameras (like Axis.) I use a command line like this: gst-launch-0.10 rtspsrc location=rtsp://192.168.0.127/axis-media/media.amp latency=0 ! decodebin ! autovideosink and it work fine. I want to…
tirlototo
  • 111
  • 1
  • 3
  • 8
5
votes
1 answer

Streaming RTSP to WebRTC using Kurento

I have been testing out Kurento for a while now. I have gone through one2many sample, and got everything working. Now I would like to do the same, but have the "presenter" be an RTSP source. I don't have much experience with RTSP, so I might be…
Elad Lachmi
  • 10,406
  • 13
  • 71
  • 133