Questions tagged [rtsp-client]

147 questions
93
votes
2 answers

how to get vlc logs?

I am trying to run rtsp url from the VLC player. But an error appears, and "see logs for details" comes up in a dialog box. How can I enable logs in VLC?
garima
  • 5,154
  • 11
  • 46
  • 77
35
votes
2 answers

Forcing Android to use RTSP/AVP/TCP interleaved

I am using Android 4.1.2 on Galaxy S3. Currently android mediaplayer always tries RTSP UDP (RTP/AVP/UDP) method to connect with RTSP server. If Android MediaPlayer does not receive the data on its UDP ports..it timesout and then tries RTSP TCP…
ext123
  • 351
  • 3
  • 3
22
votes
7 answers

Upload live android webcam video to RTP/RTSP Server

I have already done proper research, but still lack information on the thing I would like to achieve. So I would like to program an application where the user can record a video and instantly (live) upload the video to a RTP/RTSP Server. The server…
Biraj Zalavadia
  • 28,348
  • 10
  • 61
  • 77
17
votes
4 answers

Record RTSP stream with FFmpeg libavformat

I'm trying to record RTSP stream from Axis camera with FFmpeg libavformat. I can grab video from files and then save it to another file, this is OK. But camera sends strange data, FPS is 100 and camera sends every 4th frame so result FPS is about…
chatoooo
  • 326
  • 1
  • 3
  • 13
8
votes
2 answers

Keeping Alive Rtsp Connection

I have a simple Rtsp Client...The client send Rtsp Commands to Rtsp Server and get RTP packets from server. The problem is that after a time( about 3-4 minute) my 3rd party RTSP Server drop connection with my RTSP Client. I have not…
Novalis
  • 2,265
  • 6
  • 39
  • 63
6
votes
8 answers

Does FFMPEG support RTSP authentication?

Such as... rtsp://user:pass@x.x.x.x/VideoString
NoviceAndNovice
  • 705
  • 2
  • 13
  • 21
5
votes
1 answer

FFMPEG API: How to connect to RTSP stream using av_open_input_file?

I'm trying to connect to some RTSP stream using av_open_input_file() like this: AVFormatContext* ic; avcodec_register_all(); av_register_all(); av_open_input_file(&ic, "rtsp://login:password@xxx.xxx.xxx.xxx/videoinput_1/mjpeg/media.stm", NULL, 4096,…
Alexander Kulyakhtin
  • 47,782
  • 38
  • 107
  • 158
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 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
1 answer

Play a SDP file with VLC?

Goal Confirming that VLC can play a stream from a locally given SDP file. This appears to be possible based on testimonies: Playing RTP using VLC - Stack Overflow How to send SDP over RTP - Stack Overflow Experiment So I looked for a publicly…
Stéphane Gourichon
  • 6,493
  • 4
  • 37
  • 48
5
votes
0 answers

RTSP video plays fine on Wowza test player but unable to play video if tested on VLC or other players (audio always plays fine)

I am working on An RTSP based application in which i am trying to broadcast my mac screen to a wowza using rtsp. Everything seems to be working fine but i am facing some very very strange issues while broadcasting the audio and video on wowza. What…
Dinesh
  • 929
  • 7
  • 25
5
votes
0 answers

IP Cameras and their supported protocol

Do the majority of IP cameras support RTSP? Also, apart from using uPnP and Bonjour are there any other ways of detecting IP cameras on the local network?
Andrew Simpson
  • 6,883
  • 11
  • 79
  • 179
4
votes
0 answers

Grabbing rtsp/rtp stream with libavformat

world. I'm trying to grab rtsp mjpeg stream from IP-camera (realtime) as described in http://www.inb.uni-luebeck.de/~boehme/using_libavcodec.html, but ported to newer version. It works well with mpeg file (loading it full as one AVPacket), but…
T0ha
  • 73
  • 1
  • 7
4
votes
0 answers

I want to get the backchannel URI from the ONVIF camera with curl

What I want to do The purpose is to be able to input an audio from a microphone on a PC and send and output audio from the audio output terminal of the IP camera. Where it's jammed I want to receive a response like the image below using curl for an…
tyamzak
  • 41
  • 1
4
votes
3 answers

How to make Gstreamer return only keyframes?

In gstreamer pipeline, I'm trying to figure out if there's a way to specify that I only want key frames from a RTSP stream. In ffmpeg you can do this with with -skip_frame nokey flag. E.g.: ffmpeg -skip_frame nokey -i…
Anton Fedorov
  • 73
  • 1
  • 6
1
2 3
9 10