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

Reply
 
LinkBack Thread Tools
  #1  
12-11-2014, 10:27 AM
jriker1 jriker1 is offline
Free Member
 
Join Date: Oct 2014
Posts: 68
Thanked 0 Times in 0 Posts
I have rarely, if at all, seen the point of a frame based TBC since putting the Panasonic ES15 in line with my video captures. I do have some footage that still seems to bounce up and down vertically, almost looking like a bouncing camcorder but not really the case, plus occasional screen flicker. From what I know about frame TBC's, I assume it would not fix this problem? I tried my TBC-1000 with the bouncing but didn't seem to make a positive impact, but don't have it with me right now to evaluate the flickering. The flickering looks almost like a singular bounce in the video from time to time. Are there AVISynth tools that can fix the vertical bouncing such as DePanStabilize post capture? Or maybe a Virtualdub filter like: http://guthspot.se/video/deshaker.htm

-- merged --

OK so I have tested three different deflicker methods and impressed overall as the flickering/bouncing can be extensive in the footage. This isn't camcorder bouncing but bad tape:

VideoFred in AVISynth:
Code:
# stabilize by VideoFred (but without deflicker)
requestlinear()
o=last
maxstabH=20 maxstabV=20 # maximum values for the stabiliser (in pixels) - 20 is a good start value
est_left=40 est_top=40 est_right=40 est_bottom=40 est_cont=1.4 #crop and contast values for special Estimate clip
stab_reference= o.crop(est_left,est_top,-est_right,-est_bottom).tweak(cont=est_cont).MT_binarize(threshold=80).greyscale().invert()
mdata=DePanEstimate(stab_reference,trust=1.0,dxmax=maxstabH,dymax=maxstabV)
DePanStabilize(o,data=mdata,cutoff=0.5,dxmax=maxstabH,dymax=maxstabV,method=0,mirror=15)#.deflicker()
This is probably the least effective. Does more of a slow vertical screen movement to try and minimize bounce. Tape head artifacts at the top of the tape go down about 3/4 of an inch on the screen when it does this. So the end result, instead of jerky bouncing, is more smooth bouncing.

DePanStabilize in AVISynth:
Code:
AssumeTFF()
QTGMC(Preset="slow")
mdata= DePanEstimate(trust=1.0,dxmax=4,dymax=20,range=1,pixaspect=1)
DePanStabilize(data=mdata,cutoff=0.2,dxmax=4,dymax=12,method=1,mirror=0,pixaspect=1)
This produces great results. Almost completely eliminates the flicker/bounce in the footage.

VirtualDub Deflicker:
No code here, this is the plugin for VirtualDub. Requires two separate passes to use. This plugin to me seems to do slightly less stabilization than DePanStabilize on really bad footage. With DePanStabilize footage that moves around a lot is rock solid, Deflicker still has some movement.

Further testing will be required this weekend to see if DePan or Deflicker are better than the other overall for my situation. My capture computer I'm testing this on can't seem to handle a StackHorizontal AVISynth script and either crashes in WMP or is jerky in VirtualDub so kind of defeats the ability to truly see a side by side. Mostly a slow hard drive issue from what I can see running two vids at once.

JR
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-18-2015, 08:16 AM
lordsmurf's Avatar
lordsmurf lordsmurf is offline
Site Staff | Video
 
Join Date: Dec 2002
Posts: 13,654
Thanked 2,461 Times in 2,093 Posts
Quote:
I have rarely, if at all, seen the point of a frame based TBC since putting the Panasonic ES15 in line with my video captures.
Then you're lucky. Because dropped frames still happen without the external TBC. The ES doesn't correct that.

Image bouncing (non-technical layman "jitter") is sometimes the side effect of a TBC. The not-really-TBC-but-still-TBC in the ES15 could cause this. Does it exist without that in the workflow? Not that I'm suggesting removing it, but simply to understand where the error originates.

stab() and my various stabmod() filters can often correct most/all it. But it really depends on the footage.

There are also methods of deinterlace + antialiasing that can correct this as well. But that's generally reserved for more serious issues.

- 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
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Filter for VHS frame bounce? premiumcapture Restore, Filter, Improve Quality 3 01-04-2015 02:59 PM
Strange flicker from camcorder? noelyoung Video Hardware Repair 4 01-07-2013 10:45 PM
Blackmagic Intensity Pro Flicker Problem P4RL Capture, Record, Transfer 6 05-25-2012 11:05 PM
Black Magic intensity Pro Flicker Problem carlthulhu Capture, Record, Transfer 5 12-09-2011 05:12 PM
PAL / NTSC conversion flicker? CaZeek Encode, Convert for discs 10 12-03-2004 08:14 AM




 
All times are GMT -5. The time now is 10:51 PM