Log in

View Full Version : frame serve 4 streams into 1 output?


k-c-ksum
10th January 2013, 21:10
Theres a 4K satellite stream on 10.0E. They broadcast it using 4 video channels, top right, top left, bottom left and bottom right. So basically you get a 4k image consisting of 4 1920x1080 streams. would it be possible to frame serve these 4 streams and construct the 3840x2160 image?

IanB
10th January 2013, 21:30
TR=...source...
TL=...source...
Top=StackHorizontal(TL, TR)

BL=...source...
BR=...source...
Bot=StackHorizontal(BL, BR)

StackVertical(Top, Bot)

k-c-ksum
11th January 2013, 00:40
TR=...source...
TL=...source...
Top=StackHorizontal(TL, TR)

BL=...source...
BR=...source...
Bot=StackHorizontal(BL, BR)

StackVertical(Top, Bot)

thanks, for some reason its displaying the top left/right images upside down

poisondeathray
11th January 2013, 01:27
thanks, for some reason its displaying the top left/right images upside down

maybe something wrong with your decoder?

you can add turn180() to rotate TL, TR
http://avisynth.org/mediawiki/TurnLeft

IanB
11th January 2013, 04:18
Or FlipVertical() (http://avisynth.org/mediawiki/FlipVertical)