rtsp

Use VLC to stream RTSP feed as HTTP Live Stream

做~自己de王妃 提交于 2019-12-06 03:37:24
问题 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

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

天涯浪子 提交于 2019-12-06 01:41:44
问题 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

How to play RTSP url from within app in ios

瘦欲@ 提交于 2019-12-05 22:34:31
I have found many suggestion in stack overflow regarding usage of FFmpeg and link of github for DFURTSPPlayer but it is not compiling. But after integrating FFmpeg what I have to write? suppose i am having HTTP urls then I write: code moviePath = "http:/path.mp4" movieURL = NSURL.URLWithString(moviePath!) moviePlayer = MPMoviePlayerController(contentURL: movieURL) moviePlayer!.play() So for using RTSP urls what kind of code should i write? Rudolfs Bundulis Here is another post that has an example FFmpeg code that receives an RTSP stream (this one also decodes the stream to YUV420, stores it in

Decode of live RTSP stream: large video lag using MediaPlayer on Android

僤鯓⒐⒋嵵緔 提交于 2019-12-05 22:06:48
问题 I'm playing a Live RTSP stream from VLC on a PC to Android MediaPlayer class (both on same local network). It plays smoothly with no errors - the problem is that the decoded video on screen is between around 5 and 7 seconds behind live. From debug and callbacks I can see that the live data is arriving on the device < 1s after starting mMediaPlayer.prepareAsync() . This is when the MediaPlayer class begins to work out what format the stream is with what dimensions etc. Then just before video

How can I force wireshark to decipher some types of protocols if it doesn't recognize them (RTSP,RTP, RTCP)?

僤鯓⒐⒋嵵緔 提交于 2019-12-05 21:49:50
I'm trying to implement RTSP protocol in Java according to http://www.csee.umbc.edu/~pmundur/courses/CMSC691C/lab5-kurose-ross.html example; I have succeed up to successful communication with VLC via RTSP requests and streaming RTP packets; RTP packets with JPEG payload are not recognized by VLC well; that's why I supposed I send malformed RTP. I sniffed them with wireshark and compared them with packets, sniffed from successfull RTSP communication of gstreamer RTSP streamer and VLc. I was surprised, that both my app&VLC's RTSP and RTP requests were labeled in wireshark UI as simply TCP and

Too small ffmpeg rtsp decoding buffer

北城余情 提交于 2019-12-05 18:50:25
I'm decoding rtsp on Android with ffmpeg, and I quickly see pixelization when the image updates quickly or with a high resolution: After googling, I found that it might be correlated to the UDP buffer size. I have then recompiled the ffmpeg library with the following parameters inside ffmpeg/libavformat/udp.c #define UDP_TX_BUF_SIZE 327680 #define UDP_MAX_PKT_SIZE 655360 It seems to improve but it still starts to fail at some point. Any idea which buffer I should increase and how? For my problem ( http://libav-users.943685.n4.nabble.com/UDP-Stream-Read-Pixelation-Macroblock-Corruption

Playing RTSP Video in QML on Windows

时光总嘲笑我的痴心妄想 提交于 2019-12-05 12:59:39
I am trying to play a RTSP stream in QML into a Video tag as following: Repeater { model: 8 Video { Layout.fillWidth: true Layout.fillHeight: true fillMode: VideoOutput.Stretch source: Controller.urlCanal(index + 1) autoPlay: true autoLoad: true CustomBorder { commonBorder: true color: "#228e14" commonBorderWidth: 3 } } } This should display 8 videoScreens, but I am getting the error: DirectShowPlayerService::doSetUrlSource: Unresolved error code 800c000d URL: rtsp://192.168.50.10:8082/user=admin&password=admin&channel=7&stream=0.sdp?real_stream Does QML support RTSP? If so, What I am doing

How to take a screenshot of Android's VideoView from rtsp streaming?

前提是你 提交于 2019-12-05 12:19:37
v = new VideoView(this){ @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { setMeasuredDimension(vWi,vHe); } }; v.setVideoURI(Uri.parse("rtsp://xxxxxxxxx")); v.requestFocus(); v.start(); How to take a screenshot? I try take screenshot, but picture is black. Umer Kiani This is how it goes to capture screenshot of current frame in videoview public class MainActivity extends Activity { MediaMetadataRetriever mediaMetadataRetriever; MediaController myMediaController; VideoView myVideoView; String viewSource = "/storage/sdcard0/DCIM/100MEDIA/VIDEO0009.mp4"; @Override

Process RTSP with Node.js for taking an image snapshot

跟風遠走 提交于 2019-12-05 11:34:49
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 the stream, convert it to base64 and stream it through Socket.IO to a client so they can see it as a <img> tag on their browser. Much of this will be taken from the guy who make it with a webcam but I only have a RTSP available as video-source. So, does anyone knows if there's a way to do this? I really found the answer months ago but forgot I asked

FFMPEG error with avformat_open_input returning -135

南楼画角 提交于 2019-12-05 08:09:53
问题 I have a DLL one of my applications uses to receive video from RTSP cameras. Under the hood, the DLL uses FFMPEG libs from this release zip : ffmpeg-20141022-git-6dc99fd-win64-shared.7z We have a wide variety of cameras in house and most of them work just fine. However, on one particular Pelco Model Number: IXE20DN-OCP, I am unable to connect. I tested the camera and rtsp connection string on VLC and it connects to the camera just fine. I found the connection string here : http://www