I have finally joined the ranks of video capturers with a Blackmagic Intensity Pro card! I just captured my first LD to HuffyYUV 4:2:2 in 2 parts. Now my question is, whats the best way to losslessly combine the 2 parts into 1, then get ready for x264 encoding (de-interlacing, cropping, etc)?
EDIT:
Thanks a bunch to everyone for the help! Here's the final details for future use:
- LD Video -> Blackmagic Intensity Pro -> VirtualDub 2
- Set Video>Compression to HuffyUV, and Video>Set Custom Format... to UYVY (4:2:2 color) and Capture
- Download TIVTC plugin for AVS
Create AVS script:
- Render audio via VirtualDub (open same AVS script, then File, Save Audio...)
- Render video with SimpleX264
- Remux!
(This post was last modified: 2020-03-04, 07:41 PM by bronan.)
EDIT:
Thanks a bunch to everyone for the help! Here's the final details for future use:
- LD Video -> Blackmagic Intensity Pro -> VirtualDub 2
- Set Video>Compression to HuffyUV, and Video>Set Custom Format... to UYVY (4:2:2 color) and Capture
- Download TIVTC plugin for AVS
Create AVS script:
Code:
LoadPlugin("TIVTC.dll")#put the plugin in the same directory as your script
side1=
\AviSource("U:\side1.avi")
\.TFM()
\.TDecimate()
\.ConvertToYV12() #if you are going to 4:2:0 color
\.Trim(17, 81430)
\.Crop(10,3,-24,-3)
side2=
\AviSource("U:\side2.avi")
\.TFM()
\.TDecimate()
\.ConvertToYV12() #if you are going to 4:2:0 color
\.Trim(73, 34696)
\.Crop(10,3,-24,-3)
side1 ++ side2
- Render audio via VirtualDub (open same AVS script, then File, Save Audio...)
- Render video with SimpleX264
- Remux!