JuceVLC: A fullscreen User Interface for VLC


Download here: http://sourceforge.net/projects/jucevlc/files/latest/download
Summary
JuceVLC is VLC with a simple Media Center like fullscreen User Interface.
Goal
Browse and watch movies from your couch with a wireless mouse.
Features
- Browse local or remote (via UPNP) files and adjust settings using On Screen Display (O.S.D.)
- Frontpage movies menu with automatically downloaded posters (from http://www.omdbapi.com) or generated thumbnails (no setup required)
- Big, customizable fonts size and no tiny popup dialogs
- Subtitles selection and synchronization using slider via O.S.D.
- Search,Download,Extract and Load subtitles from opensubtitles.org
- Keep last and favorite video folders, as well as the last thirty videos positions
- Does not mess up your system: settings are stored in the application folder
- Portable: Paste is on any usb key or external hard drive
- You can use the installer multiple times:
- once for your computer, activating shortcut creation,
- and again for your usb key or external hard drive.
Since it does not store anything in the registry subsequent installs won't affect the previous ones (except shortcut creation)
- JuceVLC application uses regular VLC core libraries/plugins: You can paste future VLC versions directory along JuceVLC to update the core video player without any JuceVLC update
Changelog
https://bitbucket.org/jucevlc/jucevlc/raw/tip/README.txt
Screenshots
Browse files

On Screen Display

Subtitles management and adjustment

Quick adjustement : audio volume, subtitles delay, audio delay, playback speed, disable

Video settings

Developpers / Building tips
The project relies on multi-platform libraries / GNU gcc compiler and should also compile on Linux / MacOS environments
Boost 1.56 regexp lib build batch file for mingw: (if mingw is installed in e:\dev\mingw)
set MINGW=e:\dev\mingw\bin
set PATH=%PATH%;%MINGW%
%~d0
cd %~dp0
bootstrap.bat mingw --toolset-root=%MINGW%
b2 --toolset=gcc regex release link=static threading=multi runtime-link=static
Boost 1.56 64bits regexp lib build batch file for mingw: (if mingw is installed in E:\dev\x64-4.8.1-release-win32-seh-rev5\mingw64)
set MINGW=E:\dev\x64-4.8.1-release-win32-seh-rev5\mingw64\bin
set PATH=%PATH%;%MINGW%
%~d0
cd %~dp0
bootstrap.bat mingw --toolset-root=%MINGW%
b2 address-model=64 --toolset=gcc regex release link=static threading=multi runtime-link=static
pause