mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-01 04:34:26 -04:00
Fix subtitle encoder if webvtt is requested
This commit is contained in:
parent
e5dcaa6ed5
commit
62be2a2ea9
@ -293,7 +293,7 @@ namespace MediaBrowser.MediaEncoding.Subtitles
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (string.Equals(format, SubtitleFormat.VTT, StringComparison.OrdinalIgnoreCase))
|
if (string.Equals(format, SubtitleFormat.VTT, StringComparison.OrdinalIgnoreCase) || string.Equals(format, SubtitleFormat.WEBVTT, StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
value = new VttWriter();
|
value = new VttWriter();
|
||||||
return true;
|
return true;
|
||||||
|
@ -9,6 +9,7 @@ namespace MediaBrowser.Model.MediaInfo
|
|||||||
public const string SSA = "ssa";
|
public const string SSA = "ssa";
|
||||||
public const string ASS = "ass";
|
public const string ASS = "ass";
|
||||||
public const string VTT = "vtt";
|
public const string VTT = "vtt";
|
||||||
|
public const string WEBVTT = "webvtt";
|
||||||
public const string TTML = "ttml";
|
public const string TTML = "ttml";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user