rtsp

How to implement a tiny RTSP server?

I am implementing a client/server application where video streaming occurs between two computers (in one direction). I would like to have the server publish an SDP file when it starts streaming. The client would then be able to download this SDP file and use it to get the stream. In order to implement this it seems I need to include a RT...

Unknown error on pause()

Hi, I get the following error 12-15 16:54:37.125: ERROR/MediaPlayer(6032): error (-2147483648, 0) when trying to execute this code in a service: MediaPlayer mp = null; @Override public void onCreate() { if (mp == null) { mp = new MediaPlayer(); } } @Override public void onStart(Intent intent, int startId) { if (!mp.isPlayi...

Detect MPEG4/H264 I-Frame (IDR) in RTP stream

I need to detect MPEG4 I-Frame in RTP packet. I know how to remove RTP header and get the MPEG4 frame in it, but I cant figure out how to identify the I-Frame. Does it have a specific signature/header? ...

verify rtsp capabilities

I need to load test a site that serves up flash video via RTSP. I've looked at JMeter & Selenium and do not see any support for RTSP. Are there any testing tools that support RTSP load testing? ...

Verify RTSP service via URL

Hello, I am trying to verify that a video service is provided from an URL in python. I am asking does anyone know of any good libraries to use or a way to do this. I have not found much info for this on the web. Thanks ...

Writing custom DirectShow RTSP/RTP Source push filter - timestamping data coming from live sources

Hi there, I'm writing custom DirectShow source push filter which is supposed to receive RTP data from video server and push them to the renderer. I wrote a CVideoPushPin class which inherits from CSourceStream and CVideoReceiverThread class which is a wrapper for a thread that receive RTP packets from video server. The receiver thread ...

Display an RTSP video stream in a web page

I have an ip camera which provides a live rtsp video stream. I can use VLC media player to view the feed by providing it with the url: rtsp://cameraipaddress. But I need to display the feed on a web page. The camera provider supplied an active x control which I got working, but it is really buggy and causes the browser to frequently hang...

Convert rtsp video stream to http stream

Hi I have the rtsp URL for a live video stream which I would like to access as an HTTP stream. Can someone please tell me if there are any components out there which I can put on my server to do this? I do not have any idea how I can implement this. Would appreciate a heads up. Thanks. ...

How to force client to switch RTP transport from UDP to TCP?

If the client wants to watch a stream that is on my RTSP server, it first tries to setup a stream through the UDP protocol. How can I tell it that my server only supports RTP/AVP/TCP and that it should switch transports? I want to terminate the UDP support on my server, but all the clients first try to SETUP the session over UDP, and lat...

Darwin Streaming Server doesn't gives content

Hello! I have problems with Darwin Streaming server 5.5.5 on Debian. When i'm trying to open some stream, for ex. rtsp://sample.com/sample_100kbit.mp4 player reports it can't load stream and breaks connection. "Access History" section reports file was requested, so, at least initial connection is working, but nothing more. What can be w...

.net rtsp capture stream to disk

Hi I have a camera that sends h264 mpeg video over rtsp. I am looking for a solution in .NET to save this stream to disk as either a movie file or in some format I can later 'restream'. Have so far, without success, attempted to use vlclibnet for this but am unable to reliabely get it captured to a file. Any suggestions? Thanks ...

How can I record an rtsp video stream to a file from a linux command line?

I have a net cam which provides a rtsp stream via the default 554 port. I can view the stream perfectly using VLC (GUI mode) when I open rtsp://192.168.1.7/1234 (the "1234" is the [default] password the device requires to be in the url, for those who want to restrict access to the stream) What I need is to have a cli-only linux box re...

fast forward/streaming in html5 video? RTSP?

right now I've got a few .mp4's hosted on Amazon S3. I know that S3 has support for RTMP, which is useful for streaming Flash. I'd like to accomplish something similar with html5 video; my biggest issue is that I need the ability to seek (fast forward) to a particular part of the video. Right now when I query the video, it loads the en...

Android RTSP coding problem

I have Googled my butt off trying to find where if there is a surefire way to make rtsp work. I have a radio station that I listen to that streams via rtsp. Of course by default Android doesn't want to play it. If I pop the URL into yourmuze.fm and create a station there it lets me stream it to my phone. After checking how it works I...

[Android] How to resume video playback after the surface was destroyed ?

I'm working with the media player on a streaming application (RTSP): Video and sound are played great but when an incoming call pauses the Activity, the Surface is destroyed (I know this because of traces in SurfaceHolder.Callback). Once the call finishes, the activity is resumed and a new Surface is created. I've tried to assign it t...

Default Media Player in Android phones

I understand that all Android phones will have the WebKit browser Application. Is there a default Media Player that can perform RTSP stream in all Android phones? It seems OpenCore supoprts RTSP streaming - but is there a Media Player Application by default? ...

Streaming video using realnetwork helix

Hi all and thanks in advance. I'm new to streaming media. I've just signed up for streaming services from gate.com for my website. They provided me with the following info. It says it's provided by realnetwork Helix This is all they gave me, with no instructions of how to do it. UN:media.mydomain.com Password:xxxxxx Hostname: rtsp://m...

Android rtsp video frame rate loss?

Is it possible to calculate the frame rate (loss) of a rtsp video playing inside a VideoView or MediaPlayer? ...

RTSP streaming and save into mp4 file using VLC

Hello All let say i am having one RTSP url (rtsp://192.168.0.17/mpeg4). the live camera is setup on the machine which relay live video. i am streaming it using vlc player and i am saving it in mp4 file on some location (i.e. c:\temp.mp4). Now i am opening another vlc player instance and open this file (c:\temp.mp4). but as it is in us...

RTSP over HTTP client

I trying to realize rtsp over http. i have a problem with connection to RTSP camera. Maybe, someone can help me? Thanks. ...