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
7
votes
4 answers

RTSP client in android

I am writing a RTSP client in Android. I am able to receive the Responses for all the requests i.e., DESCRIBE it sends back the 200 OK SETUP with transport: RTP/AVP:unicast:client_port=4568:4569 got the 200 OK Message back Sent PLAY, and got the OK…
Vinay
  • 4,743
  • 7
  • 33
  • 43
7
votes
2 answers

RTP iPhone camera - How to read AVAssetWriter file while its being written?

I'm trying to stream RTSP/RTP iPhone camera capture to a Wowza server. Apple's API does not allow direct access to H264 encoded frames, but only allow you to write it into a container '.mov' file. Either way, I cannot get access to that file content…
Avishay Cohen
  • 2,418
  • 1
  • 22
  • 40
6
votes
2 answers

Process RTSP with Node.js for taking an image snapshot

I have a RTSP that I would love to make Node.JS understand. I found a way to do it using Java taking a capture from a webcam but I would love to just use Node.js on this task and get it from a video RTSP'd. My intention is to use setInterval, grab…
ghostbar
  • 161
  • 1
  • 2
  • 10
6
votes
3 answers

RTSP streaming of video files to 3gp

One of my friend wants to build a mobile site. He also has a couple of video files that should be streamed on to visitors mobile when chosen. I want to know if there exists a library to stream a video over rtsp in java. I tried this one…
Akhil K Nambiar
  • 3,835
  • 13
  • 47
  • 85
6
votes
2 answers

GStreamer pipeline + OpenCV RTSP VideoCapture does not work in Docker container

I'm trying to get GStreamer + OpenCV RTSP video capture working in a Docker container based on a NVIDIA PyTorch image. I had to end up building OpenCV from source to enable GStreamer integration, which I do in my Dockerfile like so: FROM…
Rob
  • 25,984
  • 32
  • 109
  • 155
6
votes
1 answer

Viewing RTSP video stream through WebView in Android App

My App has a WebView which loads a simple html. However, this html links to a rtsp live video stream and the WebView isn't able to load it, instead it returns a "Web Page Not Available" message. When I open the rtsp link in the native Android…
CPess
  • 61
  • 1
  • 3
6
votes
1 answer

Could not find codec parameters for stream 0 (Video: hevc, none): unspecified size

I try to use ffmpeg to feed ffserver on CENTOS 6.10. When I run ffmpeg on stream I got an error message: Could not find codec parameters for stream 0 (Video: h264, none): unspecified size. The full ffmpeg output is here: [root@stone1 ~]# ffmpeg -i…
bzc0fq
  • 579
  • 1
  • 3
  • 18
6
votes
3 answers

How to display IP camera feed from an RTSP url onto reactjs app page?

I want to display the live footage of an ip camera on a web page built using ReactJS. I found some solutions on the internet but that provide solutions using the http url. However my camera has a username and password, and I don't know how to embed…
Yumna Albar
  • 115
  • 1
  • 2
  • 6
6
votes
1 answer

Play Youtube video in MPMoviePlayerController or play RTSP - 3GP link

I've checked on stackoverflow and searched all over the internet but haven't been able to find a solution to my problem. In my app I need to have control over the way a youtube video is shown. I need to have control over the MPMoviePlayerController…
user426651
  • 91
  • 1
  • 4
6
votes
1 answer

Re-stream RTSP from IP cam with Node Media Server to http/ws and display it with html

Goal My goal is to display my IP cam's RTSP-output stream on a standard HTML-page (html5 + css3 + vanilla javascript, no magic = no plugins). The HTML-page should be hosted in a NGINX web server on my Raspberry Pi. My equipment The setup I am using…
Hauns TM
  • 1,909
  • 2
  • 22
  • 38
6
votes
8 answers

Does FFMPEG support RTSP authentication?

Such as... rtsp://user:pass@x.x.x.x/VideoString
NoviceAndNovice
  • 705
  • 2
  • 13
  • 21
6
votes
3 answers

How to listen to 2 incoming rtsp streams at the same time with FFMpeg

I can listen and receive one rtsp stream with FFMpeg library using this code: AVFormatContext* format_context = NULL char* url = "rtsp://example.com/in/1"; AVDictionary *options = NULL; av_dict_set(&options, "rtsp_flags", "listen",…
Alexander Ushakov
  • 5,139
  • 3
  • 27
  • 50
6
votes
1 answer

Restreaming an rtsp stream through ffmpeg on iOS

I have an iOS application that displays an rtsp stream from an IP camera on the local network, I would like to restream it to an external server in real time (Wowza to be specific) the server will take care of converting rtsp to HLS so that the…
animaonline
  • 3,715
  • 5
  • 30
  • 57
6
votes
2 answers

lag in opencv videocapture when i use rtsp camera stream

So i'm currently working on a project that needs to do a facial recognition on rtsp ip cam , i managed to get the rtsp feed with no problems, but when it comes to applying the face recognition the video feed gets too slow and shows a great delay, i…
deepmore
  • 81
  • 1
  • 8
6
votes
4 answers

Sending Wav Audio File As RTP Packets

Suppose that I have an wav audio stay on my disk call it MyDummy.wav. I want to send it to a server as an RTP Packet. But As I see there are some timing issues with RTP Packet sending some says 20 ms etc...And how I will determine size of RTP…
Hippias Minor
  • 1,917
  • 2
  • 21
  • 46