Hello, I have notice the new method: - (instancetype)initWithStream:(NSInputStream *)stream; I'm don't have found something about the difference with regular NSURL way. I mostly use stream over rtsp, will it works better if i switch to this new method ? There is some mention about use of NSURLSessio...
Hello, I just compiled latest LibVLCKit today for my IOS app and can't resolve a crash problem. Here is how i get the crash: Go from Screen A (menu) to Screen B (vlc player) and close Screen B to go back to A. Repeat this a second time and when back to Screen A, the app crash. It's a EXC_BAD_ACCESS ...
Where to fill a bug report ? I just have check and the official ios VLC can't read it too. Here are some samples: http://176.158.217.56/videostream.asf?user=admin&pwd= http://177.38.56.70:90/videostream.asf?user=admin&pwd= http://2.105.52.88:84/videostream.asf?user=admin&pwd= http://203....
Some ASF works that's why i have add the codec in previous description. Don't know the real problem but would be nice to have a fix after so long time.
I just have compiled the latest Master for IOS MobileVLCKit.framework (without any custom settings) and the stream of my webcam still don't work. The official VLC for mac that can read it show this in codec window information: Video: Motion JPEG video (MJPEG) Audio: IMA WAV ADPCM Audio (ms) I can't ...
Hello, With a old build of VLCKIT 3.0pre2 for IOS i was able to read .asf URL from a IP camera that has MJPEG and ADPCM format. And now every build i try can't open the correct module but i cant find why. I have compared the 2 log files. The one that works VLCKIT 3.0pre2 build around march 2016: 201...
The only version i get it working is 2.7 branch but the question (that don't appear in this 2.7 version) has a bug. The result is never used to trust the cetificate. Answer var is not good. Just bypass this piece of code in securetransport.c around line 326. Remove the if line that check for answer ...
I have compiled myself the 2.7 branch with securetransport.c modification that disable the question (that don't appear in 2.7) about insecure site around line 326. Just remove the if line that check for answer to force it like a always YES. Looks like this hack works until now. Version 3.0pre2 force...
Well, if i compile the project myself with command line, i now have this line that works: CommandLine /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c-header... Don't know how to solve the problem but for people who want to compile it by han...
Someone know where in the build process the SharedPrecompiledHeaders folder is build with MobileVLCKit_Prefix.pch.data file that contain this line: CommandLine xcrun\ clang -x objective-c-header -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11...
Hello, I try to compile latest VLCKit for IOS and vlc compile fine until i add the -f option. It produce this error: error: can't exec 'xcrun clang' (No such file or directory) I have try command below but there is no change: sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer/ Step...
Hi, I have tested VLCKit pre3 compiled from myself and the nightly too. The nightly since 1 month are linked to felix computer, just see the small size of binary. About the problem, i can play some 720x576 H264 - mpeg-4 AVC part 10 video over rtsp without problem but other 1440x1090 H264 - mpeg-4 AV...
Hi, The latest pre3 file no more compile since a lot of months. I have try today to git clone 2.7 or 2.8 branch and compile it wihtout success. Steps to reproduce the error on latest Mac Sierra OS: git clone -b iOS-2.7 https://code.videolan.org/videolan/VLCKit.git ./buildMobileVLCKit.sh -f The log i...
Hi, I use this code to read a rtsp link: _mediaplayer.media = [VLCMedia mediaWithURL:@"myrtsplink"]; It's working fine but in this stream there is one or more subtitle track. I can see them with VLC for mac when i use the menu. How can i switch them with VLCMedia ? I can't find any docs ab...
I just have download the MobileVLCKit 3.0.0-pre3 archive and start the compile process as usual.
It's not the first time i compile myself this code but there is clearly a error in the latest archive.
I didn't have this problem.
But after I search about "install-ios-iPhoneSimulator" , I find they are some directory in this path,such like "i386"
Maybe you can try it!
Have you use directly the git or the file to download ?
I have test with the file.
After This i get another problem: ./buildMobileVLCKit.sh: line 42: pushd: MobileVLCKit/ImportedSources/vlc/install-ios-iPhoneSimulator: No such file or directory It was complaining before this about install-ios-iPhoneOS folder not found but i have add the missing OS behind install-ios-iPhone. Any id...
Hi, I use the MobileVLCKit and i wonder if there is a way to send a movie stream to my Chromecast. The sample of Google website use a http:// movie and it works nice but i mostly have rtsp stream, like ip camera. Maybe there is a way to get the VLC frames and send them to Chromecast ? What about aud...
It's a sort of custom answer by a ISP hardware: Received 186 new bytes of response data. Received a complete SETUP response: RTSP/1.0 453 Not Enough Bandwidth Cseq: 5 Server: xxxrtspd/1.2 xxxx RTSP server Public: DESCRIBE, OPTIONS, SETUP, TEARDOWN, PLAY, PAUSE xxxx-Error: 402 "server is busy&qu...
I have no problem to enable a verbose log and see the very explicit problem in this log. What i need is to catch this error with a piece of code like: If(nastyErrorFromLog){ // do this } I need it because the error i see is very common for my use and it will be amazing to catch this with code to aut...