Merge pull request #1778 from ivandrofly/footage-sf

[Footage] - Fix bug when parsing time-code.
This commit is contained in:
Nikolaj Olsson 2016-06-06 19:25:04 +02:00
commit 53bd6b07d1

View File

@ -162,7 +162,7 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
{
int frames16 = int.Parse(parts[0]);
int frames = int.Parse(parts[1]);
return new TimeCode(0, 0, 0, FramesToMilliseconds(16 * frames16 + frames));
return new TimeCode(FramesToMilliseconds(16 * frames16 + (frames * 16.0 / 24.0)));
}
}