On Feb 10, 2008 3:20 PM, Stefan Wagner <stefanwag@gmx.at> wrote:
"Petri Helin" <phelin@googlemail.com> schrieb im Newsbeitrag
news:4763C547.1080009@googlemail.com...
> Has there been any progress regarding this issue? It looks like ProjectX
>  will fail in case there are subtitles in a VDR recording made with
> version 1.5.10 or later, because ProjectX does not recognize them being
> subtitles and will eventually get stuck to an unending loop. What might
> be the major difference between the old subtitles plugin's way of saving
> subtitles and the way they are saved now?

ProjectX 0.90.4.b22 works with vdr 1.5.x recordings.

but with burn 0.1.0-pre21 i have problems with naming of audio files.
projectx beta named files other than old projectx.

have anyone a fix for that?

Thanks for informing about the update. Seems to work now with recordings with dvb-subtitles from the Finnish broadcaster, YLE, too.

Regarding the renaming of the audio files, I made a few changes in the Project-X in order to fix that:

--- parser/StreamProcessAudio.java.old  2008-02-11 15:09:21.000000000 +0200
+++ parser/StreamProcessAudio.java      2008-02-11 15:08:29.000000000 +0200
@@ -1861,8 +1861,8 @@
        {
                for (int i = 1; i < 4; i++)
                {
-                       str[0][i] += new_str_1;
-                       str[1][i] += new_str_2;
+                       str[0][i] = new_str_1;
+                       str[1][i] = new_str_2;
                }
        }


Don't know whether it is "the right way" but with a quick test it seems to work at least.

-Petri