diff options
author | phintuka <phintuka> | 2006-07-22 20:11:54 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-07-22 20:11:54 +0000 |
commit | da30eaa25a832739ae4a02f1eb5bd46e20765d48 (patch) | |
tree | b056ef6117f9758ca866a644c914b152431aae3f | |
parent | f96ac8223fe87f6abe4d0738e37393e32344580b (diff) | |
download | xineliboutput-da30eaa25a832739ae4a02f1eb5bd46e20765d48.tar.gz xineliboutput-da30eaa25a832739ae4a02f1eb5bd46e20765d48.tar.bz2 |
1.0.0pre1
-rw-r--r-- | HISTORY | 21 | ||||
-rw-r--r-- | README | 30 | ||||
-rw-r--r-- | xineliboutput.c | 4 |
3 files changed, 49 insertions, 6 deletions
@@ -1,5 +1,14 @@ VDR Plugin 'xineliboutput' Revision History --------------------------------- +------------------------------------------- + +2006-07-23: Verson 1.0.0pre1 + +- Added DVD playback and navigation support to media player +- Added support for DVD subtitles in VDR recordings +- Fixed audio surround mode +- Added option to disable keyboard input in vdr-fbfe and vdr-sxfe + (required when running as daemon) +- Fixed OSD updating, closing and re-scaling under high system load 2006-07-05: Version 0.99 @@ -18,6 +27,7 @@ VDR Plugin 'xineliboutput' Revision History - X11 fullscreen mode can be toggled by double-clicking window 2006-06-03: Version 0.99rc4 + - Fixed missing audio after trick speed modes (thanks to Tero Saarni) - Fixed fullscreen size detection with frame buffer / DirectFB - Added unscaled OSD capability check for framebuffer / DirectFB @@ -85,7 +95,8 @@ VDR Plugin 'xineliboutput' Revision History -> any xine frontend can be used. - All logging goes to syslog and honors vdr's logging level -2005-22-11: Version 0.4 +2005-11-22: Version 0.4 + - Updated for xine-lib 1.1.0 and 1.1.1 - Framebuffer and DirectFB frontend is now tested and working. - Remote frontends tested and working (TCP/UDP/RTP). @@ -106,7 +117,8 @@ VDR Plugin 'xineliboutput' Revision History - Updated for xine-lib 1.0.1 -2005-17-02: Version 0.3 +2005-02-17: Version 0.3 + - Updated for vdr 1.3.19 and xine-lib 1.0 - Direct playback of all xine-supported media types (+ automatic loading of external .srt/.sub subtitles) @@ -120,7 +132,8 @@ VDR Plugin 'xineliboutput' Revision History - Support for DVB radio streams - Support for audio visualization plugins -2004-19-08: Version 0.2 +2004-08-19: Version 0.2 + - Tested with VDR versions 1.2.6, 1.3.7 and 1.3.12 - Modified to compile with xine-lib 1.0.0 (rc4) - New configuration options @@ -277,6 +277,36 @@ DVD player key bindings Info +DVD playback + + DVD images + + Media player supports playing DVDs directly from hard disk. + Found DVD folders are marked with 'D' in media player + file list. + Plugin detects folders as DVDs if there is file + Name_Of_DVD/VIDEO_TS/VIDEO_TS.IFO. + + It is also possible to replay DVD as VDR recording by + creating empty recording directory and renaming or + symlinking .VOBs of selected title to 00?.vdr files. + DVD menus (VTS_??_0.VOB) should _not_ be copied. + Audio can be selected from main menu just as with normal + VDR recordings. + Subtitle track can be selected from xineliboutput plugin + menu. + For seeking it is necessarily to create index.vdr file + with genindex or similar tool. + + DVD discs + + "Real" DVD discs (accessible from /dev/dvd) can be played + from xineliboutput plugin menu. + + In case of remote frontend (vdr-sxfe/vdr-fbfe) DVD drive + of _remote client_ is used. + + Aspect ratio setting There are 4 possible aspect ratio settings for display: diff --git a/xineliboutput.c b/xineliboutput.c index cbff7088..0a8c0f0c 100644 --- a/xineliboutput.c +++ b/xineliboutput.c @@ -21,7 +21,7 @@ * * xineliboutput.c: VDR Plugin interface * - * $Id: xineliboutput.c,v 1.4 2006-07-06 04:07:09 phintuka Exp $ + * $Id: xineliboutput.c,v 1.5 2006-07-22 20:11:54 phintuka Exp $ * */ @@ -43,7 +43,7 @@ //---------------------------------plugin------------------------------------- -static const char *VERSION = "0.99"; +static const char *VERSION = "1.0.0pre1"; static const char *DESCRIPTION = "X11/xine-lib output plugin"; static const char *MAINMENUENTRY = "Xine-lib"; |