#1  
09-01-2021, 09:45 PM
thestarswitcher thestarswitcher is offline
Free Member
 
Join Date: Dec 2017
Posts: 95
Thanked 5 Times in 5 Posts
So fairly recently, I received a new capture card (courtesy of LordSmurf ) to handle PAL captures more efficiently over my existing Dazzle. Upon analyzing the captures, I'm noticing a variation in color noise present on each of the captures. I can't tell if the new card is actually *losing* detail or retaining it. I noticed the black range has increased, but I don't know if it's expanded to illegal values.

Of course, showing sample clips are better than any picture can. Please let me know what you guys think, before I proceed with capturing in full!

JVC HR-S9600EU->Datavideo TBC-1000->Dazzle DVC100:
https://drive.google.com/file/d/1djQ...ew?usp=sharing

JVC HR-S9600EU->Datavideo TBC-1000->Pinnacle 710-USB:
https://drive.google.com/file/d/1oPc...ew?usp=sharing

JVC HR-S9600EU->Pinnacle 710-USB:
https://drive.google.com/file/d/1SeA...ew?usp=sharing

Thanks guys!!


Attached Images
File Type: png Dazzle.png (662.7 KB, 52 downloads)
File Type: png Pinnacle.png (628.1 KB, 52 downloads)
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Ads / Sponsors
 
Join Date: ∞
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
09-01-2021, 10:22 PM
lordsmurf's Avatar
lordsmurf lordsmurf is online now
Site Staff | Video
 
Join Date: Dec 2002
Posts: 13,508
Thanked 2,449 Times in 2,081 Posts
You also need a sample that shows highlights.

The Dazzle is mostly brighter, and washing out shadow details and color. That's expected.

About 40 seconds in on the Dazzle cap, the scene with the young tug, shows jailbar noise in the capture. That's not present on the Pinnacles.

I also think the Dazzle is a tiny % softer. So there's resizing in-chip, and it may be 640x480 native capture to 720x480 expanded capture.

The Dazzle isn't as bad as the Easycap, but it's not clean, color inaccurate, too bright. If you drew a line in the sand, bad cards vs. not-bad cards, the Dazzle would be right on the edge in not-bad territory. It's far from suggested, but it's not on the avoid list.

Neither card captures illegal values like ATI AIW can.

With this source, it may seem like nitpicking. But it gets far worse, bigger differences, with different sources.

- Did my advice help you? Then become a Premium Member and support this site.
- For sale in the marketplace: TBCs, workflows, capture cards, VCRs
Reply With Quote
The following users thank lordsmurf for this useful post: thestarswitcher (09-01-2021)
  #3  
09-01-2021, 10:30 PM
thestarswitcher thestarswitcher is offline
Free Member
 
Join Date: Dec 2017
Posts: 95
Thanked 5 Times in 5 Posts
Thank you so much for the fast response LordSmurf!! I did capture a little bit of the daylight scenes, which I'll attach here. I figured the night shots would be able to tell more, but it definitely helps to analyze both sets of lighting. Both the following are JVC HR-S9600EU->Datavideo TBC-1000. The Dazzle audio was captured Line In, the Pinnacle was direct into card.

Dazzle:
https://drive.google.com/file/d/1dKF...ew?usp=sharing

Pinnacle:
https://drive.google.com/file/d/10pH...ew?usp=sharing

<EDIT>: I noticed in your reply, you were talking in terms of 480- these are PAL 576i captures.
Reply With Quote
  #4  
09-02-2021, 05:50 AM
lollo2 lollo2 is offline
Free Member
 
Join Date: Mar 2013
Location: Italy
Posts: 673
Thanked 189 Times in 163 Posts
A quick analysis on my side

Dazzle is brighter, both histograms are ok for the daylight:
histo.jpg

Reducing a little bit Dazzle brightness to better compare honestly I see no difference in term of details and quality of the capture;

a video comparison compressed to x264 here:
You must be logged in to view this content; either login or register for the forum. The attached screen shots, before/after images, photos and graphics are created/posted for the benefit of site members. And you are invited to join our digital media community.

compareDazzle_710.mp4

an image comparison here (use fullscreen and zoom options): https://imgsli.com/NjkyNjY
compare.jpg

Concerning the night shot the blacks are crushed before reaching Y=16 for both captures, I ignore why:
You must be logged in to view this content; either login or register for the forum. The attached screen shots, before/after images, photos and graphics are created/posted for the benefit of site members. And you are invited to join our digital media community.


For this tape/video, in my opinion Dazzle and 710 are equivalent, but my eyes are probably not as skilled as lordsmurf. Other experienced users in capture comparison (msgohan, latreche34, Bogilein) may also help you in the judgement.

Attached the script I used to compare (I do not have Lagarith codec installed). If you use it with VirtualDub you'll have better elements than the compressed mp4 attached file, and you can have your own conclusions.
Code:
video_dir_1="C:\Users\giuse\Desktop\"
video_1="VCR-TBC-Dazzle Daylight.avi"
#video_1="VCR-TBC-Dazzle.avi"

