SubtitleEdit/libse/SubtitleFormats/SwiftInterchange2.cs

229 lines
8.6 KiB
C#
Raw Normal View History

2016-02-08 21:11:03 +01:00
using System;
using System.Collections.Generic;
2016-03-27 18:03:54 +02:00
using System.IO;
2016-02-08 21:11:03 +01:00
using System.Text;
namespace Nikse.SubtitleEdit.Core.SubtitleFormats
{
public class SwiftInterchange2 : SubtitleFormat
{
2016-03-27 18:03:54 +02:00
private const string ItalicPrefix = "<fontstyle-italic>";
private string _fileName;
2016-02-08 21:11:03 +01:00
public override string Extension
{
get { return ".sif"; }
}
public override string Name
{
get { return "Swift Interchange File V2"; }
}
public override bool IsTimeBased
{
get { return true; }
}
public override bool IsMine(List<string> lines, string fileName)
{
if (lines.Count > 0 && lines[0] != null && lines[0].StartsWith("{\\rtf1"))
return false;
2016-03-27 18:03:54 +02:00
_fileName = fileName;
2016-02-08 21:11:03 +01:00
var subtitle = new Subtitle();
LoadSubtitle(subtitle, lines, fileName);
return subtitle.Paragraphs.Count > _errorCount;
}
2016-03-27 18:03:54 +02:00
private string GetOriginatingSwift(Subtitle subtitle)
{
string lang = "English (USA)";
string languageCode = LanguageAutoDetect.AutoDetectGoogleLanguage(subtitle);
if (languageCode == "nl")
{
lang = "Dutch (Netherlands)";
}
else if (languageCode == "de")
{
lang = "German (German)";
}
return "Open 25 " + lang;
// examples:
// Line21 30 DROP English (USA)
// Open 25 German (German)
// Open 25 Dutch (Netherlands)
//TODO: Frame rate
}
private string GetVideoFileName(string title)
{
string fileNameNoExt = null;
if (_fileName != null)
{
fileNameNoExt = _fileName.Substring(0, _fileName.Length - Path.GetExtension(_fileName).Length);
}
foreach (var ext in Utilities.VideoFileExtensions)
2016-03-27 18:03:54 +02:00
{
if (!string.IsNullOrEmpty(fileNameNoExt) && File.Exists(Path.Combine(fileNameNoExt, ext)))
{
return Path.Combine(fileNameNoExt, ext);
}
if (!string.IsNullOrEmpty(title) && File.Exists(Path.Combine(title, ext)))
{
return Path.Combine(title, ext);
}
}
if (string.IsNullOrEmpty(title))
{
return "Unknown.mpg";
}
return title + ".mpg";
}
2016-02-08 21:11:03 +01:00
public override string ToText(Subtitle subtitle, string title)
{
string date = string.Format("{0:00}/{1:00}/{2}", DateTime.Now.Day, DateTime.Now.Month, DateTime.Now.Year);
const string header = @"# SWIFT INTERCHANGE FILE V2
# DO NOT EDIT LINES BEGINNING WITH '#' SIGN
2016-03-27 18:03:54 +02:00
# Originating Swift: [ORIGINATING_SWIFT]
2016-02-08 21:11:03 +01:00
# VIDEO CLIP : [VIDEO_FILE]
# BROADCAST DATE : [DATE]
# REVISION DATE : [DATE]
# CREATION DATE : [DATE]
# COUNTRY OF ORIGIN : ENG
# EPISODE NUMBER : 0
# DEADLINE DATE : [DATE]
# AUTO TX : false
# CURRENT STYLE : None
# STYLE DATE : None
2016-03-27 18:03:54 +02:00
# STYLE Time : None";
2016-02-08 21:11:03 +01:00
var sb = new StringBuilder();
2016-03-27 18:03:54 +02:00
var videoFileName = GetVideoFileName(title);
sb.AppendLine(header.Replace("[DATE]", date).Replace("[VIDEO_FILE]", videoFileName).Replace("[ORIGINATING_SWIFT]", GetOriginatingSwift(subtitle)));
2016-02-08 21:11:03 +01:00
sb.AppendLine();
sb.AppendLine();
2016-03-27 18:03:54 +02:00
const string paragraphWriteFormat = @"# SUBTITLE {3}
2016-02-08 21:11:03 +01:00
# TIMEIN {0}
# DURATION {1} AUTO
2016-03-27 18:03:54 +02:00
# TIMEOUT {2}
2016-02-08 21:11:03 +01:00
# START ROW BOTTOM
2016-03-27 18:03:54 +02:00
# ALIGN CENTRE JUSTIFY LEFT";
int count = 1;
2016-02-08 21:11:03 +01:00
foreach (Paragraph p in subtitle.Paragraphs)
{
string startTime = string.Format("{0:00}:{1:00}:{2:00}.{3:00}", p.StartTime.Hours, p.StartTime.Minutes, p.StartTime.Seconds, MillisecondsToFramesMaxFrameRate(p.StartTime.Milliseconds));
2016-03-27 18:03:54 +02:00
string endTime = string.Format("{0:00}:{1:00}:{2:00}.{3:00}", p.EndTime.Hours, p.EndTime.Minutes, p.EndTime.Seconds, MillisecondsToFramesMaxFrameRate(p.EndTime.Milliseconds));
2016-02-08 21:11:03 +01:00
string duration = string.Format("{0:00}:{1:00}", p.Duration.Seconds, MillisecondsToFramesMaxFrameRate(p.Duration.Milliseconds));
2016-03-27 18:03:54 +02:00
sb.AppendLine(string.Format(paragraphWriteFormat, startTime, duration, endTime, count));
string text = HtmlUtil.RemoveHtmlTags(p.Text);
if (p.Text.StartsWith("<i>") && p.Text.EndsWith("</i>"))
{
text = ItalicPrefix + text;
}
var arr = text.SplitToLines();
for (int rowNo = 0; rowNo < arr.Length; rowNo++)
{
if (rowNo == arr.Length - 1)
{
sb.AppendLine("# ROW " + rowNo);
}
else
{
sb.AppendLine("# ROW " + rowNo + " RETURN");
}
sb.AppendLine(arr[rowNo]);
}
2016-02-08 21:11:03 +01:00
sb.AppendLine();
count++;
}
return sb.ToString().Trim();
}
public override void LoadSubtitle(Subtitle subtitle, List<string> lines, string fileName)
{
_errorCount = 0;
Paragraph p = null;
foreach (string line in lines)
{
if (line.StartsWith("# SUBTITLE"))
{
if (p != null)
subtitle.Paragraphs.Add(p);
p = new Paragraph();
}
else if (p != null && line.StartsWith("# TIMEIN"))
{
string timeCode = line.Remove(0, 8).Trim();
if (timeCode != "--:--:--:--" && !GetTimeCode(p.StartTime, timeCode))
_errorCount++;
}
else if (p != null && line.StartsWith("# DURATION"))
{
// # DURATION 01:17 AUTO
string timecode = line.Remove(0, 10).Replace("AUTO", string.Empty).Trim();
if (timecode != "--:--")
{
var arr = timecode.Split(new[] { ':', ' ' });
if (arr.Length > 1)
{
int sec;
int frame;
if (int.TryParse(arr[0], out sec) && int.TryParse(arr[1], out frame))
{
p.EndTime.TotalMilliseconds = p.StartTime.TotalMilliseconds + FramesToMillisecondsMax999(frame);
p.EndTime.TotalSeconds += sec;
}
}
}
}
else if (p != null && line.StartsWith("# TIMEOUT"))
{
string timeCode = line.Remove(0, 9).Trim();
if (timeCode != "--:--:--:--" && !GetTimeCode(p.EndTime, timeCode))
_errorCount++;
}
else if (p != null && !line.StartsWith('#'))
{
if (p.Text.Length > 500)
{
_errorCount += 10;
return;
}
p.Text = (p.Text + Environment.NewLine + line).Trim();
}
}
if (p != null)
subtitle.Paragraphs.Add(p);
subtitle.RemoveEmptyLines();
subtitle.Renumber();
2016-03-27 18:03:54 +02:00
foreach (var paragraph in subtitle.Paragraphs)
{
if (paragraph.Text.StartsWith(ItalicPrefix))
{
paragraph.Text = "<i>" + paragraph.Text.Remove(0, ItalicPrefix.Length).TrimStart() + "</i>";
}
}
2016-02-08 21:11:03 +01:00
}
private static bool GetTimeCode(TimeCode timeCode, string timeString)
{
try
{
2016-03-27 18:03:54 +02:00
string[] timeParts = timeString.Split(':', '.');
2016-02-08 21:11:03 +01:00
timeCode.Hours = int.Parse(timeParts[0]);
timeCode.Minutes = int.Parse(timeParts[1]);
timeCode.Seconds = int.Parse(timeParts[2]);
timeCode.Milliseconds = FramesToMillisecondsMax999(int.Parse(timeParts[3]));
return true;
}
catch
{
return false;
}
}
2016-03-27 18:03:54 +02:00
2016-02-08 21:11:03 +01:00
}
}