blazer003
26th January 2010, 03:56
I'm thinking this may not be possible, but I'll give it a shot:
I have AVCHD footage that I've processed with DGIndexNV from nueron2. I also am redubbing the audio, so my script looks like this:
LoadPlugin("C:\Program Files\DG Software\dgavcdec109\DGDecodeNV.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\NicAudio.dll")
DGSource("00006.dga")
video=DGSource("00006.dga")
AssumeTFF()
Telecide()
Decimate(cycle=5)
audio=NicAC3Source("00001 PID 1100 2_0ch 48KHz 192Kbps DELAY 0ms.ac3")
AudioDub (video, audio)
So far so good.
This is footage from a Panasonic GH1, so it is 24p footage in a 60i wrapper. I open up the avs file with VirtualDub, and I have 3 progressive frames followed by 2 interlaced, or 3:2 Telecine (or Pulldown), just like I would expect. But I want to get rid of that.
So now I want to load up the decomb plugin by neuron2.
At first I tried this next script and it doesn't work. I assume it's because video is being defined by DGSource("00006.dga") and the decomb plugin and it's parameters don't know to look to "video" for the stream.
LoadPlugin("C:\Program Files\DG Software\dgavcdec109\DGDecodeNV.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\NicAudio.dll")
video=DGSource("00006.dga")
AssumeTFF()
Telecide()
Decimate(cycle=5)
audio=NicAC3Source("00001 PID 1100 2_0ch 48KHz 192Kbps DELAY 0ms.ac3")
AudioDub (video, audio)
If I set up this next script like this, the video does the reverse telecine and pulldown, but there's no audio.
LoadPlugin("C:\Program Files\DG Software\dgavcdec109\DGDecodeNV.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb.dll")
DGSource("00006.dga")
AssumeTFF()
Telecide(guide=1,post=0,show=true)
Decimate()
So my questions are:
1. How would I set this up so that the decomb plugins also look to "video", or AudioDub looks to the result of the decombing process when it goes to rejoin the audio and video. I'm guessing it's just some syntax of parentheses or quotes.
2. I'm guessing that after decimating frames from the video, the audio would be out of sync even if I did get this to work (but I'd still like to know how to do it for future reference). Is there a way inside Avisynth to adjust the audio to fit the new framerate?
If you need any more information, or for me to clarify anything please let me know
I have AVCHD footage that I've processed with DGIndexNV from nueron2. I also am redubbing the audio, so my script looks like this:
LoadPlugin("C:\Program Files\DG Software\dgavcdec109\DGDecodeNV.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\NicAudio.dll")
DGSource("00006.dga")
video=DGSource("00006.dga")
AssumeTFF()
Telecide()
Decimate(cycle=5)
audio=NicAC3Source("00001 PID 1100 2_0ch 48KHz 192Kbps DELAY 0ms.ac3")
AudioDub (video, audio)
So far so good.
This is footage from a Panasonic GH1, so it is 24p footage in a 60i wrapper. I open up the avs file with VirtualDub, and I have 3 progressive frames followed by 2 interlaced, or 3:2 Telecine (or Pulldown), just like I would expect. But I want to get rid of that.
So now I want to load up the decomb plugin by neuron2.
At first I tried this next script and it doesn't work. I assume it's because video is being defined by DGSource("00006.dga") and the decomb plugin and it's parameters don't know to look to "video" for the stream.
LoadPlugin("C:\Program Files\DG Software\dgavcdec109\DGDecodeNV.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\NicAudio.dll")
video=DGSource("00006.dga")
AssumeTFF()
Telecide()
Decimate(cycle=5)
audio=NicAC3Source("00001 PID 1100 2_0ch 48KHz 192Kbps DELAY 0ms.ac3")
AudioDub (video, audio)
If I set up this next script like this, the video does the reverse telecine and pulldown, but there's no audio.
LoadPlugin("C:\Program Files\DG Software\dgavcdec109\DGDecodeNV.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb.dll")
DGSource("00006.dga")
AssumeTFF()
Telecide(guide=1,post=0,show=true)
Decimate()
So my questions are:
1. How would I set this up so that the decomb plugins also look to "video", or AudioDub looks to the result of the decombing process when it goes to rejoin the audio and video. I'm guessing it's just some syntax of parentheses or quotes.
2. I'm guessing that after decimating frames from the video, the audio would be out of sync even if I did get this to work (but I'd still like to know how to do it for future reference). Is there a way inside Avisynth to adjust the audio to fit the new framerate?
If you need any more information, or for me to clarify anything please let me know