Any way to play file from smb server using MobileVLCKit
Posted: 06 Jul 2016 11:46
I'm Using MobileVLCKit to browse my local network shares using VLCMediaDiscoverer on iOS, but when I try to initialize I receive this error:
core services discovery error: no suitable services discovery module
Another thing that I'm try is to initialize de VLCMedia with the smb scheme like this:
But vlc is not able to open the file.
Is there any way to achieve this, Play a video file from samba server directly to MobileVLCKit just like the official VLC for iOS does?
Thanks in advance.
core services discovery error: no suitable services discovery module
Another thing that I'm try is to initialize de VLCMedia with the smb scheme like this:
Code: Select all
let curl = NSURL(string: "smb://user:pass@host/folder/video.mp4");
media = VLCMedia(URL: curl)
Is there any way to achieve this, Play a video file from samba server directly to MobileVLCKit just like the official VLC for iOS does?
Thanks in advance.