2020-07-22 11:34:51 +00:00
#pragma warning disable CS1591
2019-01-13 20:02:23 +00:00
using System ;
2018-12-14 09:40:55 +00:00
using System.Collections.Concurrent ;
2020-03-26 23:10:16 +00:00
using System.Diagnostics ;
2018-12-14 09:40:55 +00:00
using System.Globalization ;
using System.IO ;
using System.Linq ;
2020-08-31 17:07:40 +00:00
using System.Net.Http ;
2018-12-14 09:40:55 +00:00
using System.Text ;
using System.Threading ;
using System.Threading.Tasks ;
2019-01-06 19:59:13 +00:00
using MediaBrowser.Common.Configuration ;
using MediaBrowser.Common.Extensions ;
using MediaBrowser.Common.Net ;
using MediaBrowser.Controller.Entities ;
using MediaBrowser.Controller.Library ;
using MediaBrowser.Controller.MediaEncoding ;
2018-12-14 09:40:55 +00:00
using MediaBrowser.Model.Dto ;
2019-01-06 19:59:13 +00:00
using MediaBrowser.Model.Entities ;
2019-01-13 19:26:04 +00:00
using MediaBrowser.Model.IO ;
2019-01-06 19:59:13 +00:00
using MediaBrowser.Model.MediaInfo ;
using Microsoft.Extensions.Logging ;
2019-01-16 19:50:40 +00:00
using UtfUnknown ;
2018-12-14 09:40:55 +00:00
namespace MediaBrowser.MediaEncoding.Subtitles
{
public class SubtitleEncoder : ISubtitleEncoder
{
2020-06-06 00:15:56 +00:00
private readonly ILogger < SubtitleEncoder > _logger ;
2018-12-14 09:40:55 +00:00
private readonly IApplicationPaths _appPaths ;
private readonly IFileSystem _fileSystem ;
private readonly IMediaEncoder _mediaEncoder ;
2020-08-31 17:07:40 +00:00
private readonly IHttpClientFactory _httpClientFactory ;
2018-12-14 09:40:55 +00:00
private readonly IMediaSourceManager _mediaSourceManager ;
2020-08-04 15:08:09 +00:00
/// <summary>
/// The _semaphoreLocks.
/// </summary>
private readonly ConcurrentDictionary < string , SemaphoreSlim > _semaphoreLocks =
new ConcurrentDictionary < string , SemaphoreSlim > ( ) ;
2019-01-17 22:55:05 +00:00
public SubtitleEncoder (
2019-10-26 20:53:53 +00:00
ILogger < SubtitleEncoder > logger ,
2019-01-04 17:46:52 +00:00
IApplicationPaths appPaths ,
IFileSystem fileSystem ,
IMediaEncoder mediaEncoder ,
2020-08-31 17:07:40 +00:00
IHttpClientFactory httpClientFactory ,
2020-03-26 23:45:48 +00:00
IMediaSourceManager mediaSourceManager )
2018-12-14 09:40:55 +00:00
{
2019-10-26 20:53:53 +00:00
_logger = logger ;
2018-12-14 09:40:55 +00:00
_appPaths = appPaths ;
_fileSystem = fileSystem ;
_mediaEncoder = mediaEncoder ;
2020-08-31 17:07:40 +00:00
_httpClientFactory = httpClientFactory ;
2019-01-04 17:46:52 +00:00
_mediaSourceManager = mediaSourceManager ;
2018-12-14 09:40:55 +00:00
}
2019-01-13 20:31:14 +00:00
private string SubtitleCachePath = > Path . Combine ( _appPaths . DataPath , "subtitles" ) ;
2018-12-14 09:40:55 +00:00
2019-10-26 20:53:53 +00:00
private Stream ConvertSubtitles (
Stream stream ,
2018-12-14 09:40:55 +00:00
string inputFormat ,
string outputFormat ,
long startTimeTicks ,
2019-01-20 07:17:31 +00:00
long endTimeTicks ,
2018-12-14 09:40:55 +00:00
bool preserveOriginalTimestamps ,
CancellationToken cancellationToken )
{
var ms = new MemoryStream ( ) ;
try
{
var reader = GetReader ( inputFormat , true ) ;
var trackInfo = reader . Parse ( stream , cancellationToken ) ;
FilterEvents ( trackInfo , startTimeTicks , endTimeTicks , preserveOriginalTimestamps ) ;
var writer = GetWriter ( outputFormat ) ;
writer . Write ( trackInfo , ms , cancellationToken ) ;
ms . Position = 0 ;
}
catch
{
ms . Dispose ( ) ;
throw ;
}
return ms ;
}
2019-01-20 07:17:31 +00:00
private void FilterEvents ( SubtitleTrackInfo track , long startPositionTicks , long endTimeTicks , bool preserveTimestamps )
2018-12-14 09:40:55 +00:00
{
// Drop subs that are earlier than what we're looking for
track . TrackEvents = track . TrackEvents
. SkipWhile ( i = > ( i . StartPositionTicks - startPositionTicks ) < 0 | | ( i . EndPositionTicks - startPositionTicks ) < 0 )
. ToArray ( ) ;
2019-01-20 07:17:31 +00:00
if ( endTimeTicks > 0 )
2018-12-14 09:40:55 +00:00
{
track . TrackEvents = track . TrackEvents
2019-01-20 16:06:40 +00:00
. TakeWhile ( i = > i . StartPositionTicks < = endTimeTicks )
2018-12-14 09:40:55 +00:00
. ToArray ( ) ;
}
if ( ! preserveTimestamps )
{
foreach ( var trackEvent in track . TrackEvents )
{
trackEvent . EndPositionTicks - = startPositionTicks ;
trackEvent . StartPositionTicks - = startPositionTicks ;
}
}
}
async Task < Stream > ISubtitleEncoder . GetSubtitles ( BaseItem item , string mediaSourceId , int subtitleStreamIndex , string outputFormat , long startTimeTicks , long endTimeTicks , bool preserveOriginalTimestamps , CancellationToken cancellationToken )
{
if ( item = = null )
{
2019-01-06 20:50:43 +00:00
throw new ArgumentNullException ( nameof ( item ) ) ;
2018-12-14 09:40:55 +00:00
}
2020-06-15 21:43:52 +00:00
2018-12-14 09:40:55 +00:00
if ( string . IsNullOrWhiteSpace ( mediaSourceId ) )
{
2019-01-06 20:50:43 +00:00
throw new ArgumentNullException ( nameof ( mediaSourceId ) ) ;
2018-12-14 09:40:55 +00:00
}
2019-12-04 20:39:27 +00:00
var mediaSources = await _mediaSourceManager . GetPlaybackMediaSources ( item , null , true , false , cancellationToken ) . ConfigureAwait ( false ) ;
2018-12-14 09:40:55 +00:00
var mediaSource = mediaSources
. First ( i = > string . Equals ( i . Id , mediaSourceId , StringComparison . OrdinalIgnoreCase ) ) ;
var subtitleStream = mediaSource . MediaStreams
. First ( i = > i . Type = = MediaStreamType . Subtitle & & i . Index = = subtitleStreamIndex ) ;
var subtitle = await GetSubtitleStream ( mediaSource , subtitleStream , cancellationToken )
. ConfigureAwait ( false ) ;
2019-01-06 19:59:13 +00:00
var inputFormat = subtitle . format ;
2018-12-14 09:40:55 +00:00
var writer = TryGetWriter ( outputFormat ) ;
// Return the original if we don't have any way of converting it
if ( writer = = null )
{
2019-01-06 19:59:13 +00:00
return subtitle . stream ;
2018-12-14 09:40:55 +00:00
}
// Return the original if the same format is being requested
// Character encoding was already handled in GetSubtitleStream
if ( string . Equals ( inputFormat , outputFormat , StringComparison . OrdinalIgnoreCase ) )
{
2019-01-06 19:59:13 +00:00
return subtitle . stream ;
2018-12-14 09:40:55 +00:00
}
2019-01-06 19:59:13 +00:00
using ( var stream = subtitle . stream )
2018-12-14 09:40:55 +00:00
{
2019-01-06 19:59:13 +00:00
return ConvertSubtitles ( stream , inputFormat , outputFormat , startTimeTicks , endTimeTicks , preserveOriginalTimestamps , cancellationToken ) ;
2018-12-14 09:40:55 +00:00
}
}
2019-01-06 19:59:13 +00:00
private async Task < ( Stream stream , string format ) > GetSubtitleStream (
MediaSourceInfo mediaSource ,
2018-12-14 09:40:55 +00:00
MediaStream subtitleStream ,
CancellationToken cancellationToken )
{
2020-10-01 20:20:28 +00:00
var inputFile = mediaSource . Path ;
2018-12-14 09:40:55 +00:00
2020-07-25 10:44:31 +00:00
var protocol = mediaSource . Protocol ;
2020-07-25 11:41:04 +00:00
if ( subtitleStream . IsExternal )
{
2020-07-25 10:44:31 +00:00
protocol = _mediaSourceManager . GetPathProtocol ( subtitleStream . Path ) ;
}
2020-07-25 11:41:04 +00:00
2020-10-01 20:20:28 +00:00
var fileInfo = await GetReadableFile ( mediaSource . Path , inputFile , mediaSource , subtitleStream , cancellationToken ) . ConfigureAwait ( false ) ;
2018-12-14 09:40:55 +00:00
2019-10-26 20:53:53 +00:00
var stream = await GetSubtitleStream ( fileInfo . Path , fileInfo . Protocol , fileInfo . IsExternal , cancellationToken ) . ConfigureAwait ( false ) ;
2018-12-14 09:40:55 +00:00
2019-01-06 19:59:13 +00:00
return ( stream , fileInfo . Format ) ;
2018-12-14 09:40:55 +00:00
}
2019-10-26 20:53:53 +00:00
private async Task < Stream > GetSubtitleStream ( string path , MediaProtocol protocol , bool requiresCharset , CancellationToken cancellationToken )
2018-12-14 09:40:55 +00:00
{
2020-03-23 16:39:12 +00:00
if ( requiresCharset )
2018-12-14 09:40:55 +00:00
{
2020-03-23 16:39:12 +00:00
using ( var stream = await GetStream ( path , protocol , cancellationToken ) . ConfigureAwait ( false ) )
2018-12-14 09:40:55 +00:00
{
2019-10-26 20:53:53 +00:00
var result = CharsetDetector . DetectFromStream ( stream ) . Detected ;
2020-03-12 16:18:49 +00:00
stream . Position = 0 ;
2019-10-26 20:53:53 +00:00
if ( result ! = null )
2018-12-14 09:40:55 +00:00
{
2019-10-26 20:53:53 +00:00
_logger . LogDebug ( "charset {CharSet} detected for {Path}" , result . EncodingName , path ) ;
2018-12-14 09:40:55 +00:00
2019-10-26 20:53:53 +00:00
using var reader = new StreamReader ( stream , result . Encoding ) ;
var text = await reader . ReadToEndAsync ( ) . ConfigureAwait ( false ) ;
2018-12-14 09:40:55 +00:00
2019-10-26 20:53:53 +00:00
return new MemoryStream ( Encoding . UTF8 . GetBytes ( text ) ) ;
2018-12-14 09:40:55 +00:00
}
}
2020-03-12 16:18:49 +00:00
}
2020-03-23 16:39:12 +00:00
return File . OpenRead ( path ) ;
2018-12-14 09:40:55 +00:00
}
2019-01-06 19:59:13 +00:00
private async Task < SubtitleInfo > GetReadableFile (
string mediaPath ,
2020-10-01 20:20:28 +00:00
string inputFile ,
2020-09-24 06:41:42 +00:00
MediaSourceInfo mediaSource ,
2018-12-14 09:40:55 +00:00
MediaStream subtitleStream ,
CancellationToken cancellationToken )
{
if ( ! subtitleStream . IsExternal )
{
string outputFormat ;
string outputCodec ;
if ( string . Equals ( subtitleStream . Codec , "ass" , StringComparison . OrdinalIgnoreCase ) | |
string . Equals ( subtitleStream . Codec , "ssa" , StringComparison . OrdinalIgnoreCase ) | |
string . Equals ( subtitleStream . Codec , "srt" , StringComparison . OrdinalIgnoreCase ) )
{
2019-01-06 19:59:13 +00:00
// Extract
2018-12-14 09:40:55 +00:00
outputCodec = "copy" ;
outputFormat = subtitleStream . Codec ;
}
else if ( string . Equals ( subtitleStream . Codec , "subrip" , StringComparison . OrdinalIgnoreCase ) )
{
2019-01-06 19:59:13 +00:00
// Extract
2018-12-14 09:40:55 +00:00
outputCodec = "copy" ;
outputFormat = "srt" ;
}
else
{
2019-01-06 19:59:13 +00:00
// Extract
2018-12-14 09:40:55 +00:00
outputCodec = "srt" ;
outputFormat = "srt" ;
}
2019-01-06 19:59:13 +00:00
// Extract
2020-09-24 06:41:42 +00:00
var outputPath = GetSubtitleCachePath ( mediaPath , mediaSource , subtitleStream . Index , "." + outputFormat ) ;
2018-12-14 09:40:55 +00:00
2020-10-01 20:20:28 +00:00
await ExtractTextSubtitle ( inputFile , mediaSource , subtitleStream . Index , outputCodec , outputPath , cancellationToken )
2018-12-14 09:40:55 +00:00
. ConfigureAwait ( false ) ;
2019-01-06 19:59:13 +00:00
return new SubtitleInfo ( outputPath , MediaProtocol . File , outputFormat , false ) ;
2018-12-14 09:40:55 +00:00
}
var currentFormat = ( Path . GetExtension ( subtitleStream . Path ) ? ? subtitleStream . Codec )
. TrimStart ( '.' ) ;
if ( GetReader ( currentFormat , false ) = = null )
{
2019-01-06 19:59:13 +00:00
// Convert
2020-09-24 06:41:42 +00:00
var outputPath = GetSubtitleCachePath ( mediaPath , mediaSource , subtitleStream . Index , ".srt" ) ;
2018-12-14 09:40:55 +00:00
2020-09-24 06:41:42 +00:00
await ConvertTextSubtitleToSrt ( subtitleStream . Path , subtitleStream . Language , mediaSource , outputPath , cancellationToken ) . ConfigureAwait ( false ) ;
2018-12-14 09:40:55 +00:00
2019-01-06 19:59:13 +00:00
return new SubtitleInfo ( outputPath , MediaProtocol . File , "srt" , true ) ;
}
2020-09-24 06:41:42 +00:00
return new SubtitleInfo ( subtitleStream . Path , mediaSource . Protocol , currentFormat , true ) ;
2019-01-06 19:59:13 +00:00
}
2018-12-14 09:40:55 +00:00
private ISubtitleParser GetReader ( string format , bool throwIfMissing )
{
if ( string . IsNullOrEmpty ( format ) )
{
2019-01-06 20:50:43 +00:00
throw new ArgumentNullException ( nameof ( format ) ) ;
2018-12-14 09:40:55 +00:00
}
if ( string . Equals ( format , SubtitleFormat . SRT , StringComparison . OrdinalIgnoreCase ) )
{
2021-01-08 22:21:50 +00:00
return new SrtParser ( _logger ) ;
2018-12-14 09:40:55 +00:00
}
2020-06-15 21:43:52 +00:00
2018-12-14 09:40:55 +00:00
if ( string . Equals ( format , SubtitleFormat . SSA , StringComparison . OrdinalIgnoreCase ) )
{
2021-01-08 22:21:50 +00:00
return new SsaParser ( _logger ) ;
2018-12-14 09:40:55 +00:00
}
2020-06-15 21:43:52 +00:00
2018-12-14 09:40:55 +00:00
if ( string . Equals ( format , SubtitleFormat . ASS , StringComparison . OrdinalIgnoreCase ) )
{
2021-01-08 22:21:50 +00:00
return new AssParser ( _logger ) ;
2018-12-14 09:40:55 +00:00
}
if ( throwIfMissing )
{
throw new ArgumentException ( "Unsupported format: " + format ) ;
}
return null ;
}
private ISubtitleWriter TryGetWriter ( string format )
{
if ( string . IsNullOrEmpty ( format ) )
{
2019-01-06 20:50:43 +00:00
throw new ArgumentNullException ( nameof ( format ) ) ;
2018-12-14 09:40:55 +00:00
}
if ( string . Equals ( format , "json" , StringComparison . OrdinalIgnoreCase ) )
{
2019-10-26 20:53:53 +00:00
return new JsonWriter ( ) ;
2018-12-14 09:40:55 +00:00
}
2020-06-15 21:43:52 +00:00
2018-12-14 09:40:55 +00:00
if ( string . Equals ( format , SubtitleFormat . SRT , StringComparison . OrdinalIgnoreCase ) )
{
return new SrtWriter ( ) ;
}
2020-06-15 21:43:52 +00:00
2018-12-14 09:40:55 +00:00
if ( string . Equals ( format , SubtitleFormat . VTT , StringComparison . OrdinalIgnoreCase ) )
{
return new VttWriter ( ) ;
}
2020-06-15 21:43:52 +00:00
2018-12-14 09:40:55 +00:00
if ( string . Equals ( format , SubtitleFormat . TTML , StringComparison . OrdinalIgnoreCase ) )
{
return new TtmlWriter ( ) ;
}
return null ;
}
private ISubtitleWriter GetWriter ( string format )
{
var writer = TryGetWriter ( format ) ;
if ( writer ! = null )
{
return writer ;
}
throw new ArgumentException ( "Unsupported format: " + format ) ;
}
/// <summary>
/// Gets the lock.
/// </summary>
/// <param name="filename">The filename.</param>
/// <returns>System.Object.</returns>
private SemaphoreSlim GetLock ( string filename )
{
2020-07-22 11:34:51 +00:00
return _semaphoreLocks . GetOrAdd ( filename , _ = > new SemaphoreSlim ( 1 , 1 ) ) ;
2018-12-14 09:40:55 +00:00
}
/// <summary>
/// Converts the text subtitle to SRT.
/// </summary>
/// <param name="inputPath">The input path.</param>
2020-08-04 14:20:52 +00:00
/// <param name="language">The language.</param>
2020-09-24 06:41:42 +00:00
/// <param name="mediaSource">The input mediaSource.</param>
2018-12-14 09:40:55 +00:00
/// <param name="outputPath">The output path.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
2020-09-24 06:41:42 +00:00
private async Task ConvertTextSubtitleToSrt ( string inputPath , string language , MediaSourceInfo mediaSource , string outputPath , CancellationToken cancellationToken )
2018-12-14 09:40:55 +00:00
{
var semaphore = GetLock ( outputPath ) ;
await semaphore . WaitAsync ( cancellationToken ) . ConfigureAwait ( false ) ;
try
{
2019-01-26 21:59:53 +00:00
if ( ! File . Exists ( outputPath ) )
2018-12-14 09:40:55 +00:00
{
2020-09-24 06:41:42 +00:00
await ConvertTextSubtitleToSrtInternal ( inputPath , language , mediaSource , outputPath , cancellationToken ) . ConfigureAwait ( false ) ;
2018-12-14 09:40:55 +00:00
}
}
finally
{
semaphore . Release ( ) ;
}
}
/// <summary>
/// Converts the text subtitle to SRT internal.
/// </summary>
/// <param name="inputPath">The input path.</param>
2020-08-04 14:20:52 +00:00
/// <param name="language">The language.</param>
2020-09-24 06:41:42 +00:00
/// <param name="mediaSource">The input mediaSource.</param>
2018-12-14 09:40:55 +00:00
/// <param name="outputPath">The output path.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
2019-01-13 20:37:13 +00:00
/// <exception cref="ArgumentNullException">
2020-08-04 15:08:09 +00:00
/// The <c>inputPath</c> or <c>outputPath</c> is <c>null</c>.
2018-12-14 09:40:55 +00:00
/// </exception>
2020-09-24 06:41:42 +00:00
private async Task ConvertTextSubtitleToSrtInternal ( string inputPath , string language , MediaSourceInfo mediaSource , string outputPath , CancellationToken cancellationToken )
2018-12-14 09:40:55 +00:00
{
if ( string . IsNullOrEmpty ( inputPath ) )
{
2019-01-06 20:50:43 +00:00
throw new ArgumentNullException ( nameof ( inputPath ) ) ;
2018-12-14 09:40:55 +00:00
}
if ( string . IsNullOrEmpty ( outputPath ) )
{
2019-01-06 20:50:43 +00:00
throw new ArgumentNullException ( nameof ( outputPath ) ) ;
2018-12-14 09:40:55 +00:00
}
2019-01-26 21:08:04 +00:00
Directory . CreateDirectory ( Path . GetDirectoryName ( outputPath ) ) ;
2018-12-14 09:40:55 +00:00
2020-09-24 06:41:42 +00:00
var encodingParam = await GetSubtitleFileCharacterSet ( inputPath , language , mediaSource . Protocol , cancellationToken ) . ConfigureAwait ( false ) ;
2018-12-14 09:40:55 +00:00
2019-07-14 14:05:45 +00:00
// FFmpeg automatically convert character encoding when it is UTF-16
// If we specify character encoding, it rejects with "do not specify a character encoding" and "Unable to recode subtitle event"
2020-08-20 10:16:24 +00:00
if ( ( inputPath . EndsWith ( ".smi" , StringComparison . Ordinal ) | | inputPath . EndsWith ( ".sami" , StringComparison . Ordinal ) ) & &
2020-04-15 17:30:23 +00:00
( encodingParam . Equals ( "UTF-16BE" , StringComparison . OrdinalIgnoreCase ) | |
encodingParam . Equals ( "UTF-16LE" , StringComparison . OrdinalIgnoreCase ) ) )
2019-07-14 14:05:45 +00:00
{
2020-08-04 15:08:09 +00:00
encodingParam = string . Empty ;
2019-07-14 14:05:45 +00:00
}
else if ( ! string . IsNullOrEmpty ( encodingParam ) )
2018-12-14 09:40:55 +00:00
{
encodingParam = " -sub_charenc " + encodingParam ;
}
2020-03-27 00:53:08 +00:00
int exitCode ;
2018-12-14 09:40:55 +00:00
2020-04-11 17:25:50 +00:00
using ( var process = new Process
{
2020-04-11 17:46:31 +00:00
StartInfo = new ProcessStartInfo
{
CreateNoWindow = true ,
UseShellExecute = false ,
FileName = _mediaEncoder . EncoderPath ,
2020-08-07 17:26:28 +00:00
Arguments = string . Format ( CultureInfo . InvariantCulture , "{0} -i \"{1}\" -c:s srt \"{2}\"" , encodingParam , inputPath , outputPath ) ,
2020-04-11 17:46:31 +00:00
WindowStyle = ProcessWindowStyle . Hidden ,
ErrorDialog = false
} ,
EnableRaisingEvents = true
} )
2018-12-14 09:40:55 +00:00
{
2020-03-27 00:53:08 +00:00
_logger . LogInformation ( "{0} {1}" , process . StartInfo . FileName , process . StartInfo . Arguments ) ;
2018-12-14 09:40:55 +00:00
try
{
2020-03-27 00:53:08 +00:00
process . Start ( ) ;
2018-12-14 09:40:55 +00:00
}
catch ( Exception ex )
{
2020-03-27 00:53:08 +00:00
_logger . LogError ( ex , "Error starting ffmpeg" ) ;
throw ;
2018-12-14 09:40:55 +00:00
}
2020-03-27 00:53:08 +00:00
var ranToCompletion = await process . WaitForExitAsync ( TimeSpan . FromMinutes ( 5 ) ) . ConfigureAwait ( false ) ;
if ( ! ranToCompletion )
{
try
{
_logger . LogInformation ( "Killing ffmpeg subtitle conversion process" ) ;
process . Kill ( ) ;
}
catch ( Exception ex )
{
_logger . LogError ( ex , "Error killing subtitle conversion process" ) ;
}
}
exitCode = ranToCompletion ? process . ExitCode : - 1 ;
}
2018-12-14 09:40:55 +00:00
var failed = false ;
if ( exitCode = = - 1 )
{
failed = true ;
2019-01-26 21:59:53 +00:00
if ( File . Exists ( outputPath ) )
2018-12-14 09:40:55 +00:00
{
try
{
2018-12-14 23:48:06 +00:00
_logger . LogInformation ( "Deleting converted subtitle due to failure: " , outputPath ) ;
2018-12-14 09:40:55 +00:00
_fileSystem . DeleteFile ( outputPath ) ;
}
catch ( IOException ex )
{
2019-01-06 19:59:13 +00:00
_logger . LogError ( ex , "Error deleting converted subtitle {Path}" , outputPath ) ;
2018-12-14 09:40:55 +00:00
}
}
}
2019-01-26 21:59:53 +00:00
else if ( ! File . Exists ( outputPath ) )
2018-12-14 09:40:55 +00:00
{
failed = true ;
}
if ( failed )
{
2019-09-20 10:42:08 +00:00
_logger . LogError ( "ffmpeg subtitle conversion failed for {Path}" , inputPath ) ;
2018-12-14 09:40:55 +00:00
2019-09-20 10:42:08 +00:00
throw new Exception (
string . Format ( CultureInfo . InvariantCulture , "ffmpeg subtitle conversion failed for {0}" , inputPath ) ) ;
2018-12-14 09:40:55 +00:00
}
2019-09-20 10:42:08 +00:00
2020-08-20 10:16:24 +00:00
await SetAssFont ( outputPath , cancellationToken ) . ConfigureAwait ( false ) ;
2018-12-14 09:40:55 +00:00
2019-01-06 19:59:13 +00:00
_logger . LogInformation ( "ffmpeg subtitle conversion succeeded for {Path}" , inputPath ) ;
2018-12-14 09:40:55 +00:00
}
/// <summary>
/// Extracts the text subtitle.
/// </summary>
2020-10-01 20:20:28 +00:00
/// <param name="inputFile">The input file.</param>
2020-09-24 06:41:42 +00:00
/// <param name="mediaSource">The mediaSource.</param>
2018-12-14 09:40:55 +00:00
/// <param name="subtitleStreamIndex">Index of the subtitle stream.</param>
/// <param name="outputCodec">The output codec.</param>
/// <param name="outputPath">The output path.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
2020-08-04 15:08:09 +00:00
/// <exception cref="ArgumentException">Must use inputPath list overload.</exception>
2019-01-06 19:59:13 +00:00
private async Task ExtractTextSubtitle (
2020-10-01 20:20:28 +00:00
string inputFile ,
2020-09-24 06:41:42 +00:00
MediaSourceInfo mediaSource ,
2019-01-06 19:59:13 +00:00
int subtitleStreamIndex ,
string outputCodec ,
string outputPath ,
CancellationToken cancellationToken )
2018-12-14 09:40:55 +00:00
{
var semaphore = GetLock ( outputPath ) ;
await semaphore . WaitAsync ( cancellationToken ) . ConfigureAwait ( false ) ;
try
{
2019-01-26 21:59:53 +00:00
if ( ! File . Exists ( outputPath ) )
2018-12-14 09:40:55 +00:00
{
2019-10-26 20:53:53 +00:00
await ExtractTextSubtitleInternal (
2020-10-01 20:20:28 +00:00
_mediaEncoder . GetInputArgument ( inputFile , mediaSource ) ,
2019-10-26 20:53:53 +00:00
subtitleStreamIndex ,
outputCodec ,
outputPath ,
cancellationToken ) . ConfigureAwait ( false ) ;
2018-12-14 09:40:55 +00:00
}
}
finally
{
semaphore . Release ( ) ;
}
}
2019-01-06 19:59:13 +00:00
private async Task ExtractTextSubtitleInternal (
string inputPath ,
int subtitleStreamIndex ,
string outputCodec ,
string outputPath ,
CancellationToken cancellationToken )
2018-12-14 09:40:55 +00:00
{
if ( string . IsNullOrEmpty ( inputPath ) )
{
2019-01-06 20:50:43 +00:00
throw new ArgumentNullException ( nameof ( inputPath ) ) ;
2018-12-14 09:40:55 +00:00
}
if ( string . IsNullOrEmpty ( outputPath ) )
{
2019-01-06 20:50:43 +00:00
throw new ArgumentNullException ( nameof ( outputPath ) ) ;
2018-12-14 09:40:55 +00:00
}
2019-01-26 21:08:04 +00:00
Directory . CreateDirectory ( Path . GetDirectoryName ( outputPath ) ) ;
2018-12-14 09:40:55 +00:00
2019-10-26 20:53:53 +00:00
var processArgs = string . Format (
CultureInfo . InvariantCulture ,
"-i {0} -map 0:{1} -an -vn -c:s {2} \"{3}\"" ,
inputPath ,
subtitleStreamIndex ,
outputCodec ,
outputPath ) ;
2018-12-14 09:40:55 +00:00
2020-03-27 00:53:08 +00:00
int exitCode ;
2018-12-14 09:40:55 +00:00
2020-04-11 17:25:50 +00:00
using ( var process = new Process
{
2020-04-11 17:46:31 +00:00
StartInfo = new ProcessStartInfo
{
CreateNoWindow = true ,
UseShellExecute = false ,
FileName = _mediaEncoder . EncoderPath ,
Arguments = processArgs ,
WindowStyle = ProcessWindowStyle . Hidden ,
ErrorDialog = false
} ,
EnableRaisingEvents = true
} )
2018-12-14 09:40:55 +00:00
{
2020-03-27 00:53:08 +00:00
_logger . LogInformation ( "{File} {Arguments}" , process . StartInfo . FileName , process . StartInfo . Arguments ) ;
2018-12-14 09:40:55 +00:00
try
{
2020-03-27 00:53:08 +00:00
process . Start ( ) ;
2018-12-14 09:40:55 +00:00
}
catch ( Exception ex )
{
2020-03-27 00:53:08 +00:00
_logger . LogError ( ex , "Error starting ffmpeg" ) ;
throw ;
2018-12-14 09:40:55 +00:00
}
2020-03-27 00:53:08 +00:00
var ranToCompletion = await process . WaitForExitAsync ( TimeSpan . FromMinutes ( 5 ) ) . ConfigureAwait ( false ) ;
if ( ! ranToCompletion )
{
try
{
_logger . LogWarning ( "Killing ffmpeg subtitle extraction process" ) ;
process . Kill ( ) ;
}
catch ( Exception ex )
{
_logger . LogError ( ex , "Error killing subtitle extraction process" ) ;
}
}
exitCode = ranToCompletion ? process . ExitCode : - 1 ;
}
2018-12-14 09:40:55 +00:00
var failed = false ;
if ( exitCode = = - 1 )
{
failed = true ;
try
{
2019-01-06 19:59:13 +00:00
_logger . LogWarning ( "Deleting extracted subtitle due to failure: {Path}" , outputPath ) ;
2018-12-14 09:40:55 +00:00
_fileSystem . DeleteFile ( outputPath ) ;
}
catch ( FileNotFoundException )
{
}
catch ( IOException ex )
{
2019-01-06 19:59:13 +00:00
_logger . LogError ( ex , "Error deleting extracted subtitle {Path}" , outputPath ) ;
2018-12-14 09:40:55 +00:00
}
}
2019-01-26 21:59:53 +00:00
else if ( ! File . Exists ( outputPath ) )
2018-12-14 09:40:55 +00:00
{
failed = true ;
}
if ( failed )
{
2019-01-06 19:59:13 +00:00
var msg = $"ffmpeg subtitle extraction failed for {inputPath} to {outputPath}" ;
2018-12-14 09:40:55 +00:00
2018-12-14 23:48:06 +00:00
_logger . LogError ( msg ) ;
2018-12-14 09:40:55 +00:00
throw new Exception ( msg ) ;
}
else
{
2019-01-06 19:59:13 +00:00
var msg = $"ffmpeg subtitle extraction completed for {inputPath} to {outputPath}" ;
2018-12-14 09:40:55 +00:00
2018-12-14 23:48:06 +00:00
_logger . LogInformation ( msg ) ;
2018-12-14 09:40:55 +00:00
}
if ( string . Equals ( outputCodec , "ass" , StringComparison . OrdinalIgnoreCase ) )
{
2020-08-20 10:16:24 +00:00
await SetAssFont ( outputPath , cancellationToken ) . ConfigureAwait ( false ) ;
2018-12-14 09:40:55 +00:00
}
}
/// <summary>
/// Sets the ass font.
/// </summary>
/// <param name="file">The file.</param>
2020-08-20 10:16:24 +00:00
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <c>System.Threading.CancellationToken.None</c>.</param>
2018-12-14 09:40:55 +00:00
/// <returns>Task.</returns>
2020-08-20 10:16:24 +00:00
private async Task SetAssFont ( string file , CancellationToken cancellationToken = default )
2018-12-14 09:40:55 +00:00
{
2019-01-06 19:59:13 +00:00
_logger . LogInformation ( "Setting ass font within {File}" , file ) ;
2018-12-14 09:40:55 +00:00
string text ;
Encoding encoding ;
2019-01-26 21:31:59 +00:00
using ( var fileStream = File . OpenRead ( file ) )
2019-01-06 19:59:13 +00:00
using ( var reader = new StreamReader ( fileStream , true ) )
2018-12-14 09:40:55 +00:00
{
2019-01-06 19:59:13 +00:00
encoding = reader . CurrentEncoding ;
2018-12-14 09:40:55 +00:00
2019-01-06 19:59:13 +00:00
text = await reader . ReadToEndAsync ( ) . ConfigureAwait ( false ) ;
2018-12-14 09:40:55 +00:00
}
2020-08-20 10:16:24 +00:00
var newText = text . Replace ( ",Arial," , ",Arial Unicode MS," , StringComparison . Ordinal ) ;
2018-12-14 09:40:55 +00:00
2020-08-20 10:16:24 +00:00
if ( ! string . Equals ( text , newText , StringComparison . Ordinal ) )
2018-12-14 09:40:55 +00:00
{
2020-01-08 16:52:50 +00:00
using ( var fileStream = new FileStream ( file , FileMode . Create , FileAccess . Write , FileShare . Read ) )
2018-12-14 23:48:06 +00:00
using ( var writer = new StreamWriter ( fileStream , encoding ) )
2018-12-14 09:40:55 +00:00
{
2020-08-20 10:16:24 +00:00
await writer . WriteAsync ( newText . AsMemory ( ) , cancellationToken ) . ConfigureAwait ( false ) ;
2018-12-14 09:40:55 +00:00
}
}
}
2020-09-24 06:41:42 +00:00
private string GetSubtitleCachePath ( string mediaPath , MediaSourceInfo mediaSource , int subtitleStreamIndex , string outputSubtitleExtension )
2018-12-14 09:40:55 +00:00
{
2020-09-24 06:41:42 +00:00
if ( mediaSource . Protocol = = MediaProtocol . File )
2018-12-14 09:40:55 +00:00
{
var ticksParam = string . Empty ;
var date = _fileSystem . GetLastWriteTimeUtc ( mediaPath ) ;
2020-07-29 11:17:01 +00:00
ReadOnlySpan < char > filename = ( mediaPath + "_" + subtitleStreamIndex . ToString ( CultureInfo . InvariantCulture ) + "_" + date . Ticks . ToString ( CultureInfo . InvariantCulture ) + ticksParam ) . GetMD5 ( ) + outputSubtitleExtension ;
2018-12-14 09:40:55 +00:00
2020-07-29 11:17:01 +00:00
var prefix = filename . Slice ( 0 , 1 ) ;
2018-12-14 09:40:55 +00:00
2020-07-29 11:17:01 +00:00
return Path . Join ( SubtitleCachePath , prefix , filename ) ;
2018-12-14 09:40:55 +00:00
}
else
{
2020-07-29 11:17:01 +00:00
ReadOnlySpan < char > filename = ( mediaPath + "_" + subtitleStreamIndex . ToString ( CultureInfo . InvariantCulture ) ) . GetMD5 ( ) + outputSubtitleExtension ;
2018-12-14 09:40:55 +00:00
2020-07-29 11:17:01 +00:00
var prefix = filename . Slice ( 0 , 1 ) ;
2018-12-14 09:40:55 +00:00
2020-07-29 11:17:01 +00:00
return Path . Join ( SubtitleCachePath , prefix , filename ) ;
2018-12-14 09:40:55 +00:00
}
}
2019-10-26 20:53:53 +00:00
/// <inheritdoc />
2018-12-14 09:40:55 +00:00
public async Task < string > GetSubtitleFileCharacterSet ( string path , string language , MediaProtocol protocol , CancellationToken cancellationToken )
{
2019-10-26 20:53:53 +00:00
using ( var stream = await GetStream ( path , protocol , cancellationToken ) . ConfigureAwait ( false ) )
{
var charset = CharsetDetector . DetectFromStream ( stream ) . Detected ? . EncodingName ;
2018-12-14 09:40:55 +00:00
2020-03-30 06:46:05 +00:00
// UTF16 is automatically converted to UTF8 by FFmpeg, do not specify a character encoding
2020-08-20 10:16:24 +00:00
if ( ( path . EndsWith ( ".ass" , StringComparison . Ordinal ) | | path . EndsWith ( ".ssa" , StringComparison . Ordinal ) | | path . EndsWith ( ".srt" , StringComparison . Ordinal ) )
2020-03-30 06:46:05 +00:00
& & ( string . Equals ( charset , "utf-16le" , StringComparison . OrdinalIgnoreCase )
| | string . Equals ( charset , "utf-16be" , StringComparison . OrdinalIgnoreCase ) ) )
{
2020-08-04 15:08:09 +00:00
charset = string . Empty ;
2020-03-30 06:46:05 +00:00
}
2019-10-26 20:53:53 +00:00
_logger . LogDebug ( "charset {0} detected for {Path}" , charset ? ? "null" , path ) ;
2018-12-14 09:40:55 +00:00
2019-10-26 20:53:53 +00:00
return charset ;
}
2018-12-14 09:40:55 +00:00
}
2020-08-31 17:07:40 +00:00
private async Task < Stream > GetStream ( string path , MediaProtocol protocol , CancellationToken cancellationToken )
2018-12-14 09:40:55 +00:00
{
2019-10-26 20:53:53 +00:00
switch ( protocol )
2018-12-14 09:40:55 +00:00
{
2019-10-26 20:53:53 +00:00
case MediaProtocol . Http :
2020-08-31 17:07:40 +00:00
{
using var response = await _httpClientFactory . CreateClient ( NamedClient . Default )
2020-11-13 16:04:31 +00:00
. GetAsync ( new Uri ( path ) , cancellationToken )
2020-08-31 17:07:40 +00:00
. ConfigureAwait ( false ) ;
2020-11-17 18:43:00 +00:00
return await response . Content . ReadAsStreamAsync ( cancellationToken ) . ConfigureAwait ( false ) ;
2020-08-31 17:07:40 +00:00
}
2018-12-14 09:40:55 +00:00
2020-03-24 15:12:06 +00:00
case MediaProtocol . File :
2020-08-31 17:07:40 +00:00
return File . OpenRead ( path ) ;
2020-03-24 15:12:06 +00:00
default :
throw new ArgumentOutOfRangeException ( nameof ( protocol ) ) ;
2019-10-26 20:53:53 +00:00
}
2018-12-14 09:40:55 +00:00
}
2020-08-04 15:08:09 +00:00
private struct SubtitleInfo
{
public SubtitleInfo ( string path , MediaProtocol protocol , string format , bool isExternal )
{
Path = path ;
Protocol = protocol ;
Format = format ;
IsExternal = isExternal ;
}
public string Path { get ; set ; }
public MediaProtocol Protocol { get ; set ; }
public string Format { get ; set ; }
public bool IsExternal { get ; set ; }
}
2018-12-14 09:40:55 +00:00
}
2018-12-14 23:48:06 +00:00
}