bb
15th June 2006, 11:08
In PAL countries many VHS VCRs are capable of so-called "NTSC playback on PAL TVs", which means you can put an NTSC cassette in, and it will play properly on newer PAL TV sets that support PAL60. Basically the colour signal gets converted to PAL, but the refresh rate stays at 60 Hz (regular PAL VHS cassettes play back at 50 Hz).
An easy way of creating DVDs from VHS tapes is to use a DVD Recorder. Unfortunately mine (a Panasonic DMR-EH60) supports NTSC and PAL input, but not PAL60. Both my VCRs can play back NTSC, but they don't output native NTSC 3.58: output is PAL60 instead. Because I wasn't pleased with neither a black and white picture nor a squeezed and distorted image, I realized that I had two options:
1. Borrow a VCR with NTSC 3.58 playback
2. PC analogue capture
Well, I took option 2. For those who may stumble across the same problem, here's my short description how I did it:
First I connected the VCR to my PC using a SCART-to-Cinch adaptor cable. Somehow you have to connect the VCR's output to the PC's AV input. There may be other options, like Cinch-to-Cinch, or an S-Video cable; it depends on the VCR used.
In my case the capture was done using MainConcept MPEG Encoder using highest bitrate settings and PAL DVD target format. Ok, you may argue that for best quality I should have captured to MJPEG or HuffYUV AVI, but my way worked well for me. In any case the capture result should be a 720x576 (or 704x576) video - NOT XXXx480! PAL60 has to be captured at 576 rows.
To cut off some garbage at the beginning and at the end of the video I used Cuttermaran. Then I created a D2V project using DGIndex demuxing the audio stream at the same time (regular procedure). An AviSynth script was fed into the Encoder (MainConcept again, this time set to standard PAL DVD settings):
LoadPlugin("C:\...\DGDecode.dll")
MPEG2Source("Q:\Temp\MyVideo.d2v")
SeparateFields()
odd=SelectOdd().BilinearResize(720,240)
evn=SelectEven().BilinearResize(720,240)
Interleave(evn,odd)
Weave()
You have to adjust the paths, of course. Encoder output was a DVD compliant elementary MPEG-2 video stream.
Finally the DVD was authored with the help of DVDlab using the final video stream and the audio stream I demuxed in the DGIndex step.
bb
Comments are welcome :)
An easy way of creating DVDs from VHS tapes is to use a DVD Recorder. Unfortunately mine (a Panasonic DMR-EH60) supports NTSC and PAL input, but not PAL60. Both my VCRs can play back NTSC, but they don't output native NTSC 3.58: output is PAL60 instead. Because I wasn't pleased with neither a black and white picture nor a squeezed and distorted image, I realized that I had two options:
1. Borrow a VCR with NTSC 3.58 playback
2. PC analogue capture
Well, I took option 2. For those who may stumble across the same problem, here's my short description how I did it:
First I connected the VCR to my PC using a SCART-to-Cinch adaptor cable. Somehow you have to connect the VCR's output to the PC's AV input. There may be other options, like Cinch-to-Cinch, or an S-Video cable; it depends on the VCR used.
In my case the capture was done using MainConcept MPEG Encoder using highest bitrate settings and PAL DVD target format. Ok, you may argue that for best quality I should have captured to MJPEG or HuffYUV AVI, but my way worked well for me. In any case the capture result should be a 720x576 (or 704x576) video - NOT XXXx480! PAL60 has to be captured at 576 rows.
To cut off some garbage at the beginning and at the end of the video I used Cuttermaran. Then I created a D2V project using DGIndex demuxing the audio stream at the same time (regular procedure). An AviSynth script was fed into the Encoder (MainConcept again, this time set to standard PAL DVD settings):
LoadPlugin("C:\...\DGDecode.dll")
MPEG2Source("Q:\Temp\MyVideo.d2v")
SeparateFields()
odd=SelectOdd().BilinearResize(720,240)
evn=SelectEven().BilinearResize(720,240)
Interleave(evn,odd)
Weave()
You have to adjust the paths, of course. Encoder output was a DVD compliant elementary MPEG-2 video stream.
Finally the DVD was authored with the help of DVDlab using the final video stream and the audio stream I demuxed in the DGIndex step.
bb
Comments are welcome :)