Questions tagged [rtsp-client]

147 questions
3
votes
1 answer

Android with pthread_cancel enabled? ffmpeg depends on pthread_cancel

I am building ffmpeg 2.1.3 in the android with ndk r9b version. I have used the below command. ./configure --enable-shared --prefix=/home/fbuild --cross-prefix=arm-linux-androideabi- --enable-cross-compile …
Whoami
  • 13,930
  • 19
  • 84
  • 140
3
votes
4 answers

creating app for playing RTSP streaming videos

I want to create a app which plays RTSP streaming video. I found lots of questions regarding to the same on SO. Every question has pointed me to live555. I followed the link and downloaded the c++ library. I wasn't able to build this at first and I…
Kapil Choubisa
  • 5,152
  • 9
  • 65
  • 100
2
votes
1 answer

Streaming in HTML Flash page works fine on Motorola zoom tablet but not works on Google TV in an Android WebView

i created an small Asp.Net website on my local system that has only one page that embeds a flash player into the page which plays an online video stream. I use an Android WebView to load that page to play that video stream. Code is as…
Aamir
  • 1,747
  • 5
  • 26
  • 50
2
votes
1 answer

Live555 OpenRTSP Client : How to delete current rtsp client properly and start new One

Well, When my OpenRtsp Client lost connection with server, I dispose the old client and other parameters then re-create new client. The Client send Options,Describe request successfully but failed after that... I can not able create Session and…
Novalis
  • 2,265
  • 6
  • 39
  • 63
2
votes
1 answer

rtspclientsink test pipeline from command line

I would like to stream with rtsp using GStreamer pipeline elements. First, I checked with gst-inspect-1.0 that rtspclientsink is available: xilinx-k26-starterkit-2020_2:/# gst-inspect-1.0 | grep rtsp rtspclientsink: rtspclientsink: RTSP RECORD…
Alperen
  • 21
  • 1
  • 3
2
votes
1 answer

How to use gstreamer rtspsrc to display a rtsp source?

I'm playing with gstreamer rtsp. I created a rtsp sink as this: gst-launch-1.0 videotestsrc ! x264enc ! rtph264pay config-interval=10 pt=96 ! udpsink host=127.0.0.1 port=5000 I can't open it directly by VLC (with rtsp://127.0.0.1:5000) but with a…
user10838321
2
votes
2 answers

gst-rtsp-server: detect client disconnect

I am implementing a video streaming pipeline using gst-rtsp-server. I need to know when an RTSP client both connects and disconnects. From the examples provided with gst-rtsp-server, I can detect a client connecting using the "client-connected"…
Nicolas
  • 335
  • 3
  • 14
2
votes
2 answers

RTSP 2.0 adoption and implementation

The new RTSP 2.0 draft spec tries to solve most of the inter-operaility issues that were encountered in the initial RTSP spec (RFC 2326). Also it provide for means to solve the most dreaded issue - NAT traversal. This has been an incentive for us to…
sthustfo
  • 1,209
  • 4
  • 19
  • 35
2
votes
1 answer

Pipeline Gstreamer RTSP file sinking with big delay

I prepared a IP camera with Gstremer on RTSP and it seems to online and real time, with command: gst-launch-1.0 rtspsrc location=rtsp://192.168.1.138:554/axis-media/media.amp ! rtph264depay ! decodebin ! videoconvert ! autovideosink sync=false it…
Amir Farahani
  • 31
  • 1
  • 5
2
votes
1 answer

How can I get start time of rtsp-sesson via ffmpeg (C++)? start_time_realtime always equal -9223372036854775808

I'm trying to get a frame by rtsp and calculate its real-world timestamp. I previously used Live555 for this (presentationTime). As far as I understand, ffmpeg does not provide such functionality, but provides the ability to read the relative time…
chuchuchu
  • 21
  • 1
2
votes
1 answer

node-rtsp-stream quality is low in browser, despite good quality in vlc

I use node-rtsp-stream and jsmpeg to stream and display video from ip camera in browser. I get good quality in vlc using rtsp://:554/Steaming/Channels/102 address. However, when I use jsmpeg to display the stream in browser its quality is too…
babanazar
  • 21
  • 1
  • 7
2
votes
1 answer

Receive rtsp stream FROM DVR

I have a DVR as a server which is connected to a camera.I'm trying to stream the camera's view into my android phone.I managed to do it through LAN,but failed through 3g/cellular I've done Port forwarding use DynDNS 3rd party app called MEye(only…
Fay Zan
  • 165
  • 2
  • 17
2
votes
1 answer

FFmpeg NaCl module avformat_open_input (on rtsp stream) returns -5: I/O error

I want to create an RTSP player in Chrome PNaCl. I have successfully built the ffmpeg naclport including the following networking flags in the build.sh file for the ffmpeg NaCl port. --enable network --enable-protocols --enable-demuxer=rtsp…
Taimoor Alam
  • 113
  • 1
  • 11
2
votes
0 answers

Is there a javascript library for displaying RTSP on a webpage?

I am going to display an RTSP stream on a webpage. I figured out that currently no browsers support RTSP protocol for HTML5 video tag. However, there are some plugins such as VLC ActiveX to do the job. But, unfortunately, they are OS or platform…
Hamed
  • 1,175
  • 3
  • 20
  • 46
2
votes
1 answer

RTP depacketization

I'm trying to parse RTP AVC video stream to prepare it for H264 Decoder. This is my packet stream captured by Wireshark First I'm trying to find IDR slice, SPS and PPS parameters, so this is…
Alex Firsa
  • 21
  • 1
  • 3
1 2
3
9 10