aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/MediaInfo/FFMpegManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-27 11:59:32 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-27 11:59:32 -0400
commit36d4e15860da3295dbb180ce6aa8ba180ffb26f9 (patch)
treefa6a82330b9784be49dd30aa16974fd5e9ba89e1 /MediaBrowser.Controller/MediaInfo/FFMpegManager.cs
parent0a5701130e3b7a6d51b8a241f4beb1b697375d4a (diff)
fixes #364 - Image Extraction for 3D Videos
Diffstat (limited to 'MediaBrowser.Controller/MediaInfo/FFMpegManager.cs')
-rw-r--r--MediaBrowser.Controller/MediaInfo/FFMpegManager.cs2
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;
}