I'm working on a live action vid (sacrilege!) and I was doing fine with VirtualDub for getting my clips. Suddenly, in the middle of a multi-disc season of a TV series, I encountered some weirdness with interlacing. I double-checked to make sure I was choosing the correct field (I was), but the problem is this: my de-interlacing doesn't seem to be de-interlacing *enough*. Some parts seem okay, and then BAM. I get a huge interlaced section. And then more weirdness related to that---if I try to back up to set the start point for a clip, the video feed will go all wacky and start inserting interlaced frames that aren't even in the scene I'm trying to get (they're before or after the scene).
Has anybody run into this before, and if you have, what can I do to fix it? Or at least smooth it over a bit?
Live action footage & ripping question
- CorpseGoddess
- Joined: Mon Jan 30, 2006 9:23 pm
- Status: HEY GUYS
- Location: Vancouver, BC
- mirkosp
- The Absolute Mudman
- Joined: Mon Apr 24, 2006 6:24 am
- Status: (」・ワ・)」(⊃・ワ・)⊃
- Location: Gallarate (VA), Italy
- Contact:
Re: Live action footage & ripping question
Could you post how your script looks like now? I'm somewhat confused by your description. I think it's vfr you're dealing with, but I would like to make sure... If you could also post short video samples, those could help too.
- CorpseGoddess
- Joined: Mon Jan 30, 2006 9:23 pm
- Status: HEY GUYS
- Location: Vancouver, BC
Re: Live action footage & ripping question
mpeg2source("C:\Documents and Settings\Owner\My Documents\My
Videos\SPN\Season4\S4D3\S4D3.d2v")
Telecide(order=1,guide=1,show=false) #1 for Top Field First or Telecide(order=0) for Bottom.
Decimate(cycle=5, mode=2)
ConvertToYV12()
AssumeFPS(29.97)
That's the script I'm currently using---super simple. Was working like a charm on all the other discs, and then I got to these problem ones and then problems. I'll take a look and see if any of the clips I got adequately shows what I'm trying to convey---if any do, I'll upload and link them.
Videos\SPN\Season4\S4D3\S4D3.d2v")
Telecide(order=1,guide=1,show=false) #1 for Top Field First or Telecide(order=0) for Bottom.
Decimate(cycle=5, mode=2)
ConvertToYV12()
AssumeFPS(29.97)
That's the script I'm currently using---super simple. Was working like a charm on all the other discs, and then I got to these problem ones and then problems. I'll take a look and see if any of the clips I got adequately shows what I'm trying to convey---if any do, I'll upload and link them.
- mirkosp
- The Absolute Mudman
- Joined: Mon Apr 24, 2006 6:24 am
- Status: (」・ワ・)」(⊃・ワ・)⊃
- Location: Gallarate (VA), Italy
- Contact:
Re: Live action footage & ripping question
Old decomb is pretty bad (often leaves mouth combs and such), you should switch to TIVTC for your inverse telecine needs.
That said, I think that this does confirms my suspicion: this disc probably has a 60i section (the one that is giving you issues, in fact), so every field is unique and obviously decomb cannot field match (since it's not telecined). Your best bet is using a filter like tdeint or perhaps doing bob with a filter like QTGMC and then doing selectodd() or selecteven(). However, in the remote case it is NOT a 60i sequence, but an actual telecine, chances are that decomb is just having a hard time finding the matches, so again switching to tivtc could help in this case.
The converttoyv12() line there is useless. Don't misunderstand, it's not harmful nor anything, it's just that it's doing nothing since your source already is YV12.
Also, I'm going to guess the assumefps(29.97) at the end there is for technical requirements (as in, con where you're sending to or whatever requires 29.97 fps)?
That said, I think that this does confirms my suspicion: this disc probably has a 60i section (the one that is giving you issues, in fact), so every field is unique and obviously decomb cannot field match (since it's not telecined). Your best bet is using a filter like tdeint or perhaps doing bob with a filter like QTGMC and then doing selectodd() or selecteven(). However, in the remote case it is NOT a 60i sequence, but an actual telecine, chances are that decomb is just having a hard time finding the matches, so again switching to tivtc could help in this case.
The converttoyv12() line there is useless. Don't misunderstand, it's not harmful nor anything, it's just that it's doing nothing since your source already is YV12.
Also, I'm going to guess the assumefps(29.97) at the end there is for technical requirements (as in, con where you're sending to or whatever requires 29.97 fps)?
- CorpseGoddess
- Joined: Mon Jan 30, 2006 9:23 pm
- Status: HEY GUYS
- Location: Vancouver, BC
Re: Live action footage & ripping question
Thanks. The AMVapp I'm using is also woefully out of date, so it's time for me to update that. I was resisting (old dog, new tricks, set in my ways, blah blah blah) so this was a good kick in the pants to do that.mirkosp wrote:Old decomb is pretty bad (often leaves mouth combs and such), you should switch to TIVTC for your inverse telecine needs.
That said, I think that this does confirms my suspicion: this disc probably has a 60i section (the one that is giving you issues, in fact), so every field is unique and obviously decomb cannot field match (since it's not telecined). Your best bet is using a filter like tdeint or perhaps doing bob with a filter like QTGMC and then doing selectodd() or selecteven(). However, in the remote case it is NOT a 60i sequence, but an actual telecine, chances are that decomb is just having a hard time finding the matches, so again switching to tivtc could help in this case.
The converttoyv12() line there is useless. Don't misunderstand, it's not harmful nor anything, it's just that it's doing nothing since your source already is YV12.
Also, I'm going to guess the assumefps(29.97) at the end there is for technical requirements (as in, con where you're sending to or whatever requires 29.97 fps)?
I appreciate the help. I'll let you know if that does the trick.
And yeah, the yv12 I always just keep there as an "in case", left over from the few times there was one anime that wasn't and I didn't want to throw it in. Laziness, but harmless laziness.
Same thing with the fps--sometimes I just keep default things in and hatch them out later. Lazy Old Dog that I am.
-
- Joined: Tue Dec 25, 2007 8:26 am
- Status: better than you
- Contact:
Re: Live action footage & ripping question
Why are ConvertToYV12 or 29.970fps defaults? They're both ridiculous.