Hi folks,
Does anyone know if its possible to seperate a 3D MKV file into two seperate files? ie: left and right eyes.
I have an MKV file that I need to reverse the frames on, as they play in the wrong order....
Basically need to swap left and right.
Thanks in advance.
+ Reply to Thread
Results 1 to 2 of 2
-
-
The way MOST MKV 3d files are comprised are as the 2 anamorphic Side-by-side (SbS) images contained within a standard 2d video frame.
The way to separate them is to:
1. Crop in 1/2 horizontally (1st keeping the lefthand side)
2. Resize the remaining piece 2x horizontally, while keeping the vertical size the same
3. Export to separate file
4. Repeat steps 1-3 but keeping the righthand side
Like these 2 scripts:Code:OriginalClip = DirecshowSource() LeftHalf = Crop(OriginalClip, 0, 0, -(OriginalClip.Width/), 0) Left = LanczosResize(LeftHalf, (OriginalClip.Width), (OriginalClip.Height)) OriginalClip = DirecshowSource() RightHalf = Crop(OriginalClip, (OriginalClip.Width/), 0, 0, 0) Right = LanczosResize(RightHalf, (OriginalClip.Width), (OriginalClip.Height))
Or
You could skip that all and just watch the file un-reversed-and-exported by viewing in Stereoscopic Player and flicking the "reverse views" toggle switch. Or use AVISynth and a swapviews script*, frameserving to any player app that accepts AVS files.
Or
You could just watch the video as-is, and flick the "swap views" toggle switch that is available on (AFAIK) EVERY 3d tv. They're built with this contingency in mind.
Scott
*edit:Code:OriginalClip = DirecshowSource() LeftHalf = Crop(OriginalClip, 0, 0, -(OriginalClip.Width/), 0) RightHalf = Crop(OriginalClip, (OriginalClip.Width/), 0, 0, 0) StackHorizontal (RightHalf, LeftHalf)
Last edited by Cornucopia; 15th Oct 2011 at 02:05.
Similar Threads
-
MKV guide, Play MKV, MKV to AVI, MKV to DVD, MKV to MP4, MKV to Blu-ray
By Baldrick in forum Newbie / General discussionsReplies: 55Last Post: 29th Jun 2012, 11:19 -
how to join mkv.a and mkv.b files
By sumeshkri in forum EditingReplies: 1Last Post: 5th Apr 2012, 19:56 -
Stripping sections of MKV files to seperate smaller MKV files
By spudz72 in forum EditingReplies: 6Last Post: 29th Jul 2010, 01:53 -
mkv question... many mkv files (with subs) into 1 mkv?
By 0okami in forum EditingReplies: 1Last Post: 24th Oct 2009, 00:45 -
Seperating Audio Channels.
By vodmare in forum AudioReplies: 7Last Post: 14th May 2007, 16:33