You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to put VLC media player into a docker? Combined with Java for BD menus. The usecase would be to stream ISOs from a NAS without the need to open the file through network on a different client.
The text was updated successfully, but these errors were encountered:
# Pull base image.
FROM jlesage/baseimage-gui:alpine-3.19-v4
# Install vlc.
RUN add-pkg vlc-qt
# Copy the start script.
COPY startapp.sh /startapp.sh
# Set the name of the application.
RUN set-cont-env APP_NAME "VLC in VNC"
# Add a test video
ADD https://www.w3schools.com/tags/mov_bbb.mp4 /home/test.mp4
RUN chmod a+r /home/test.mp4
# Enable audio
ENV WEB_AUDIO=1
Running chmod a+x startapp.sh && docker build -t docker-vlc . && docker run --rm -p 5800:5800 -p 5900:5900 docker-vlc should start a VLC app in the browser, available at localhost:5800.
Would it be possible to put VLC media player into a docker? Combined with Java for BD menus. The usecase would be to stream ISOs from a NAS without the need to open the file through network on a different client.
The text was updated successfully, but these errors were encountered: