Post B1LnQhzKIGjLJtoKUi by Kalogerosstilitis2RevengeoftheJunta@poa.st
(DIR) More posts by Kalogerosstilitis2RevengeoftheJunta@poa.st
(DIR) Post #B1LhTT2Hk7Te5e7wGG by Kalogerosstilitis2RevengeoftheJunta@poa.st
2025-12-17T19:21:13.423455Z
2 likes, 0 repeats
I need an on line tool that can vertically split a small video easily so that after im done with the now 2 videos, i can glue it together and there will be no clipping or misalignment. Something as easy as all those tools that split videos based on time vwry easily. Im a moron so don't expect me to do very complicated things because im stupid. Any ideas?
(DIR) Post #B1LiTG0IIPCJcrewXA by CrazedWeevil@poa.st
2025-12-17T19:30:03.888447Z
1 likes, 0 repeats
@Kalogerosstilitis2RevengeoftheJunta You can use FFmpeg to do that I think. Ask ChatGPT or Grok and should give you the commands to do it.
(DIR) Post #B1LiTHKBNwhVipyLAm by Kalogerosstilitis2RevengeoftheJunta@poa.st
2025-12-17T19:32:22.246664Z
0 likes, 0 repeats
@CrazedWeevil Really? Well... Thanks man
(DIR) Post #B1LlcGPUSD1DM4QmJs by kamehamic@poa.st
2025-12-17T20:07:38.003090Z
1 likes, 0 repeats
@Kalogerosstilitis2RevengeoftheJunta Use ffmpeg. I've done it before, create a crop for each video and then with both files you can overlay one on "top of the other" but with an offset so one is on the side of the other, then you need another offset for the time alignment (use -itsoffset).There are different ways to going about it.
(DIR) Post #B1LlzaKsXMW9oVOVt2 by Kalogerosstilitis2RevengeoftheJunta@poa.st
2025-12-17T20:11:50.856225Z
0 likes, 0 repeats
@kamehamic Ill try it. Typing the numbers of the offset will be a lit easier than trying to pixel hunt with a mouse.
(DIR) Post #B1LmHUOTMsw2b5c3ay by CrazedWeevil@poa.st
2025-12-17T19:44:42.583153Z
1 likes, 0 repeats
@Kalogerosstilitis2RevengeoftheJunta Try this:ffmpeg -i input.mp4 -filter_complex "[0:v]crop=960/2:1440:0:0[left]; [0:v]crop=960/2:1440:iw/2:0[right]" -map "[left]" left.mp4 -map "[right]" right.mp4Just change the 960 & 1440 to the size of the video you want to split
(DIR) Post #B1Ln7FeNQfO9vgjZPE by kamehamic@poa.st
2025-12-17T20:24:25.660817Z
1 likes, 0 repeats
@Kalogerosstilitis2RevengeoftheJunta Crops can be absolute do i.e.,-vf crop=960:1080:0:0-vf crop=640:1080:960:0First would give the left half, the other the other the right half.I missrembered, if you need to stack videos it's something like --lavfi-complex="[0:v][1:v]hstack=inputs=2[vo]" -map "[vo]"This would stack them horizontally, vstatck for vertical, or you could pad filter the base video to the total area-size of the final video and overlay the other on top...Regarding -itsoffset you could also seek one of the videos before instead using -ss 0:05.
(DIR) Post #B1LnQhzKIGjLJtoKUi by Kalogerosstilitis2RevengeoftheJunta@poa.st
2025-12-17T20:27:57.274105Z
0 likes, 0 repeats
@kamehamic Im copy pasting all this to use them. Thanks man