diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-27 11:59:32 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-27 11:59:32 -0400 |
| commit | 36d4e15860da3295dbb180ce6aa8ba180ffb26f9 (patch) | |
| tree | fa6a82330b9784be49dd30aa16974fd5e9ba89e1 /MediaBrowser.Controller/MediaInfo/FFMpegManager.cs | |
| parent | 0a5701130e3b7a6d51b8a241f4beb1b697375d4a (diff) | |
fixes #364 - Image Extraction for 3D Videos
Diffstat (limited to 'MediaBrowser.Controller/MediaInfo/FFMpegManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/MediaInfo/FFMpegManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/MediaInfo/FFMpegManager.cs b/MediaBrowser.Controller/MediaInfo/FFMpegManager.cs index 81ab15548..f402cec20 100644 --- a/MediaBrowser.Controller/MediaInfo/FFMpegManager.cs +++ b/MediaBrowser.Controller/MediaInfo/FFMpegManager.cs @@ -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; } |
