
This is submux with DVD coding and multiplexing
routines added, and slightly modified (bitmap_read).

It will add SPU subtitles to a .vob.
Input format is .sub and .bmp, as produced by
the Linux subtitle editor xste.

No manual yet, this is an interim release
(as always :-) ).

This version has been tested on:
Linux:
mplayer (see note)
xine

Windows:
PowerDVD
InterActual Player

Standalone players:
Mustek 562
Cyberhome CH-DVD 405


Note mplayer:
The current version of mplayer drops subs that have less then 3 bytes
in the last SPU packet as data.
You can fix this by commenting out the return in:
libmpdemux/demux_mpg.c

aid=stream_read_char(demux->stream);--len;

if(len < 3) // CHANGE THIS to < 1, then compile and re-install
 {
 return -1;
 }
----------------------------------


Note InterActual Player:
You cannot select a second title if more then one titles present it seems,
unless there is some menu, nothing to do with subs, the subs are OK.


dvdauthor:
In dvdauthor a special version of submux is used.
That version is different in the sense that it treats subs with duration zero
as lasting indefinitely, if I understood it right.
That is then used for buttons etc..
The new muxing routine I did send to the dvdauthor author.
So these will be incorporated in that program perhaps in a next version.
Until that happens you can try this interim version if you have subs that
get dropped.

Please report any problems via the (anti spam) email link on the submux-dvd
homepage http://www.home.zonnet.nl/panteltje/dvd/
Keep changing email because of those spammers.
Jan Panteltje

