rtsp

Does FFMPEG support RTSP authentication?

时光怂恿深爱的人放手 提交于 2019-12-19 03:14:41
问题 Such as... rtsp://user:pass@x.x.x.x/VideoString 回答1: It has been quite q while, not sure what's the story back in 11, but yes, ffmpeg now support so. ffmpeg -i rtsp://user:pass@x.x.x.x/VideoString works. 回答2: ffmpeg support rtsp authentication i think you might be missing quotes covering rstp URL. examples: Not working : ffmpeg -i rtsp://user:pass@x.x.x.x/VideoString Working : ffmpeg -i "rtsp://user:pass@x.x.x.x/VideoString" 回答3: Yea Im having problems with this too. It seems Digest

Reduce video buffering

≡放荡痞女 提交于 2019-12-18 12:42:14
问题 I'm playing video on Android using media player via RTSP. The player takes about 12s to buffer before it starts playing. Anyone know how I can convince the player to buffer less? I have full control over the RTSP server and the SDP it returns. 回答1: As per usual, as soon as I decide I should ask a question I work out the answer. I have a line "b=AS:91" in my SDP. If I reduce the number the amount of buffering decreases - so b=AS:2 gives about 4 or 5s buffering. 来源: https://stackoverflow.com

OpenCV IP Camera RTSP stream

北城余情 提交于 2019-12-18 09:24:18
问题 I'm trying to access a RTSP video stream from an IP camera using OpenCV and Java. I can access the stream using VLC player with the following format: rtsp://192.168.1.10:554/rtsp_live0 but when I try to use OpenCV the video stream seems to always be closed. The code I'm using... (simplified) VideoCapture capture = new VideoCapture(); capture.open("rtsp://192.168.1.10:554/rtsp_live0"); while(!capture.isOpened()) System.out.print("Not opened :( \r"); I have a Mustcam H806P and found the stream

JPEG streaming with live555

混江龙づ霸主 提交于 2019-12-18 07:09:08
问题 I want to stream JPEG images or motion-JPEG file through live 555. But the problem is that in live 555 implementation for Jpegs is not available. Anyone can help ?? 回答1: You can find a implementation that was posted to the devel mailing list http://lists.live555.com/pipermail/live-devel/2012-February/014672.html. The code and a sample is available but this modification was rejected by live555 maintainer. First we need to implement an MJPEGVideoSource than can feed a JPEGVideoRTPSink .

Live555 on Android

谁说胖子不能爱 提交于 2019-12-18 03:43:54
问题 I'm trying to get the RTSP video stream play in my Android App using the build-in Videoview/MediaPlayer, but there're always various problems on different ROMs or different network status(UDP packets blocked), it's really annoying so I want to implement my own rtsp client with the live555 source and GLES and ffmpeg. I can figure out how to use ffmpeg and GLES to show a video, but I'm not familiar with live555. Are there any compiled version of live555 on Android? or how could I do that myself

How to configure live555 framework for iphone app development?

China☆狼群 提交于 2019-12-17 23:26:01
问题 I have the live555 framework with me. How to use it in Xcode? 回答1: If you haven't managed to configure it yet. Try this command in the terminal in live555 folder make iphoneos It will generate the static libraries for you. 来源: https://stackoverflow.com/questions/5191819/how-to-configure-live555-framework-for-iphone-app-development

Write opencv frames into gstreamer rtsp server pipeline

此生再无相见时 提交于 2019-12-17 15:46:23
问题 I'm trying to put opencv images into a gstreamer rtsp server in python. I have some issue writing in the mediafactory, I'm new to gst-rtsp-server ancd there's little documentation so I don't know exactly if I'm using the right approach. I'm using a thread to start the MainLoop and I'm using the main thread to create a buffer to push in the appsrc element of the mediafactory pipeline. Am I using the right approach to obtain my objective? Can anyone help me? My code is below: from threading

Receiving RTSP stream using FFMPEG library

随声附和 提交于 2019-12-17 06:27:11
问题 I have an IPCamera on my LAN streaming video using RTSP. I have been able to capture and display it successfully using ffplay command: ffplay rtsp://admin:123456@192.168.2.50:7070 (with authentication) So I would like to achieve the same using programming in C/C++ using ffmpeg library. I guess this must be possible. So let me phrase two simple questions : How do I receive the stream in a C/C++ program using FFMPEG library? (just provide some URL/tutorial, as google was not helpful) How do I

Streaming via RTSP or RTP in HTML5

*爱你&永不变心* 提交于 2019-12-16 20:04:44
问题 I'm building a web app that should play back an RTSP/RTP stream from a server http://lscube.org/projects/feng . Does the HTML5 video/audio tag support the rtsp or rtp? If not, what would the easiest solution be? Perhaps drop down to a VLC plugin or something like that. 回答1: Technically 'Yes' (but not really...) HTML 5's <video> tag is protocol agnostic—it does not care. You place the protocol in the src attribute as part of the URL. E.g.: <video src="rtp://myserver.com/path/to/stream"> Your

RTSP转RTSP、RTMP、HLS、FLV安防摄像头网页无插件直播流媒体服务器EasyNVR在IE浏览器下的 pointer-events- none前端兼容性调试

ⅰ亾dé卋堺 提交于 2019-12-16 03:09:45
背景说明 由于互联网的飞速发展,传统安防摄像头的视频监控直播与互联网直播相结合是大势所趋。传统安防的直播大多在一个局域网内,在播放的客户端上也是有所限制,一般都需要OCX Web插件进行直播。对于安防监控的视频直播需求,根据不同的业务需求,对视频直播需求也不尽相同。针对这样的行业大环境背景,立足于开源社区的EasyDarwin团队推出了EasyNVR、EasyDSS等系列产品。而对于安防监控的视频直播需求,对延时要求都比较高。 IE浏览器下的pointer-events- none问题 在我们调试EasyNVR的web页面过程中,力求的都是一个播放效果的、功能的展示。对于兼容性也有注意,但有些细小的部分还是难免有所疏忽。内部测试发现:由于我们是流媒体的实时视频直播,在web的直播页面中,我们都是屏蔽、删除播放器的暂停按钮、功能的。我们的web页面播放rtmp、hls使用的是videojs,因此,我们需要通过设置css属性来完成这个需求。 发现问题 屏蔽单机页面暂停 .video-js .vjs-tech { pointer-events: none; } 这个属性设置 很好的在chrome中完成了需求。但是在IE中似乎就没有能够完成自己应有的任务了。 隐藏暂停、开始按钮 .vjs-progress-control,.vjs-remaining-time-display{