Hello, HANDLE WITH CARE - I found a solution for my file! My Theory seems to be working: It seems be the wrong interpretation of language settings. 1st fix (see above, you did this already): This fix replaced all numbers having "," as a separator and 12 or 24 digits after the separator. Numbers like "0,000000000000" or "0,000000000000000000000000" were replaced by the same values with "." instead of ",". perl -p -e "s/([-0-9]+?),([0-9]{12,24})/$1.$2/g" damaged.prel >working.prel 2nd fix (I found out this works for me): The second error is in the <Keyframes> lines. When I replaced the ";" by "," or ":" (see below) the file could be opened successfully. But I don't know if this is causing other problems with keyframes. HANDLE WITH CARE perl -p -e "s/([-0-9]+?)\.([0-9]{12,24});([0-9]{15})/$1.$2,$3/g" damaged.prel >working.prel HANDLE WITH CARE A sample Line before replacement looks like this: <Keyframes>914457600000000,-0.027113247662782669000000:0.647517740726470950000000,0,0,0.000000000000000000000000,0.166666666666666660000000,0.000000000000000000000000,0.166666666666666660000000,0,0,0.000000000000000000000000,0.000000000000000000000000,0.000000000000000000000000,0.000000000000000000000000;914711616000000,-0.027113247662782669000000:0.647517740726470950000000,0,0,0.000000000000000000000000,0.166666666666666660000000,0.115712793257603460000000,0.166666666666666660000000,0,0,0.000000000000000000000000,0.000000000000000000000000,0.000000000000000000000000,0.000000000000000000000000;915981696000000,0.499611496925354000000000:0.408149182796478270000000,0,0,0.115712793257603460000000,0.166666666666666660000000,0.000000000000000000000000,0.166666666666666660000000,0,0,0.000000000000000000000000,0.000000000000000000000000,0.000000000000000000000000,0.000000000000000000000000;916235712000000,0.499611496925354000000000:0.408149182796478270000000,0,0,0.000000000000000000000000,0.166666666666666660000000,0.000000000000000000000000,0.166666666666666660000000,0,0,0.000000000000000000000000,0.000000000000000000000000,0.000000000000000000000000,0.000000000000000000000000;</Keyframes> Can Adobe please confirm these problems. I could send my broken file too if it helps.
... View more