I gave a DVD ISO image and would like to use VLC’s http function to create URL a user could access, after which the DVD would start up in full screen.
I can make this happen by accepting the defaults
vlc.exe -I http
navigating to localhost:8080 and then browsing and opening the file. How would I modify this activity so that navigating to localhost:8080 instead opens a predetermined file and starts playing it?
when you do “-I http” this activates the http interface, not the streaming
if you want to stream the file, you usuallly do something like:
this encodes and streams content from input_stream to http port 8080
see VLC streaming howto for more options.
hint : you can use the VLC GUI Wizard to find out your correct options.