I'm looking into a product that can take 2 high definition input but displays only half of input 1 on left side and half of input 2 on right side.
Would be nice if this could be a PC application (playing 2 video file) or could be taking input from 2 computers/digital STBs.
Any ideas anyone?
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 7 of 7
			
		- 
	
- 
	Calculate "half" the width then: 
 
 You can use AviSource(), Mpeg2Source(), AvcSource() or whatever is appropriate instead of DirectShowSource().Code:left=DirectShowSource("file1.ext").Crop(0, 0, -half, -0) right=DirectShowSource("file1.ext").Crop(half, 0, -0, -0) StackHorizontal(left, right)
 
 Or fully automated:
 
 The two videos must be the same height. If they're different widths the split will not be equal. And note that some colorspaces can't be cropped by odd values. For example, YV12 and YUY2 will have to be Mod4 for the above script to work.Code:left=DirectShowSource("file1.ext") right=DirectShowSource("file2.ext") half = Width(left) / 2 StackHorizontal(Crop(left, 0, 0, -half, -0), Crop(right, half, 0, -0, -0))
- 
	Hmmm.. works in Windows Media Player classic... But not "creating a proxy" for avidemux... My sources are MPEG 2 transport stream. any ideas? Is that what you mentionned about Mod4? 
 
 AvsSocket Proxy, derivated from avs2yuv by Loren Merritt
 Loading Avisynth.dll
 Avisynth.dll loaded
 Env created
 Importing..
 10000000 / 166833
 Only yv12!
 Err: 14007
 
 > Exit Code: -1
Similar Threads
- 
  Player to play 2 separate videos side by side for 3D effect ?By andy15star in forum Software PlayingReplies: 9Last Post: 21st Jan 2012, 13:52
- 
  How Create ACHD side by side compatible with Panasonic 3D Cam and HDTV?By castana in forum Video ConversionReplies: 7Last Post: 25th Jul 2011, 16:47
- 
  [solved]3d side-by-side capture and conversion to anaglyph using VirtualDubBy jumpjack in forum Capturing and VCRReplies: 21Last Post: 13th Apr 2011, 20:23
- 
  Is the panasonic dmres46v a seudo svhs side-by-side player/recorder?By yoda313 in forum RestorationReplies: 8Last Post: 17th May 2010, 09:09
- 
  compareing 2 videos side by side in same video. (sugestions)By tessa101 in forum EditingReplies: 4Last Post: 9th Jan 2009, 03:36


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			

 Quote
 Quote