Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Xamarin support #1

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
241 changes: 216 additions & 25 deletions SubtitlesParser.sln

Large diffs are not rendered by default.

65 changes: 0 additions & 65 deletions SubtitlesParser/Classes/Parsers/YtXmlFormatParser.cs

This file was deleted.

36 changes: 0 additions & 36 deletions SubtitlesParser/Properties/AssemblyInfo.cs

This file was deleted.

112 changes: 0 additions & 112 deletions SubtitlesParser/SubtitlesParser.csproj

This file was deleted.

16 changes: 0 additions & 16 deletions SubtitlesParser/SubtitlesParser.nuspec

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.IO;
using System.Text;

namespace SubtitlesParser.Classes.Parsers
namespace SubtitlesParserNew.Classes.Parsers
{
/// <summary>
/// Interface specifying the required method for a SubParser.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Text;
using System.Text.RegularExpressions;

namespace SubtitlesParser.Classes.Parsers
namespace SubtitlesParserNew.Classes.Parsers
{
/// <summary>
/// Parser for MicroDVD .sub subtitles files
Expand Down Expand Up @@ -74,8 +74,6 @@ public List<SubtitleItem> ParseStream(Stream subStream, Encoding encoding)
var success = TryExtractFrameRate(firstItem.Lines[0], out frameRate);
if (!success)
{
Console.WriteLine("Couldn't extract frame rate of sub file with first line {0}. " +
"We use the default frame rate: {1}", line, defaultFrameRate);
frameRate = defaultFrameRate;

// treat it as a regular line
Expand Down
Loading