To Incorporate BizHawk's VBoy.
Language: avisynth
Import("pack\Pantarheon3D.avsi")
sauce = AVISource("movie.avi")
L = sauce.Crop(0, 0, 384, 224).Levels(0, 1, 255, 0, 157)
R = sauce.Crop(384, 0, 384, 224).Levels(0, 1, 255, 0, 157)
yt3d(L, R).AudioDub(L)
Same stuff we've been using, just that since we're already in greyscale just go straight to doing the level to not be shit.
The other code that needs to be added is this (due to YouTube's update):
ffmpeg -i input_file.mkv -c copy -metadata:s:v:0 stereo_mode=1 output_file.mkv
This forces YouTube to recognize it as a 3D video.
---
This also means, that the stuff changes for VBjin. (can we nuke it now?)
Just change the colouring to greyscale from what we're already
meant to do and do this to the script.
Language: avisynth
Import("pack\Pantarheon3D.avsi")
sauce = AVISource("movie.avi")
L = sauce.Crop(0, 0, 384, 224).Levels(0, 1, 255, 0, 157)
R = sauce.Crop(400, 0, 384, 224).Levels(0, 1, 255, 0, 157)
yt3d(L, R).AudioDub(L)