Dear visitor, welcome to VDR Portal.
If this is your first visit here, please read the Help. It explains in detail how this page works.
To use all features of this page, you should consider registering.
Please use the registration form, to register here or read more information about the registration process.
If you are already registered, please login here.
Aus der ML von heute :
---------------------
hi list, hi dvd maintainers,
I created a patch to resume a dvd where it was interupted by the user.
It is not yet fully finalized:
The computation of the disc-id maybe still needs some work to avoid
resuming on the wrong resuming data, but I think it can be used already.
I currently takes the disc title, the number of titles on the disc and
the overall total number of chapters to form a uniq id.
Also what kind of data is stored and resumed might be worth a look.
Currently it resumed to the former title and time but the choosen audio
and subtitle stream (has anyone a dvd with differnent angles?) might be
useful, especially on multi-lingual dvds.
The patch is created against todays CVS. I don't know if it also applies
cleanly to the last release. Just give it a try!
Maybe the maintainers of the dvd plugin can integrate this functionality
into the CVS and so in further releases.
--- player-dvd.c.ORG 2005-08-05 11:46:44.616539991 +0200
+++ player-dvd.c 2005-08-05 11:48:15.824301444 +0200
@@ -1460,6 +1460,11 @@
// cell change .. game over ..
changeNavSubpStreamOnceInSameCell=false;
SetTitleInfoString();
+ if (next_cell_change) {
+ next_cell_change = false;
+ // we are resuming the current dvd. NOW its time to seek to the correct second.
+ Goto(resSecond);
+ }
break;
}
case DVDNAV_NAV_PACKET: {
Hallo,
der Patch funktioniert sehr gut (ich bin total weg, daß das wirklich geht). Wie oben schon angemerkt, wird der gewählte Audio-Stream nicht mitgespeichert. Auf der "Findet Nemo"-DVD wird leider immer die englische Spur nach dem resume verwendet, obwohl alle Einstellungen im VDR auf Deutsch gesetzt sind. Hat schon jemand den Patch entsprechend ergänzt?