Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stream to VLC for iOS via URL Scheme

Tags:

ios

vlc

I'm trying to link to the iOS VLC app via its URL scheme. I need to open a FLV file(preferably as a stream, rather than downloading). I have tried vlc://http://domain.com/path/to/video.flv which opens VLC with a popup asking if I would like to play or download. Tapping download works, however play doesn't do anything except close the popup(I can get it to eventually work if I tap Play in the popup -> Play in Control Centre -> tap back in VLC). Is there a way to get it to play by directly through the URL?

Bonus points if you figure out how to select the "Scan for Subtitles" option in the "Open Network Stream" section of VLC. ;)

I've looked all over Google and can't find any documentation of the URL scheme. Any help is greatly appreciated.

like image 573
Tugzrida Avatar asked Sep 13 '15 12:09

Tugzrida


People also ask

How do I find my VLC stream URL?

Open and Play a Stream Make sure you are using the latest version of the VLC player. Click Media on the task bar followed by Open Network Stream. This will open a prompt with a box for the network URL. Type your network URL into this box to retrieve the stream.

Can you stream VLC from PC to iPhone?

Stream videos from your computer to your iDevice. Quick, Easy, Excellent! Sit anywhere in your house and watch movies or TV shows on your iPhone, iPod or iPad. VLC Streamer streams movies from your computer to your iDevice.


1 Answers

the vlc:// pseudo protocol is broken in the current 2.6.4 release - it is fixed in 2.6.5 which is currently waiting for review by Apple. I hope that it will be out this week but this is beyond our control.

Generally speaking, I recommend to use another protocol though based on x-callback-url, documented on our wiki: https://wiki.videolan.org/Documentation:IOS/#x-callback-url

Regarding an extra subtitles URL, this is currently not supported. We could add it though, it's just that nobody asked for it so far.

like image 171
feepk Avatar answered Oct 07 '22 17:10

feepk