-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Backport pull request #8087 from jellyfin/release-10.8.z"
This reverts commit 38eefbb.
- Loading branch information
1 parent
b77cab5
commit 7bb1c1a
Showing
10 changed files
with
118 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Microsoft.Extensions.Logging; | ||
using Nikse.SubtitleEdit.Core.SubtitleFormats; | ||
|
||
namespace MediaBrowser.MediaEncoding.Subtitles | ||
{ | ||
/// <summary> | ||
/// Advanced SubStation Alpha subtitle parser. | ||
/// </summary> | ||
public class AssParser : SubtitleEditParser<AdvancedSubStationAlpha> | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="AssParser"/> class. | ||
/// </summary> | ||
/// <param name="logger">The logger.</param> | ||
public AssParser(ILogger logger) : base(logger) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Microsoft.Extensions.Logging; | ||
using Nikse.SubtitleEdit.Core.SubtitleFormats; | ||
|
||
namespace MediaBrowser.MediaEncoding.Subtitles | ||
{ | ||
/// <summary> | ||
/// SubRip subtitle parser. | ||
/// </summary> | ||
public class SrtParser : SubtitleEditParser<SubRip> | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="SrtParser"/> class. | ||
/// </summary> | ||
/// <param name="logger">The logger.</param> | ||
public SrtParser(ILogger logger) : base(logger) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Microsoft.Extensions.Logging; | ||
using Nikse.SubtitleEdit.Core.SubtitleFormats; | ||
|
||
namespace MediaBrowser.MediaEncoding.Subtitles | ||
{ | ||
/// <summary> | ||
/// SubStation Alpha subtitle parser. | ||
/// </summary> | ||
public class SsaParser : SubtitleEditParser<SubStationAlpha> | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="SsaParser"/> class. | ||
/// </summary> | ||
/// <param name="logger">The logger.</param> | ||
public SsaParser(ILogger logger) : base(logger) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters