VideoHelp Forum
+ Reply to Thread
Results 1 to 26 of 26
Thread
  1. Formerly 'vaporeon800' Brad's Avatar
    Join Date
    Apr 2001
    Location
    Vancouver, Canada
    Search PM
    NTSC Hi8 played via Sony DCR-TRV340 with DNR Off & TBC On.

    Screenshots vertically padded to 720x486 to match the second lossless capture, then LanczosResize'd to 1440x1080. The pre-resized shots are also attached at the bottom of the post.

    In the DV transfer, the video was shifted up by one line after the first "scene cut" on the tape. I tried twice and this happened both times. I've shifted it down here, to match the others.

    Click image for larger version

Name:	Wedding P - 13-30 - WinDV L.png
Views:	4985
Size:	1.95 MB
ID:	35575Click image for larger version

Name:	Wedding P - 13-30 - DMR-ES25 L.png
Views:	4639
Size:	2.19 MB
ID:	35578Click image for larger version

Name:	Wedding P - 13-30 - NHX-E2 L.png
Views:	4979
Size:	2.04 MB
ID:	35576
    Click image for larger version

Name:	Wedding P, water - 24-32 - WinDV L.png
Views:	4300
Size:	1.76 MB
ID:	35572Click image for larger version

Name:	Wedding P, water - 24-32 - DMR-ES25 L.png
Views:	4317
Size:	2.01 MB
ID:	35567Click image for larger version

Name:	Wedding P, water - 24-32 - NHX-E2 L.png
Views:	4144
Size:	1.88 MB
ID:	35573
    Click image for larger version

Name:	Wedding P, water - 30-23 - WinDV L.png
Views:	4055
Size:	1.79 MB
ID:	35571Click image for larger version

Name:	Wedding P, water - 30-23 - DMR-ES25 L.png
Views:	3794
Size:	2.03 MB
ID:	35570Click image for larger version

Name:	Wedding P, water - 30-23 - NHX-E2 L.png
Views:	4095
Size:	1.88 MB
ID:	35569
    Click image for larger version

Name:	Wedding P, water - 42-22 - WinDV L.png
Views:	4095
Size:	1.51 MB
ID:	35577Click image for larger version

Name:	Wedding P, water - 42-22 - DMR-ES25 L.png
Views:	4123
Size:	1.80 MB
ID:	35568Click image for larger version

Name:	Wedding P, water - 42-22 - NHX-E2 L.png
Views:	3915
Size:	1.62 MB
ID:	35574

    As you can see, the camcorder's DV output and the first lossless capture have raised blacks and blown-out brights.

    I've included two video samples. It's the same portion of the tape as the first image set. I can add more videos if desired, but I think these tell the story fairly well.

    Script to align the attached samples for pixel-peeping:
    Code:
    AVISource("DV vs lossless - Wedding P 13-30 - WinDV.avi",pixel_type="RGB32")
    
    # Entire DV frame is shifted up shortly after first scene cut
    AddBorders(0,1,0,0,color_white).Crop(0,0,-0,-1)
    
    DV = last
    
    ###
    
    AVISource("DV vs lossless - Wedding P 13-30 - DMR-ES25.avi")
    ConvertToRGB().AddBorders(1,0,0,0,color_white).Crop(0,0,-1,-0) # Match DV horizontal framing
    
    Y2 = last
    
    ###
    
    Interleave(DV,Y2)
    Last edited by Brad; 8th Feb 2016 at 11:24.
    Quote Quote  
  2. Thanks for the samples but I don't understand the captures. I assume the WinDV video is the Hi8 tape played on the camcorder and captured as DV. What exactly is the DMR-ES25 video? Tape played on the camcorder, the DVD recorder used as a passthrough then captured with a raw YUV device, compressed with UT?

    I'd prefer you NOT resize the PNG images before uploading. Resizing can be done locally, in the browser, using screen magnifier, or after downloading the images.
    Quote Quote  
  3. Formerly 'vaporeon800' Brad's Avatar
    Join Date
    Apr 2001
    Location
    Vancouver, Canada
    Search PM
    Does Firefox offer in-browser upsizing? I thought it only did zoom-out.

    WinDV.avi = what you said
    DMR-ES25.avi = camcorder <YC> Panasonic DVD recorder <HDMI> Blackmagic Intensity Pro 4K

    So, Panasonic as ADC only without the final DAC passthrough.
    Quote Quote  
  4. Originally Posted by vaporeon800 View Post
    Does Firefox offer in-browser upsizing? I thought it only did zoom-out.
    Yes, Ctrl+= to zoom in, Ctrl+- to zoom out, Ctrl+0 to go back to 1x. Same as IE.

    Originally Posted by vaporeon800 View Post
    WinDV.avi = what you said
    DMR-ES25.avi = camcorder <YC> Panasonic DVD recorder <HDMI> Blackmagic Intensity Pro 4K

    So, Panasonic as ADC only without the final DAC passthrough.
    Thanks for the clarification.

    The DV cap is losing a bit of fine detail. Even after running noise reduction filters like TemporalDegrain() there's more detail in the UT cap.
    Quote Quote  
  5. Member Skiller's Avatar
    Join Date
    Oct 2013
    Location
    Germany
    Search PM
    Originally Posted by vaporeon800 View Post
    As you can see, the camcorder's DV output and the first lossless capture have raised blacks and blown-out brights.
    After a levels correction recovering the superbrights (235...255), I find that the DMR Capture is not really missing any details for the first scene (same for the DV cap), actually the third cap seems a little too dark (there is no white, the brightest value is at about 235, whereas it should be 255 for a PNG screenshot).

    So I applied a Levels correction of 16...255 to 16...235 to the DMR-ES25 capture, comparing it to the third capture (NHX-E2) using your PNG screenshot.

    Click image for larger version

