mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 12:44:46 +01:00
Merge pull request #1778 from ivandrofly/footage-sf
[Footage] - Fix bug when parsing time-code.
This commit is contained in:
commit
53bd6b07d1
@ -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)));
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user