So after doing a lot of looking I found this place to be the best to ask questions. I have an odd question. I am school teacher and we are in need of the ability to split a video into 4 triangular pieces like the video in the link below.https://www.youtube.com/playlist?list=PLxpk8QYH9aNuM0Tbs7C8_ogkLO48M_VhD.
Can someone please point me in the right direction for the correct forum or maybe an idea of how to do this? I am desperate.
+ Reply to Thread
Results 1 to 7 of 7
-
-
Create four 90 degree rotated version of the video. Join them together in a 2x2 matrix. Rotate 45 degrees.
Original video and rotations:
Joined:
Wierd, the site won't let me upload any more images.Last edited by jagabo; 2nd Sep 2015 at 09:24.
-
Thank you so much for the advice! I am a total newbie, is there a particular software that you would recommend to accomplish this? I have never actually tried editing a video before.
-
Pretty much every video editor has this type of compositing. All the commercial editors have it. I'm pretty sure the free AviUtl has it. I did it with a quick AviScript:
Code:v1 = ImageSource("picture.jpg").ConvertToYV12() v2 = v1.TurnRight() v3 = v2.TurnRight() v4 = v3.TurnRight() StackVertical(StackHorizontal(v1,v2), StackHorizontal(v4,v3)) Rotate(45)
-
jagabo, First I turned the single image into a video and used it as an inout to your script but I kept getting an error on the script you posted but I rearranged it and since my photo wasn't square(error on height mismatch during stack) I used:
v1 = DirectShowSource("C:\Users\Bud\Desktop\image001.fl v").converttoyv12.lanczosresize(320,320).rotate (-45)
v2 = v1.TurnRight()
v3 = v2.TurnRight()
v4 = v3.TurnRight()
StackVertical(StackHorizontal(v1,v2), StackHorizontal(v4,v3))
Rotate(45)
Playing this AVS file resulted in:
Using non Black background shows the more creative result orientation:
-
Yes, the image has to be square to use the stacking sequence in that script. In another video I used the same -45 degree pre-rotation to level the images.
I still can't upload anything! -
Jagabo, seems like site has been a little weird lately here also. Slow and problems uploading. Weird thing is one of my isp path routers works ok but the other doesnt.
Similar Threads
-
odd VCR issue with comets question
By mazinz in forum Capturing and VCRReplies: 2Last Post: 17th Jun 2015, 16:50 -
Video filter for reconstructing even/odd columns of video
By hyachts in forum Video ConversionReplies: 9Last Post: 28th Nov 2012, 12:08 -
Odd audio/video sync issue with mkv
By agni451 in forum EditingReplies: 0Last Post: 5th Jul 2012, 22:18 -
Odd question - removing tamper proof stickers from old rental tape?
By justin81 in forum RestorationReplies: 18Last Post: 15th Feb 2011, 01:42 -
Decimate odd patterned duplicate frames in video
By raphaelt in forum Video ConversionReplies: 2Last Post: 2nd Feb 2011, 22:57