mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 14:33:06 +03:00
Use FFmpeg concat for DVD and BD folder playback
This commit is contained in:
@@ -323,6 +323,11 @@ public class TranscodingJobHelper : IDisposable
|
||||
if (delete(job.Path!))
|
||||
{
|
||||
await DeletePartialStreamFiles(job.Path!, job.Type, 0, 1500).ConfigureAwait(false);
|
||||
if (job.MediaSource?.VideoType == VideoType.Dvd || job.MediaSource?.VideoType == VideoType.BluRay)
|
||||
{
|
||||
var path = Path.GetDirectoryName(job.Path) + "/" + job.MediaSource.Id + ".concat";
|
||||
File.Delete(path);
|
||||
}
|
||||
}
|
||||
|
||||
if (closeLiveStream && !string.IsNullOrWhiteSpace(job.LiveStreamId))
|
||||
|
||||
Reference in New Issue
Block a user