vlc

How to disable VLCMediaPlayer error AlertView?

南笙酒味 提交于 2019-12-18 05:13:07
问题 I am using VLCMediaPlayer class from the MobileVLCKit library to make an audio streaming application. My problem is that when error happens (e.g. incorrect stream url) it automatically alerts its own error message. In my case, I would like to disable that alert message and display my own one. 回答1: No need to remove this option from source! Simply pass the player option like this: NSArray *options = @[@"--extraintf="]; VLCMediaPlayer *player = [[VLCMediaPlayer alloc] initWithOptions:options];

Open video stream on VLC Player through the browser

筅森魡賤 提交于 2019-12-17 22:34:12
问题 Is it possible to add a type of link on a webpage that will open up VLC Player and start playing a stream video? Like this one: Alternatively, is it possible to embed VLC Player in the browser? 回答1: UPDATE: 2018-09-25 Most of this response only applies to older browsers, so updating some sections. It was possible on older browsers, but required a client-side browser plugin depending on your Browser and OS versions, see: https://web.archive.org/web/20150212035837/http://www.videolan.org/doc

Hunk #1 FAILED at 1. What's that mean?

五迷三道 提交于 2019-12-17 22:19:14
问题 I get the following error when running make , and I have no idea what it means or what to do about it. Can anyone illuminate me or point me in the right direction? (cd libdvdnav-git && patch -p1) < ../../contrib/src/dvdnav/dvdnav.patch patching file Makefile.am Hunk #1 FAILED at 1. 1 out of 1 hunk FAILED -- saving rejects to file Makefile.am.rej make: *** [dvdnav] Error 1 I'm trying to cross compile VLC for win32 (using linux). 回答1: It is an error generated by patch . If you would open the

Compile VLCKit on Mac OS 10.9

给你一囗甜甜゛ 提交于 2019-12-17 18:32:08
问题 I'm trying to compile VLCKit on Mac OS 10.9 following this wiki : https://wiki.videolan.org/VLCKit/ I have clone git://git.videolan.org/vlc-bindings/VLCKit.git then open VLCKit.xcodeproj in Xcode 5.1 and finally run "Build Everything". But build failed with thoses issues : Run VLC configure PhaseScriptExecution bootstrap /Users/myname/Library/Developer/Xcode/DerivedData/VLCKit- bktcaifqrsqwbodqlfdqgsmkkdeb/Build/Intermediates/VLCKit.build/Debug/Run\ VLC\ configure.build/Script

RTSP stream and OpenCV (Python)

一世执手 提交于 2019-12-17 16:17:05
问题 I have an IP camera streaming on Linux through rtsp protocol and h264 linux driver. I am able to see the video in VLC with the following address and port: rtsp://192.168.1.2:8080/out.h264 However if I try to get the same video for OpenCV processing in Python 2.7.5 (MacOS X 10.9): import cv video = cv.CaptureFromFile('rtsp://192.168.1.2:8080/out.h264') I get the following error: WARNING: Couldn't read movie file rtsp://192.168.1.2:8080/out.h264 It seems something rather simple, but I am stuck

VLC record webcam and stream to chrome linux

空扰寡人 提交于 2019-12-17 10:58:10
问题 I am currently looking for how to accomplish what I have been told is possible. I was told that we would be able use vlc to stream a webcam in linux which would allow for the following: Recording the stream to the local machine for a later upload. Play the stream as it's recording using Chrome's HTML5 video capabilities. Send a start and stop command from the web for the vlc recording. I have been researching this for quite some time and haven't been able to find a viable solution. I am able

iOS MobileVLCKit archive problems

爷,独闯天下 提交于 2019-12-14 03:43:08
问题 While trying archiving my project I got this error : ld: bitcode bundle could not be generated because '/Users//MobileVLCKit/MobileVLCKit.framework/MobileVLCKit(VLCEmbeddedDialogProvider.o)' was built without full bitcode. All object files and libraries for bitcode must be generated from Xcode Archive or Install build file '/Users//MobileVLCKit/MobileVLCKit.framework/MobileVLCKit' for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) Tried to

buffering issue with java communicating vlc

风流意气都作罢 提交于 2019-12-14 03:18:09
问题 I'm a newbie to Socket communication, so I may be wrong, but please advice or at least give the direction! I'm implementing an RTSP server according to http://www.csee.umbc.edu/~pmundur/courses/CMSC691C/lab5-kurose-ross.html#appendix taking a look to the similar code from http://www.java2s.com/Open-Source/Android/UnTagged/mynpr/com/webeclubbin/mynpr/RTSPserver.java.htm At the moment I'm implementing responce to the OPTIONS request. To make it easy in the first approach, I decided to hardcode

vlc android 编译

丶灬走出姿态 提交于 2019-12-13 19:04:14
很多同学都在尝试编译 android 版本的 vlc时候发现很多编译问题,一般都编译好几次都没有编译通过。我在这里将我在比较常用的两个发行平台上编译过程中出现的问题说明记录一下: 先阅读一下官方给定的教程: https://wiki.videolan.org/AndroidCompile/ ,按照教程中的内容配置环境变量NDK包。注意到目前我写此文章的时间官方支持的 ndk 的版本是 NDKr4b 所以下载ndk的使用请使用该版本进行下载。 由于官方文档推荐的是 ubuntu 系统进行讲解说明的。但是对于我这种比较喜欢 fedora 和 opensuse rpm 安装包的同学来说确实存在问题了,所以我这边将在 fedora 和 opensuse 系统上安装的过程记录下来。 fedora 平台 请使用最新的fedora 发行版本,目前我的fedora 系统是 fedora 27,默认你的系统不是刚刚安装,如果是刚刚按抓给你的请执行 dnf update -y 将系统更新一下,然后安装如下的内容: dnf install -y automake autoconf dnf install -y ant dnf install -y gettext-devel dnf install -y cmake #like debian os install build-essential dnf

Open VLC Network Streaming from web browser

放肆的年华 提交于 2019-12-13 17:10:15
问题 I have a web server containing video files and client computers that use VLC to view them. Now, in order to view the video, the client must go on the webpage, right click the direct link, copy it, go to VLC, open the Network Stream option and paste the URL in. I know VLC has a web plugin but I don't want to use that. I am wondering if it is possible, via JavaScript, html, or some other method, to open VLC and copy the video URL to the Network Streaming screen, so my clients simply have to