Do you have any advice for digitizing VHS tapes?
Do you have any advice for digitizing VHS tapes?
I have a bunch of old VHS tapes that I want to digitize. I have never digitized VHS tapes before. I picked up a generic HDMI capture card, and a generic composite to HDMI converter. Using both of those, I was planning on hooking a VCR up to a computer running OBS. Overall, I'm rather ignorant of the process. The main questions that I currently have are as follows:
- What are the best practices for reducing the risk of damaging the tapes?
- Are there any good steps to take to maximize video quality?
- Is a TBC required (can it be done in software after digitization)?
- Should I clean the VCR after every tape?
- Should I clean every tape before digitization?
- Should I have a separate VCR for the specific purpose of cleaning tapes?
Please let me know if you have any extra advice or recommendations at all beyond what I have mentioned. Any information at all is a big help.
Why a separate VCR for cleaning tapes? It's enough to clean the heads AFAIK.
Also, you should definitely not use default deinterlacing techniques for the video, especially not ones built into these generic dongles. Capture it interlaced, preferrably as losslessly as possible, then use deinterlacing software where you can fine-tune the settings if you need to.
No, TBC most likely cannot be done in software, unless the video features a prominent vertical bar (such as a black border). It depends on the quality you want to reach, look closely and decide if the jitter is acceptable.
Edit: TBC can obviously be done in software if you have the raw composite or head signal but that is not possible with the capture cards you have.
And keep the original interlaced versions too! You never know in the future you may want to use a newer deinterlater that works better. Or a new codec that can preserve more details in smaller files.
I'd keep the tapes too, you never know when the community will come up with better VCRs like how it's happening in the retro computer world where we have things like the GreaseMonkey that can store the raw magnetic transitions on the platters and floppies.
I don't expect newer VCRs to be made, there's a lot of precise mechanical engineering and the R&D that would need to go into making a professional-grade VCR today does not make financial sense. However, there is an option to refurbish existing ones and capture the magnetic signal as directly as possible. On media such as VHS or LaserDisc, the signal is not quite composite video, as that would require some 6 MHz of bandwidth. Instead, the color subcarrier is remodulated to a way lower frequency and then back to normal for playback. The folks behind
ld-decode
(a project that takes raw signal from a LaserDisc's laser pickup and translates it into composite video) and its forkvhs-decode
have made software that captures everything the head picks up into a raw file, and then does TBC and chroma decoding to create the best possible video. They also documented what hardware can be used for the capture (usually a firmware-modded Conexant video capture card or a beefy FPGA) and how to connect it to some VCRs' circuitry.Of course, this is quite an over-the-top effort for home tapes, I'd just go with a generic composite capture card that does not deinterlace nor upscale and not bother with TBC.
I was just thinking that the cleaning process might damage the VCR (as one is rummaging around in its internals [1]), so it'd be better to use a worse quality VCR for cleaning, and a good quality one for digitization.
What "default deinterlacing techniques" are you referring to?
How do I find out that information for the 2 things that I purchased (mentioned in the post)? How would I even control that? Only the composite to HDMI converter has a single switch from 720p to 1080p. I don't see anything else that would control what interlacing technique is used.
What method do you recommend to accomplish this?
Is this possible in OBS?
If I did want to capture the raw signal, do you have any methods and/or tools that you would recommend to accomplish this?
Composite is 480i/60. That is, 60 times per second a blanking interval occurs, then 240 lines of picture are drawn - either the top (odd) or bottom (even) field. This is neccessary for CRT TVs because a 30Hz refresh rate would cause seizures but drawing all 480 lines 60 times per second would be wasteful. Look it up online for details: if you want videos, I recommend the Television playlist by Technology Connections on YouTube, especially the first video.
*Technically, the vertical frequency for NTSC is 59.94 Hz (precisely 60000/1001) to avoid interference between color and audio while keeping compatibility with B/W sets. In practice, you should check that the video output is actually at this frequency; if it's 60 then every 1000th frame will be duplicated - no big deal usually unless this also swaps odd&even fields. No such problem exists for PAL, which was always exactly 50 Hz.
If the converter only outputs 720p or 1080p (presumably at 60 Hz), all 720/1080 lines are drawn 60 times per second, which means lines are added with some scaling technique, after some kind of deinterlacing happens.
Deinterlacing is basically a task similar to scaling but with key differences:
There are various deinterlacing techniques that could be used here:
Don't use the converter if it cannot output 480i or at the very least 480p! Scaling should happen during playback, the files should be original resolution. You can also try non-trivial upscaling with some AI tools (best use them after the "computation-heavy" deinterlacing method, see above) but still DEFINITELY keep the original resolution file for archival.
I don't have experience with moldy tapes. It might be a good idea but adds wear; I'd just clean the VCR after every tape if I suspect mold. You'd still need to clean the cleaning VCR after every tape to avoid cross-contamination so it would be no easier.
Idk, I just keep my files interlaced and stored as high-bitrate H.264 (I don't have enough computing power to encode sufficiently good bitrate in better codecs). If I wanted deinterlacing, I could process the files with
ffmpeg
filters or some other tools.Never done this; see recommended techniques by the
vhs-decode
community.It's been a while since I've done this but unless you're recovering the Ark of the Covenant, it should be enough to follow these simple steps: use H.264 in OBS with high bitrate on a fast PC and preferrably using a USB 3.0+ port (even if the capture card is 2.0) to avoid clashing with other devices on the bandwidth-limited 2.0 bus. Check that the output is indeed interlacd. Look at stats/logs to see of any frames are dropped and investigate if it's just the 59.94 Hz compensation, actual blank sections of tape or some part of the processing chain unable to keep up. Adjust audio levels; you might get better results using your PC's mic socket rather than the capture card's audio ADC (most tapes are mono anyway) but make sure to disable auto-gain or else quiet sections will get boosted like crazy, increasing the noise.