2009-01-04, 05:29 AM
I have an old laptop that can't run GBPVR, but I still wanted to be able to view my videos and recordings on it. I created a simple 'Video Plugin' type windows program that can be used as a Windows UI for accessing the movies. It simply navigates the directory structure and displays video entries and associated metadata and thumbnails (if they exist).
WizMovieLauncher Prerequisites:
In my case, the settings look like this:
Most of the settings are self-explanatory, but most importantly, the DirX settings describe the base view when the program starts up.
Each DirX setting is composed of 'location|Description' entries.
Navigation is primarly arrow keys, enter key and escape (or mouse click, dbl-click and right-click for escape).
Exit the program by hitting escape on the main screen.
If MetaData xml file and Thumbnail images exist (see WizUtilities/WizMetadataGrabber), they will also be displayed.
WizMovieLauncher Prerequisites:
- Install of VLC (to play the movies)
- .NET 2.0 runtime.
In my case, the settings look like this:
Code:
<?xml version="1.0"?>
<settings>
<VLC_Location>C:\Program Files\VideoLAN\VLC\vlc.exe</VLC_Location>
<VLC_Parms>"$Movie" --fullscreen</VLC_Parms>
<Debug>False</Debug>
<Dir1>\\bubba\pvr\tv|Bubba Recordings</Dir1>
<Dir2>\\bubba\pvr_depot\mymovies\movies|Bubba Movies</Dir2>
<Dir3>\\bubba\pvr_depot\mymovies\Vintage Movies|Bubba Vintage Movies</Dir3>
<Title>Wiz Movie Launcher</Title>
</settings>
Most of the settings are self-explanatory, but most importantly, the DirX settings describe the base view when the program starts up.
Each DirX setting is composed of 'location|Description' entries.
- Location is the physical drive mapping or UNC of a target directory
- Description is the text displayed in the list box for that entry
Navigation is primarly arrow keys, enter key and escape (or mouse click, dbl-click and right-click for escape).
Exit the program by hitting escape on the main screen.
If MetaData xml file and Thumbnail images exist (see WizUtilities/WizMetadataGrabber), they will also be displayed.