rtsp

Can't receive RTSP live stream from an IP cam

时光毁灭记忆、已成空白 提交于 2019-12-04 14:47:27
I want to receive live streaming from an IP camera using RTSP, I'm getting 'Can't play this video' , and the following Exception: 07-16 14:06:26.945: D/MediaPlayer(19411): setDataSource IOException happend : 07-16 14:06:26.945: D/MediaPlayer(19411): java.io.FileNotFoundException: No content provider: rtsp://192.168.30.108:554 07-16 14:06:26.945: D/MediaPlayer(19411): at android.content.ContentResolver.openTypedAssetFileDescriptor(ContentResolver.java:1052) 07-16 14:06:26.945: D/MediaPlayer(19411): at android.content.ContentResolver.openAssetFileDescriptor(ContentResolver.java:907) 07-16 14:06

RTSP tunneled HTTP, FFMPEG

天大地大妈咪最大 提交于 2019-12-04 14:37:26
问题 I'm trying to stream from an Axis ip camera which uses RTSP over HTTP. I can get the normal RTSP stream to work, but I can't find any information or documentation on how to actually set the tunneling mode for the stream. It is supported in the source code by setting the control_transport to RTSP_MODE_TUNNEL . My question is simple how do I do this with the following code? int ret = avformat_open_input(&pFormatCtx, [@"rtsp://ip/axis-media/media.amp" UTF8String], NULL, NULL); I tried the

Is there a good way to stream video FROM Android to an RTSP server?

别等时光非礼了梦想. 提交于 2019-12-04 14:07:02
问题 I have searched around and haven't really found anything. I would like to send the video from the built in camera to my RTSP server via a stream. When looking for examples, I saw that it might be possible for MediaPlayer to have its setDataSource() method to just include the location of the stream on the server. I tried to emulate that with: mediaRecorder = new MediaRecorder(); mediaRecorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT); mediaRecorder.setVideoSource(MediaRecorder

Using Live555 to Stream Live Video from an IP camera connected to an H264 encoder

夙愿已清 提交于 2019-12-04 12:01:23
问题 I am using a custom Texas Instruments OMAP-L138 based board that basically consists of an ARM9 based SoC and a DSP processor. It is connected to a camera lens. What I'm trying to do is to capture live video stream which is sent to the dsp processor for H264 encoding which is sent over uPP in packets of 8192 bytes. I want to use the testH264VideoStreamer supplied by Live555 to live stream the H264 encoded video over RTSP. The code I have modified is shown below: #include <liveMedia.hh>

H.264 RTSP Absolute TIMESTAMP

我只是一个虾纸丫 提交于 2019-12-04 11:58:44
问题 Is it possible to read an absolute timestamp from an H.264 stream sent trough RTSP from an Axis camera? It will be necessary to know when the frame has been taken by the camera. Thanks Andrea 回答1: as Ralf already said - the RTP timestamps are relative to a random clock - they are only useful for computing the difference between two frames (or RTP-packets in general). For synchronizing these relative values to a wall clock you can use the RTCP sender - just have a look on the links Ralf

Android RTSP Live Streaming Issue

一笑奈何 提交于 2019-12-04 10:24:43
Android Video Live Streaming Problem I am using Vitamio library. The RTSP streaming is working well, Now I want to record that RTSP live streaming in my SD card locally. please help !!! Or can i use media recorder to record RTSP live streaming ? Media Recorder is not the good way to record RTSP video, I have used the FFMPEG library to record RTSP recording locally in sd card. Steps to do this. Capture or decode the RAW frames from live stream and pass them to ffmpeg and save them to sdcard in .h264 format. Then again pick .h264 raw file and decode the file using ffmpeg, and save the file with

How to stream video in android device via .sdp file from android device

╄→尐↘猪︶ㄣ 提交于 2019-12-04 09:29:45
I had anapplication to stream video(without audio) from android device(Blaze board) to PC. For that, I'm using vlc player to view streamed video by using the following command in command line vlc stream.sdp This .sdp file would be generated from my application. By using the above command, I can stream from blaze board to PC with the delay of 1 sec. Now, My problem is that, I have to stream from one blaze board to another blaze board. I have searched a lot. But, Nothing is worked. I have an idea to write viewer application ( For client ). This application will use sdp file path as url. I refer

new.livestream.com API to get RTSP

谁说我不能喝 提交于 2019-12-04 08:46:25
问题 I need to get an RTSP stream of a livestream.com account. I was reading some of the API documentation for livestream.com, but they have a new website (new.livestream.com), and I cannot find any API documentation talking about that. Does anybody knows if there is an API for the new livestream.com website which allows me to get an RTSP stream? Thanks in advance. 回答1: I Know this is a bit old, but i was asking that very same question and i this is how i've done it: I've found this URL/API call,

Use VLC to stream RTSP feed as HTTP Live Stream

隐身守侯 提交于 2019-12-04 07:44:08
I have a really high quality RTSP feed coming into a windows server. I'm attempting to use VLC to restream it as Http Live Streaming. Does anyone know whether it is possible to establish this stream through VLC's graphic user interface as opposed to the command line? If so, how? The examples I've found so far (on here and elsewhere) have all been command line examples and none of them have worked at all. I would love to hear from anyone who has actually accomplished a successful restream of RTSP to an http live stream using a windows server. Incidentally, I already have the website set up to

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

情到浓时终转凉″ 提交于 2019-12-04 05:46:35
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 and thereby MPMediaPlayback properties. So actually I have 3 questions: Is there already a solution for playing youtube videos directly in a MPMoviePlayerController that you create yourself? Is it somehow possible to play the RTSP - 3GP links youtube has for the mobile site in the MPMoviePlayerController? (Right now it refuses the RTSP format) Is it