mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
164 lines
5.8 KiB
C#
164 lines
5.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace Nikse.SubtitleEdit.Core.SubtitleFormats
|
|
{
|
|
/// <summary>
|
|
/// PNS subtitle format
|
|
///
|
|
///00 00 + control bytes = 16 bytes
|
|
///
|
|
///START-MIN
|
|
///-----
|
|
///|
|
|
///| START-FRAME
|
|
///| --
|
|
///| | END-MIN
|
|
///| | -----
|
|
///| | | END-FRAME
|
|
///| | | --
|
|
///| | | |
|
|
///| | | | TEXT-LENGTH
|
|
///| | | | --
|
|
///| | | | |
|
|
///02 00 00 00 02 01 7B 00 00 00 00 01 2D 00
|
|
/// </summary>
|
|
public class Pns : SubtitleFormat
|
|
{
|
|
public override string Extension
|
|
{
|
|
get { return ".pns"; }
|
|
}
|
|
|
|
public const string NameOfFormat = "PNS";
|
|
|
|
public override string Name
|
|
{
|
|
get { return NameOfFormat; }
|
|
}
|
|
|
|
public override bool IsTimeBased
|
|
{
|
|
get { return true; }
|
|
}
|
|
|
|
public override bool IsMine(List<string> lines, string fileName)
|
|
{
|
|
if (!string.IsNullOrEmpty(fileName) && File.Exists(fileName) && fileName.EndsWith(".pns", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
try
|
|
{
|
|
var fi = new FileInfo(fileName);
|
|
if (fi.Length > 100 && fi.Length < 1024000) // not too small or too big
|
|
{
|
|
byte[] buffer = FileUtil.ReadAllBytesShared(fileName);
|
|
|
|
if (buffer[00] != 0 &&
|
|
buffer[01] == 0 &&
|
|
buffer[02] == 0 &&
|
|
buffer[03] == 0 &&
|
|
buffer[04] == 0 &&
|
|
buffer[05] == 0 &&
|
|
buffer[06] == 0 &&
|
|
buffer[07] == 0 &&
|
|
buffer[08] == 0 &&
|
|
buffer[09] == 0 &&
|
|
buffer[10] == 0 &&
|
|
buffer[11] == 0 &&
|
|
buffer[12] == 0 &&
|
|
buffer[13] == 0 &&
|
|
buffer[14] == 0 &&
|
|
buffer[15] == 0 &&
|
|
buffer[16] == 0 &&
|
|
buffer[17] == 0 &&
|
|
buffer[18] == 0 &&
|
|
buffer[19] == 0)
|
|
{
|
|
var sub = new Subtitle();
|
|
LoadSubtitle(sub, null, fileName);
|
|
return sub.Paragraphs.Count > 0;
|
|
}
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public override string ToText(Subtitle subtitle, string title)
|
|
{
|
|
return "Not supported!";
|
|
}
|
|
|
|
public override void LoadSubtitle(Subtitle subtitle, List<string> lines, string fileName)
|
|
{
|
|
subtitle.Paragraphs.Clear();
|
|
subtitle.Header = null;
|
|
byte[] buffer = FileUtil.ReadAllBytesShared(fileName);
|
|
|
|
int index = 40;
|
|
while (index < buffer.Length)
|
|
{
|
|
Paragraph p = GetParagraph(ref index, buffer);
|
|
if (p != null)
|
|
subtitle.Paragraphs.Add(p);
|
|
}
|
|
subtitle.Renumber();
|
|
}
|
|
|
|
private Paragraph GetParagraph(ref int index, byte[] buffer)
|
|
{
|
|
while (index < buffer.Length - 20)
|
|
{
|
|
// pattern for control codes
|
|
if (buffer.Length > index + 20 &&
|
|
buffer[index + 00] == 0 &&
|
|
buffer[index + 01] == 0 &&
|
|
//buffer[index + 02] == 0 && // start min
|
|
//buffer[index + 03] == 0 &&
|
|
buffer[index + 04] == 0 &&
|
|
buffer[index + 05] == 0 &&
|
|
//buffer[index + 06] == 0 && // start frame
|
|
buffer[index + 07] == 1 &&
|
|
//buffer[index + 08] == 0 && // end min
|
|
//buffer[index + 09] == 0 &&
|
|
buffer[index + 10] == 0 &&
|
|
buffer[index + 11] == 0 &&
|
|
//buffer[index + 12] == 0 && // end frame
|
|
buffer[index + 13] == 1 &&
|
|
//buffer[index + 14] == 0 && // text length
|
|
buffer[index + 15] == 0)
|
|
{
|
|
int startSeconds = buffer[index + 3] * 256 + buffer[index + 2];
|
|
int startFrame = buffer[index + 6];
|
|
|
|
int endSeconds = buffer[index + 9] * 256 + buffer[index + 8];
|
|
int endFrame = buffer[index + 12];
|
|
|
|
int textLength = buffer[index + 14];
|
|
|
|
if (buffer.Length > index + 15 + textLength)
|
|
{
|
|
string text = Encoding.UTF8.GetString(buffer, index + 16, textLength); // encoding?
|
|
text = text.Replace("\r", Environment.NewLine);
|
|
index += (15 + textLength);
|
|
var p = new Paragraph(text, startSeconds * 1000 + FramesToMillisecondsMax999(startFrame), endSeconds * 1000 + FramesToMillisecondsMax999(endFrame));
|
|
return p;
|
|
}
|
|
index += 100;
|
|
return null;
|
|
}
|
|
index++;
|
|
}
|
|
index++;
|
|
return null;
|
|
}
|
|
|
|
}
|
|
}
|