Name:	DMR-ES25_levels_corrected.png
Views:	890
Size:	690.3 KB
ID:	35582Click image for larger version

Name:	Wedding P - 13-30 - NHX-E2.png
Views:	946
Size:	650.3 KB
ID:	35583

    Code:
    AVISource("DV vs lossless - Wedding P 13-30 - DMR-ES25.avi")
    ConvertToYV24().AddBorders(1,0,0,0,color_white).Crop(0,0,-1,-0) # Match DV horizontal framing
    
    SmoothLevels(16,1,255, 16,235, Chroma=0, HQ=True)
    
    ConvertToRGB()
    
    Subtitle("DMR-ES25, Levels corrected 16...255 –› 16...235")
    ShowSMPTE()
    
    Addborders(0,5,0,1, color_white) #486
    Now the ES-25 doesn't seem to be missing any details in the brights anymore (at least in this scene).


    However, the second scene might be better suited to judge this ultimately (raw sample needed^^).
    Last edited by Skiller; 8th Feb 2016 at 07:52.
    Quote Quote  
  6. Originally Posted by Skiller View Post
    After a levels correction recovering the superbrights (235...255), I find that the DMR Capture is not really missing any details for the first scene
    I thought that was too obvious to mention. Anyone who's going to the trouble of capturing lossless is going to be filtering so adjusting levels to get brights out of the 235-255 range is a non-issue. There is a tiny bit of clipping in the very brightest areas, maybe 1 or 2 Y units.
    Quote Quote  
  7. Formerly 'vaporeon800' Brad's Avatar
    Join Date
    Apr 2001
    Location
    Vancouver, Canada
    Search PM
    Originally Posted by Skiller View Post
    I find that the DMR Capture is not really missing any details for the first scene (same for the DV cap)
    Well, the DV and ES25 both hard-clip at Y=255/254.

    I see the NHX-E2 images are also hard-clipped. The waveform monitor built into Edius is quite misleading, and I wasn't focused on levels for this comparison. I'll have to redo the capture using its Manual Gain control instead of its Contrast control, or use another capture device to show what's missing.

    Originally Posted by jagabo View Post
    Ctrl+= to zoom in, Ctrl+- to zoom out, Ctrl+0 to go back to 1x
    I like to open each image in a new tab and scroll between them. So for me at least, doing a zoom-in six times on each individual tab isn't a time savings vs downloading the huge PNGs.
    Last edited by Brad; 8th Feb 2016 at 08:41.
    Quote Quote  
  8. Originally Posted by vaporeon800 View Post
    I like to open each image in a new tab and scroll between them. So for me at least, doing a zoom-in six times on each individual tab isn't a time savings vs downloading the huge PNGs.
    It's not a matter of time saving. It's a matter of viewing the actual captured images, not some distorted, resized, version. This time you included the originals so it's not a problem. But in some of your other comparisons there have only been resized images.
    Last edited by jagabo; 8th Feb 2016 at 09:10.
    Quote Quote  
  9. Formerly 'vaporeon800' Brad's Avatar
    Join Date
    Apr 2001
    Location
    Vancouver, Canada
    Search PM
    Originally Posted by Skiller View Post
    However, the second scene might be better suited to judge this ultimately (raw sample needed^^).
    I've attached samples of this scene ("24:32") to the OP now. The levels in the NHX-E2 recapture were in range during the wedding portion, but here they're a little over. It doesn't really matter; ultimately, none of the three methods grabs discernibly more bright detail than its competitors.

    The playback camcorder seems to be to blame for this. Here's a field from a Video8 tape that I had captured earlier. With TBC Off, there is a little less clipping. But it's clear that the analog output always goes through a digitization stage regardless (chroma is always DNR'd, and hard borders are masked onto both sides). Perhaps a non-TBC Hi8 player would reveal a little more at the upper end.

    Click image for larger version

Name:	2002 Video8 living room - 01 +TBC DV.png
Views:	2952
Size:	346.0 KB
ID:	35587 Click image for larger version

Name:	2002 Video8 living room - 02 +TBC ES25.png
Views:	2965
Size:	413.0 KB
ID:	35588
    Click image for larger version

Name:	2002 Video8 living room - 03 -TBC DV.png
Views:	2932
Size:	358.9 KB
ID:	35589 Click image for larger version

Name:	2002 Video8 living room - 04 -TBC ES25.png
Views:	3006
Size:	420.3 KB
ID:	35590
    Quote Quote  
  10. Capturing Memories dellsam34's Avatar
    Join Date
    Jan 2016
    Location
    Member Since 2005, Re-joined in 2016
    Search PM
    Why comparing apples to oranges, You should be comparing DV compression vs MPEG2 compression, For the average user that difference don't mean nothing, for the pros that do it for a living they don't use DV devices so I would like to know what is the purpose of this comparison.
    Quote Quote  
  11. Dinosaur Supervisor KarMa's Avatar
    Join Date
    Jul 2015
    Location
    US
    Search Comp PM
    @vaporeon800 post #9
    What are you using to get that scope information? If it's avisynth can you post the code to get all that?

    Originally Posted by dellsam34 View Post
    Why comparing apples to oranges, You should be comparing DV compression vs MPEG2 compression, For the average user that difference don't mean nothing, for the pros that do it for a living they don't use DV devices so I would like to know what is the purpose of this comparison.
    There are people on this board that advocate DV for transfer/archival purposes. No harm in comparing, seeing how much you may lose. And DV uses 4:1:1 while MPEG2 encoder chips usually use 4:2:0, so that's also apples and oranges.
    Last edited by KarMa; 9th Feb 2016 at 01:35.
    Quote Quote  
  12. Capturing Memories dellsam34's Avatar
    Join Date
    Jan 2016
    Location
    Member Since 2005, Re-joined in 2016
    Search PM
    Originally Posted by KarMa View Post
    @vaporeon800 post #9
    What are you using to get that scope information? If it's avisynth can you post the code to get all that?

    Originally Posted by dellsam34 View Post
    Why comparing apples to oranges, You should be comparing DV compression vs MPEG2 compression, For the average user that difference don't mean nothing, for the pros that do it for a living they don't use DV devices so I would like to know what is the purpose of this comparison.
    There are people on this board that advocate DV for transfer/archival purposes. No harm in comparing, seeing how much you may lose. And DV uses 4:1:1 while MPEG2 encoder chips usually use 4:2:0, so that's also apples and oranges.
    Only for NTSC, PAL DV is 4:2:0
    Quote Quote  
  13. Member Skiller's Avatar
    Join Date
    Oct 2013
    Location
    Germany
    Search PM
    Originally Posted by vaporeon800 View Post
    It doesn't really matter; ultimately, none of the three methods grabs discernibly more bright detail than its competitors.
    I agree, so far there isn't more detail captured in the brights in any of the three.

    One thing that would bother me is the (albeit slight) posterization in the NHX-E2 cap. It's not visible to the eye in the samples because these are bright scenes; and even in dark scenes there is probably enough noise to mask it, but it's there.

    Click image for larger version

Name:	Levels_NHX.PNG
Views:	732
Size:	69.6 KB
ID:	35613 Click image for larger version

Name:	Levels_DMR-ES25.PNG
Views:	703
Size:	72.5 KB
ID:	35614

    One could say the NHX-E2 capture is not using full 8 Bits per channel.
    I found that this happens with most capture devices if you put their "Proc-Amp" settings on anything other than the default.
    It seems that these settings do not affect the levels during the analog-digital conversion but rather after (which renders them pretty useless because you cannot recover any clipped brights this way; only squeeze, expand and shift what you already have). Actually the only capture hardware I know of where the Proc-Amp settings actually do affect the levels during ADC is the Canopus NX.
    Quote Quote  
  14. Member
    Join Date
    Mar 2015
    Location
    Europe
    Search Comp PM
    What hdmi setting was used for transfer to the black magic, 480i ? have you tried also the usb3hdcap any difference ?

    What exactly has been your last workflow, camcorder <YC>NHX-E2 .I assume you have captured svideo in the NHX-E2 with or without the dvd recorder in pass- through or a external tbc.

    Have you arrived to a final conclusion namely related to the 2 last captures using the dvd recorder as ADC and the NHX-E2 as ADC. Any of them could be an optimal setup ?
    Quote Quote  
  15. Formerly 'vaporeon800' Brad's Avatar
    Join Date
    Apr 2001
    Location
    Vancouver, Canada
    Search PM
    Originally Posted by KarMa View Post
    What are you using to get that scope information? If it's avisynth can you post the code to get all that?
    It's a combination of a few different scopes in Avisynth, using a script I hacked together. I've posted it before, but not the current version, which I've attached. If the input video is any width other than 720, one of the text labels will be misaligned.

    Originally Posted by Skiller View Post
    Actually the only capture hardware I know of where the Proc-Amp settings actually do affect the levels during ADC is the Canopus NX.
    I'm not sure if it's clear, but the NHX-E2 is the PCIe version of the Canopus NX. The VC500's Contrast control recovers clipped brights without adding notable banding, IMO. I assume what it's actually doing is 10-bit A/D -> proc amp -> 8-bit D/D.

    Originally Posted by FLP437 View Post
    What hdmi setting was used for transfer to the black magic, 480i ?
    Ah, well, this is a tougher question to answer than you would expect. Short answer: I would use 480i if I could.

    Long answer: The lowest the DMR-ES25 will go is 480p. This can be reinterlaced to 480i. The Intensity Pro 4K accepts 480p, reinterlacing and letterboxing it to 486i. Now you have to be very careful about reinterlacing because you want to grab all-original fields rather than all-interpolated fields. Which fields the IP4K grabs depends on which frame happens to hit the capture driver at the moment I start the capture. To ensure I'm grabbing originals, I start off the captures with the DVD recorder tuned to an analog TV channel displaying pure noise. This makes it painfully obvious whether it's grabbing original fields, or interpolated garbage. If I started the capture at the wrong time, I just re-try until I get what I want.

    It's annoying, but actually less-so than filling up my HDD with 480p and reinterlacing after the fact.

    have you tried also the usb3hdcap any difference ?
    There is an odd difference; see here.

    What exactly has been your last workflow, camcorder <YC>NHX-E2 .I assume you have captured svideo in the NHX-E2 with or without the dvd recorder in pass- through or a external tbc.
    Direct from camcorder to the card.

    Have you arrived to a final conclusion namely related to the 2 last captures using the dvd recorder as ADC and the NHX-E2 as ADC. Any of them could be an optimal setup ?
    I would not use the NHX-E2 unless I really cared about grabbing those extra NTSC scanlines for some tape, if for no other reason than the Edius program's quirks. At the start and end of playback (when the camcorder switches between blue screen & actual video), and most times there is a "scene cut" on the tape, Edius creates separate "divide" files. There is no way to force it to capture everything in a single segment. Additionally, it sometimes skips frames at these points, and sometimes repeats random frames from earlier in the tape before stabilizing.

    In general, the Panasonic isn't optimal either, because it clips brights (the info on that is in the link above; my response to Skiller). This appears to be a general problem with overexposed video sources, including PAL. Here, that didn't turn out to matter, as it seems to me the player is clipping them before anything else has a chance to.
    Image Attached Files
    Quote Quote  
  16. Member
    Join Date
    Mar 2015
    Location
    Europe
    Search Comp PM
    Interesting, as soon as I have time I will upload some samples using my LG HDD DVD Recorder RH199HS ( accepts firewire /svideo/composite and output almost everything from any of the inputs , Hdmi (720(1440)x576i, 720x576p, 1280x720p, or 1920x1080i ) component I or P , scart RGB, svideo or composite )


    The LG HDD/ DVD recorder is a 2006 device probably one of the best LG dvd recorders I think only sold in Europe and probably Asia with one of the news LSI chips (IC 1101 DMN8653 LSI) and a Philips 7137d a/v decoder . I will try the captures/ transfers with this device from svideo or firewire outputs from a digital8 camcorder playing a video8 tape and will do the transfer via hdmi 576i (PAL) through an startech usb3hdcap to compare with a direct capture from a Ati hd 600 usb or an Osprey 210e
    Quote Quote  
  17. Capturing Memories dellsam34's Avatar
    Join Date
    Jan 2016
    Location
    Member Since 2005, Re-joined in 2016
    Search PM
    Does it have a TBC function?.
    If you are playing an analogue tape with a digital camcorder using the firewire port the output to your DVD recorder is going to be DV format, try to capture using analogue ports.
    Quote Quote  
  18. Member
    Join Date
    Mar 2015
    Location
    Europe
    Search Comp PM
    Yes it as . I sometimes use it instead of the avt 8710 as a svideo pass through. It stabilizes the video and there are no drop frames any more .In terms of characteristics is very similar to the Panasonic DMR-EH65 , however the internal circuitry of both and final results I don’t know.

    Well, use of the camcorder ADC to do the A/D conversion , transfer the DV output to the dvd recorder, transcode internally and after record the hdmi stream is a sort of esoteric workflow more a “proof of concept”. Pal DV is 4.2.0 and svideo is 4.2.2 at the very least I will be loosing in terms of colour sub-sampling . Even so I am interested to see if the dvd recorder is able to improve or not the process.

    However the only workflow with interest will be the camcorder digital8 / svhs deck running analog tape- svideo – Dvd recorder – Hdmi576i – startech usb3hdcap/black magic shuttle/4k – virtualdub – Avi /Huufyuv and analyze results with the ones from established workflow and capture cards .
    Quote Quote  
  19. Member
    Join Date
    Mar 2015
    Location
    Europe
    Search Comp PM
    I made two samples captures

    workflow 1
    Digital8 camcorder sony DCR-TRV238E tbc on, nr off - video8 Pal tape
    LG HDD DVD recorder RH199HS set to hdmi 576i (PAL)
    Startech usb3hdcap

    camcorder->svideo->LG DvD rec -> Hdmi-> usb3hdcap->Vdub -> Huufyuv

    workflow 2
    Digital8 camcorder sony DCR-TRV238E tbc on, nr off- video8 Pal tape
    AVT 8710
    ATi Hd 600 usb

    Camcorder -> svideo-> AVBT-8710-> ATi 600 usb -> Vdub -> Huufyuv

    the video8 tape is a 23/24 years old tape not in a particular good shape due to have been extensively played
    In the ati capture the three frames inserted as been due to the cancorder activation hiccup, this situation didnīt occurred in the LG workflow
    Image Attached Thumbnails Click image for larger version

Name:	Dvd Recorder.jpg
Views:	363
Size:	121.6 KB
ID:	35646  

    Click image for larger version

Name:	Ati .jpg
Views:	553
Size:	202.7 KB
ID:	35647  

    Image Attached Files
    Quote Quote  
  20. There's a fair amount of horizontal jitter in both k23 caps.
    Quote Quote  
  21. Member
    Join Date
    Mar 2015
    Location
    Europe
    Search Comp PM
    Ok, can the horizontal jitter be tracking cancorder issues?

    There is any evidence of benefit related to chroma , noise ,.. due to dvd recorder filter function in the specific workflow?
    Last edited by FLP437; 12th Feb 2016 at 20:55.
    Quote Quote  
  22. Member Skiller's Avatar
    Join Date
    Oct 2013
    Location
    Germany
    Search PM
    Yeah, there's still jitter in both samples but since there is no perfect static part in it (like a date code for example), the right black border is my only orientation in terms of jitter.

    But what's overwhelming here is: both differ greatly in contrast and color (ATI600 cap has a green tint – I suspect the AVT 8710 TBC is the cause of that).
    Both caps have banding issues which the histogram reveals (AVT/ATI600 cap is worse here).

    Click image for larger version

Name:	LG-Startech_banding.PNG
Views:	557
Size:	75.9 KB
ID:	35648 Click image for larger version

Name:	ATI600_banding.PNG
Views:	566
Size:	73.7 KB
ID:	35650
    Last edited by Skiller; 13th Feb 2016 at 05:44.
    Quote Quote  
  23. Originally Posted by FLP437 View Post
    Ok, can the horizontal jitter be tracking cancorder issues?
    The horizontal jitter is a result of the heads of the VCR spinning faster and slower with time. This is common to all consumer analog video tape formats. You need a line TBC to reduce it.

    Originally Posted by FLP437 View Post
    There is any evidence of benefit related to chroma , noise ,.. due to dvd recorder filter function in the specific workflow?
    The ATI cap has less contrast, less saturation, and more noise. But you can probably adjust that with the proc amp controls. The chroma channels are 1 or 2 units higher too. That could be adjusted in post without any loss (ColorYUV(off_u=1, off_v=1) but it's not clear which cap is correct. It also has some mild vertical stripes in the luma channel (most visible in the sky).
    Quote Quote  
  24. Member
    Join Date
    Mar 2015
    Location
    Europe
    Search Comp PM
    I will try to put samples using a stable svideo signal with test patterns from a dvd player and make an alternative vhs/svhs capture using a jvc svhs set to see if itīs easier to identify if this alternative workflow could have any benefit , namely in reduction Chroma noise, improve color and better levels record adjustment and could in this case be a viable alternative to the conventional workflow.

    The idea is to see if the DMN8653 LSI and Philips 7137d a/v decoder integrated in the dvd recorder could give any advantage in terms of filtering and as an ADC. Eventually JVC and Panasonic units could have better implementations in terms of circuitry and algorithms but if this one prove to work probably we only get best results with better dvd recorders if itīs the case.
    Quote Quote  
  25. Formerly 'vaporeon800' Brad's Avatar
    Join Date
    Apr 2001
    Location
    Vancouver, Canada
    Search PM
    Please post additional samples in a new thread directed toward such a comparison, as this one was meant to be DV vs lossless.

    To see whether that LG RH199HS has any sort of line TBC, you would need to use a source that hasn't been TBC'd already. And in my comparisons, the DCR-TRV340 seems to defeat the DMR-ES25's TBC even when its own TBC is supposedly "Off". I guess that's related to its output always being digitized.
    Last edited by Brad; 14th Feb 2016 at 12:46.
    Quote Quote  
  26. Member
    Join Date
    Mar 2015
    Location
    Europe
    Search Comp PM
    Sorry , it was not my intention to hijack your thread I thought the matter was somewhat related, I will post the new samples on a new thread "Conventional analog capture workflow vs alternative methods - comparison"
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!