video_dir_2="C:\Users\giuse\Desktop\"
video_2="VCR-TBC-710Card Daylight.avi"
#video_2="VCR-TBC-710Card.avi"

# FFmpegSource
loadPlugin("C:\Users\giuse\Documents\VideoSoft\MPEG\AviSynth\extFilters\ffms2_87bae19\x86\ffms2.dll")

v1=FFmpegSource2(video_dir_1+video_1, atrack=-1).trim(9,0).Tweak(bright=-10) #.Spline36Resize(768,576)
v2=AviSource(video_dir_2+video_2).convertToYV16() #.Spline36Resize(768,576) #.trim(7,0)

#stackhorizontal(\
#subtitle(v1.crop(16,16,-24,-16).histogram("levels"),video_1,size=20,align=2),\
#subtitle(v2.crop(16,16,-24,-16).histogram("levels"),video_2,size=20,align=2)\
#)

f_stackhorizontal(v1,v2,video_1,video_2)
#f_interleave(v1,v2,video_1,video_2)
#f_Subtract_Compare(v1,v2,video_1,video_2)


function f_stackhorizontal(clip c1, clip c2, string t1, string t2)
{
stackhorizontal(\
subtitle(c1,t1,size=20,align=2),\
subtitle(c2,t2,size=20,align=2)\
)
}

function f_interleave(clip c1, clip c2, string t1, string t2)
{
interleave(\
subtitle(c1,t1,size=20,align=2),\
subtitle(c2,t2,size=20,align=2)\
)
}

function f_Subtract_Compare(clip c1, clip c2, string t1, string t2)
{
c3=Subtract(c1, c2).Levels(65, 1, 255-64, 0, 255, coring=false)
c4=Compare(c1, c2)

stackvertical(\
stackhorizontal(\
subtitle(c1,t1,size=20,align=2),\
subtitle(c2,t2,size=20,align=2)\
),\
stackhorizontal(\
subtitle(c3,"subtract"+" "+t1+" "+t2,size=20,align=2),\
subtitle(c4,"compare"+" "+t1+" "+t2,size=20,align=2)\
)\
)
}


Reply With Quote
  #5  
09-02-2021, 12:29 PM
thestarswitcher thestarswitcher is offline
Free Member
 
Join Date: Dec 2017
Posts: 95
Thanked 5 Times in 5 Posts
This is an interesting analysis Lollo! It looks like the 710-USB is giving a more "pure analog" output compared to the Dazzle. Near Ten Cents' nameplate in the pic you sent, you can see a lot of the digital artifacts smoothed out. Maybe it's just me?

What's everyone else's thoughts?


Attached Images
File Type: png dazzy.png (22.7 KB, 18 downloads)
File Type: png pinacle.png (22.5 KB, 20 downloads)
Reply With Quote
  #6  
09-02-2021, 12:42 PM
lollo2 lollo2 is offline
Free Member
 
Join Date: Mar 2013
Location: Italy
Posts: 673
Thanked 189 Times in 163 Posts
Quote:
It looks like the 710-USB is giving a more "pure analog" output compared to the Dazzle.
I do not have that impression. They are almost identical, I could not choose one beeing better. Maybe it's just me

Quote:
Near Ten Cents' nameplate in the pic you sent, you can see a lot of the digital artifacts smoothed out.
They look the same to me, the noise is differently distibuted, as in many other areas of the picture. I suspect that a temporal denoise in post-processing will make them even more similar.

You can enable the "interleave" option in the avs script and see how in the different frames the video changes (very very little) and compare better than using a side-by-side. I hope it helps...

Edit: maybe you can compare using a much better video, with live action and more details, as suggested by lordsmurf. It is possible that this sample "tends" to flat the differences (if there is any difference between the cards).
Reply With Quote
  #7  
09-02-2021, 01:38 PM
hodgey hodgey is offline
Free Member
 
Join Date: Dec 2017
Location: Norway
Posts: 1,680
Thanked 447 Times in 384 Posts
I believe they both typically used closely related philips video decoder ics, so the differences are mainly in drivers and usb bridge chips.
Reply With Quote
The following users thank hodgey for this useful post: lollo2 (09-02-2021)
Reply




Tags
capture, comparisons, dazzle, pinnacle 710-usb

Similar Threads
Thread Thread Starter Forum Replies Last Post
Dazzle DVD Recorder HD vs. Hauppauge USB-Live2? Delta Capture, Record, Transfer 12 04-28-2021 07:44 PM
For sale: Pinnacle/Dazzle 500-USB card [SOLD] lordsmurf Marketplace 3 08-24-2019 10:52 PM
Have Dazzle DVD recorder - but is it junk? AJS3 Capture, Record, Transfer 3 11-24-2014 09:30 AM
Capture card advice - Dazzle vs ATI 600? MMM3 Capture, Record, Transfer 4 07-26-2014 07:23 AM

Thread Tools



 
All times are GMT -5. The time now is 02:58 AM