fixes #364 - Image Extraction for 3D Videos

This commit is contained in:
Luke Pulverenti
2013-06-27 11:59:32 -04:00
parent 0a5701130e
commit 36d4e15860
5 changed files with 31 additions and 10 deletions

View File

@@ -169,7 +169,7 @@ namespace MediaBrowser.Controller.MediaInfo
Directory.CreateDirectory(parentPath);
}
await _encoder.ExtractImage(inputPath, type, time, path, cancellationToken).ConfigureAwait(false);
await _encoder.ExtractImage(inputPath, type, video.Video3DFormat, time, path, cancellationToken).ConfigureAwait(false);
chapter.ImagePath = path;
changesMade = true;
}