mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
121 lines
4.6 KiB
C#
121 lines
4.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace Nikse.SubtitleEdit.Core.SubtitleFormats
|
|
{
|
|
public class UnknownSubtitle45 : SubtitleFormat
|
|
{
|
|
//* 00001.00-00003.00 02.01 00.0 1 0001 00 16-090-090
|
|
//* 00138.10-00143.05 00.00 00.0 1 0003 00 16-090-090
|
|
private static readonly Regex RegexTimeCodes = new Regex(@"^\*\s+\d\d\d\d\d\.\d\d-\d\d\d\d\d\.\d\d \d\d.\d\d \d\d.\d\ \d \d\d\d\d \d\d \d\d-\d\d\d-\d\d\d$", RegexOptions.Compiled);
|
|
|
|
public override string Extension
|
|
{
|
|
get { return ".rtf"; }
|
|
}
|
|
|
|
public override string Name
|
|
{
|
|
get { return "Unknown 45"; }
|
|
}
|
|
|
|
public override bool IsTimeBased
|
|
{
|
|
get { return true; }
|
|
}
|
|
|
|
public override bool IsMine(List<string> lines, string fileName)
|
|
{
|
|
if (fileName != null && !fileName.EndsWith(Extension, StringComparison.OrdinalIgnoreCase))
|
|
return false;
|
|
|
|
var subtitle = new Subtitle();
|
|
LoadSubtitle(subtitle, lines, fileName);
|
|
return subtitle.Paragraphs.Count > _errorCount;
|
|
}
|
|
|
|
public override string ToText(Subtitle subtitle, string title)
|
|
{
|
|
var sb = new StringBuilder();
|
|
sb.AppendLine(@"0 2 1.0 1.0 3.0 048 0400 0040 0500 100 100 0 100 0 6600 6600 01
|
|
CRULIC R1
|
|
ST 0 EB 3.10
|
|
@");
|
|
|
|
int index = 0;
|
|
foreach (Paragraph p in subtitle.Paragraphs)
|
|
{
|
|
//1 00:50:34:22 00:50:39:13
|
|
//Ich muss dafür sorgen,
|
|
//dass die Epsteins weiterleben
|
|
index++;
|
|
sb.AppendLine(string.Format("* {0}-{1} 00.00 00.0 1 {2} 00 16-090-090{3}{4}{3}@", EncodeTimeCode(p.StartTime), EncodeTimeCode(p.EndTime), index.ToString().PadLeft(4, '0'), Environment.NewLine, HtmlUtil.RemoveHtmlTags(p.Text)));
|
|
}
|
|
return sb.ToString().ToRtf();
|
|
}
|
|
|
|
private static string EncodeTimeCode(TimeCode time)
|
|
{
|
|
return string.Format("{0:00000}.{1:00}", time.TotalSeconds, MillisecondsToFramesMaxFrameRate(time.Milliseconds));
|
|
}
|
|
|
|
public override void LoadSubtitle(Subtitle subtitle, List<string> lines, string fileName)
|
|
{
|
|
//* 00001.00-00003.00 02.01 00.0 1 0001 00 16-090-090
|
|
//CRULIC R1
|
|
//pour Bobi
|
|
//@
|
|
_errorCount = 0;
|
|
var sb = new StringBuilder();
|
|
foreach (string line in lines)
|
|
sb.AppendLine(line);
|
|
|
|
string rtf = sb.ToString().Trim();
|
|
if (!rtf.StartsWith("{\\rtf", StringComparison.Ordinal))
|
|
return;
|
|
|
|
string[] arr = rtf.FromRtf().SplitToLines();
|
|
Paragraph p = null;
|
|
subtitle.Paragraphs.Clear();
|
|
char[] splitChar = { '.' };
|
|
foreach (string line in arr)
|
|
{
|
|
if (RegexTimeCodes.IsMatch(line.Trim()))
|
|
{
|
|
string[] temp = line.Substring(1).Trim().Substring(0, 17).Split('-');
|
|
if (temp.Length == 2)
|
|
{
|
|
string start = temp[0];
|
|
string end = temp[1];
|
|
|
|
string[] startParts = start.Split(splitChar, StringSplitOptions.RemoveEmptyEntries);
|
|
string[] endParts = end.Split(splitChar, StringSplitOptions.RemoveEmptyEntries);
|
|
if (startParts.Length == 2 && endParts.Length == 2)
|
|
{
|
|
p = new Paragraph(DecodeTimeCodeFramesTwoParts(startParts), DecodeTimeCodeFramesTwoParts(endParts), string.Empty); //00119.12
|
|
subtitle.Paragraphs.Add(p);
|
|
}
|
|
}
|
|
}
|
|
else if (string.IsNullOrWhiteSpace(line) || line.Trim() == "@")
|
|
{
|
|
// skip these lines
|
|
}
|
|
else if (!string.IsNullOrWhiteSpace(line) && p != null)
|
|
{
|
|
if (p.Text.Length > 2000)
|
|
return; // wrong format
|
|
else if (string.IsNullOrEmpty(p.Text))
|
|
p.Text = line;
|
|
else
|
|
p.Text = p.Text + Environment.NewLine + line;
|
|
}
|
|
}
|
|
subtitle.Renumber();
|
|
}
|
|
|
|
}
|
|
}
|