+ Reply to Thread
Results 31 to 52 of 52
-
There are drops/duplicates in your capture process.
By the way, you can alternatively use:
Code:LWLibavVideoSource("iodata.avi") SelectEven() AssumeTFF() QTGMC() # optional deinterlace
-
-
I'm not sure which is better the iodata or a pinnacle?
https://www.digitalfaq.com/forum/video-capture/15246-pinnacle-card-works.html
Do you think the gv-usb2 is bad?
If I'm reading your previous posts correctly, you're playing your tape with the VCR TBC off because it jitters. Generally, one needs a stabiliser of some kind, whether it be the VCR TBC, an ES-15 type DVD recorder or a full-blown, costly TBC. In your case, if you've got your VCR TBC off, you'll need one of the others. I have notes on stabilisers here, and the ES-15 specifically here.
First, try some other tapes with the GV. You can post samples here up to 500mb, so, with a lossless codec, a clip of 15 seconds would be better for analysis.
As for that DVDO, as @Sharc has pointed out, there's all sorts of issues there so I would steer clear of it for the time being.Last edited by Alwyn; 12th Aug 2025 at 03:20. Reason: Changed to "YUY2" in the text.
-
No.
Ease of use? Check this thread out for ease of use (NOT) of the 710-USB:
https://www.digitalfaq.com/forum/video-capture/15246-pinnacle-card-works.html
As for that DVDO, as @Sharc has pointed out, there's all sorts of issues there so I would steer clear of it for the time being.Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
-
-
Originally Posted by Sharc
I've edited my previous post. -
At least we can all still agree on total garbage, which is what HDMI adapters are.
-
Yes, the HDMI approach as experimented and documented by the German guys in their forum is a good alternative to the "standard" workflow https://gleitz-info.translate.goog/forum/index.php?thread/47572-tutorial-hochwertiges-..._x_tr_pto=wapp
In particolar when the tapes may benefit of the stronger intra-frame time base correction provided by specific DVD-Recorder devices.
Knowledgeable users Bogilein, oln and Skiller (among others) have demonstrated this in videohelp forums as well. -
For clarification: uncompressed and lossless are not the same. YUV (YUY2) is already a form of compression based on the concept of luma+chroma. Capturing (digitizing) VHS as YUV 4:2:2 using a lossless codec like Huffyuv etc. is efficient as it prevents any undesired additional losses (for VHS). One could also capture less efficiently into YUV 4:4:4 or RGB for example, but for VHS it would be a waste of bandwidth/bitrate/filesize at no real benefit.
-
-
Here is the JVC going into the s-video of the black magic. Black magic said 8bit avi
https://files.videohelp.com/u/139455/JVC%20into%20black%20magic%20s-vid.avi -
This looks correct from a capture point of view: YUV 4:2:2 interlaced BFF, 29.97fps. (Blackmagic seems to capture NTSC with 486 lines).
There are however some glitches at the bottom of some of the frames (too much for head switching garbage I think). Maybe this is baked into the tape and not related to the capturing process. Not sure. Is this from an edited/dubbed tape?
(Sidenote: The luma histogram has regular gaps. Probably due to the luma expansion by the capture SW to fill the 16....235 range.)Last edited by Sharc; 13th Aug 2025 at 02:42.
-
This was from my wedding tape. Some company made this from video they gathered that day. I will capture some different tapes. I’m wondering which device to use. The black magic or iodata. Would it be worth a shot to get an es15 and see if that clears up stuff with the jvc tbc off or is that just a waste? If the settings are ok and it’s as good as it gets, until after to try to clean up with software, do I just capture all my tapes and then process? I am trying to figure out this avisynth thing and first me, it’s tuff. Is there one with all the needed presets set to go that I can just download and run? I’ve tried hybrid but I can’t seem to find certain things and how to run really.
With iodata what’s the best codec to use? Not sure if the magicyuv is worth the cost?
Thanks for the help -
So it has been edited and copied. That explains most of the quality issues
I will capture some different tapes. I’m wondering which device to use. The black magic or iodata
Would it be worth a shot to get an es15 and see if that clears up stuff with the jvc tbc off
If the settings are ok and it’s as good as it gets, until after to try to clean up with software, do I just capture all my tapes and then process? I am trying to figure out this avisynth thing and first me, it’s tuff. Is there one with all the needed presets set to go that I can just download and run? I’ve tried hybrid but I can’t seem to find certain things and how to run really.
With iodata what’s the best codec to use?
Script (video only):
Code:AVISource("JVC into black magic s-vid.avi") ConvertToYV16(interlaced=true) AssumeBFF() QTGMC() #or use a simpler deinterlacer Crop(8, 2, -8, -4) #crop to 704x480 TemporalDegrain2() #denoise, or use a simpler denoiser, or skip it ConvertToYV12() #for subsequent x264 4:2:0 encoding
Last edited by Sharc; 13th Aug 2025 at 13:59. Reason: typos
-
So the dvdo went back to the black hole in my garage. I captured a few tapes via iodata and UT Video,ULY2 as the codec. No dropped frames that I can see, but maybe a few duplicates that seemed to have happened when the tape go crappy. That being said, the don't seem to open in davinci. I'm tried using shutter encoder, Avidemux, and virtdub2 and change it to .mov or .mkv and all they do is leave me with an audio file? How can I get them in there to edit? Did I pick the wrong codec? Where do I go from here? They play fine with vlc player after capturing.
Thanks again.Last edited by Riker0007; 19th Aug 2025 at 00:22.
-
Originally Posted by Riker0007
A Davinci user will hopefully point you in the right direction. You might have to transcode to a suitable codec such as ProRes. -
Last edited by rgr; 19th Aug 2025 at 07:27.
-
@Riker0007: You can convert your captured .avi to ProRes .mov using ffmpeg, like
Code:ffmpeg.exe -i "your.avi" -c:a copy -c:v prores_ks -profile:v 2 -bits_per_mb 8000 -pix_fmt yuv422p10le -vf scale=interl=1,setfield=bff "proRes422.mov"
Added:
Here your source of post#45 converted to ProRes, using the ffmpeg commandline. It should open in DaVinci.Last edited by Sharc; 19th Aug 2025 at 08:30.
Similar Threads
-
Is it worth upscaling video?
By sophisticles in forum Video ConversionReplies: 15Last Post: 30th Apr 2024, 09:51 -
Is an eGPU worth it to speed up encoding?
By mfmto in forum Newbie / General discussionsReplies: 6Last Post: 2nd May 2023, 12:36 -
Are more expensive AV cables worth it?
By bigbadben in forum Newbie / General discussionsReplies: 8Last Post: 1st Nov 2021, 09:06 -
Is it worth upgrading?
By sophisticles in forum Newbie / General discussionsReplies: 0Last Post: 24th May 2021, 16:24 -
How Merge 1 Video to 100 Videos (Intro + Multiple Main Videos) help
By Squid Ward in forum EditingReplies: 0Last Post: 4th Sep 2020, 10:27