我提供了一个 DVD ISO 映像,并想使用 VLC 的 http 功能创建用户可以访问的 URL,之后 DVD 将以全屏模式启动。
我可以通过接受默认值来实现这一点
vlc.exe -I http
导航到 localhost:8080 然后浏览并打开文件。我将如何修改此活动,以便导航到 localhost:8080 而是打开预定文件并开始播放?
我提供了一个 DVD ISO 映像,并想使用 VLC 的 http 功能创建用户可以访问的 URL,之后 DVD 将以全屏模式启动。
我可以通过接受默认值来实现这一点
vlc.exe -I http
导航到 localhost:8080 然后浏览并打开文件。我将如何修改此活动,以便导航到 localhost:8080 而是打开预定文件并开始播放?
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:
vlc -vvv input_stream --sout '#transcode{vcodec=mp4v,acodec=mpga,vb=800,ab=128}:standard{access=http,mux=ogg,dst=0.0.0.0:8080}'
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.