Go Back    Forum > Digital Video > Video Project Help > Capture, Record, Transfer

Reply
 
LinkBack Thread Tools
  #1  
02-12-2019, 12:16 PM
ELinder ELinder is offline
Unconfirmed User
 
Join Date: Oct 2018
Posts: 197
Thanked 33 Times in 27 Posts
When I capture with the VCR line TBC on the scene cuts are nice, moving from one frame to the next. However, when I capture with the VCR line TBC off (for video stabilization reasons) even going from VCR to EC15 and then to full frame TBC, I get a frame of combined fields from the current and next angle resulting in a noisy flash when playing. Is there a way to avoid this?

Erich


Attached Files
File Type: avi TBC-off-angle-cut.avi (70.86 MB, 9 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  
02-12-2019, 04:14 PM
ELinder ELinder is offline
Unconfirmed User
 
Join Date: Oct 2018
Posts: 197
Thanked 33 Times in 27 Posts
Same scene, same hardware, but with the VCR built-in TBC active and clean frames on each side of a scene cut. I can't always capture with it on due to other artifacts introduced.

Erich


Attached Files
File Type: avi TBC-on-angle-cut.avi (73.33 MB, 2 downloads)
Reply With Quote
  #3  
01-31-2020, 08:09 AM
msgohan msgohan is offline
Free Member
 
Join Date: Feb 2011
Location: Vancouver, Canada
Posts: 1,323
Thanked 334 Times in 276 Posts
Almost a year later, I accidentally found this thread. The issue is easily fixed with one line in Avisynth. Some sort of field order shift (or field dominance reversal?) -- I'm a bit too tired to fully think it through and explain it. Similar to the shift in the thread " http://www.digitalfaq.com/forum/vide...html#post64266 " but not exactly.

All you need:
Code:
SeparateFields().Trim(1,0).Weave()
To actually perfectly align the two samples spatially and temporally:
Code:
AVISource("TBC-off-angle-cut.avi").AssumeTFF()
SeparateFields()
Trim(1,0)
Weave()
Subtitle("-TBC")
V1 = last

AVISource("TBC-on-angle-cut.avi").AssumeTFF()
Trim(1,0)
SeparateFields()
ConvertToYV24().AddBorders(3,0,0,0,color=color_white).Crop(0,0,-3,-0).ConvertToYUY2() # need 4:4:4 to do odd-numbered horizontal crops
Even = SelectEven().Crop(0,1,-0,-0).AddBorders(0,0,0,1,color=color_white)
Odd = SelectOdd()
Interleave(Even,Odd)
AssumeBFF().Weave()
Subtitle("+TBC")
V2 = last

Interleave(V1,V2)
The VCR's TBC/NR smears detail a bit. If you open these in tabs and flip between them you should see it.
ELinder -TBC.png
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.


Reply With Quote
The following users thank msgohan for this useful post: sanlyn (01-31-2020)
  #4  
01-31-2020, 08:45 AM
ELinder ELinder is offline
Unconfirmed User
 
Join Date: Oct 2018
Posts: 197
Thanked 33 Times in 27 Posts
Thanks, I'll take a closer look at what you did, although this turned out to not really be a problem other than for that one case that I posted.

Erich
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Best way to restore individual scenes in capture? stevevid Restore, Filter, Improve Quality 9 09-15-2018 12:55 AM
Cleaning up VHS capture for freeze frames? ehbowen Restore, Filter, Improve Quality 5 06-12-2018 06:14 AM
VHS capture either skip or add frames? crissrudd4554 Capture, Record, Transfer 10 04-11-2018 07:43 PM
Frames on VHS capture are hopping? zamme Restore, Filter, Improve Quality 7 02-18-2015 07:53 AM
Blank out scenes help manthing Edit Video, Audio 3 06-13-2007 03:21 AM

Thread Tools



 
All times are GMT -5. The time now is 08:49 PM