Hello,
Some days ago I bought a KISS DP-558 Hd recorder/dvdplayer.
It works great so far.I have tried with most of the KVCD/KDVD resolutions,and all plays fine.The only thing that troubles is AutoGK
produced XviD,but thats another story.
The recorder produces one .vob file for each tv show you record.
The audio is AC3 2ch 192kbs.
So with the ftp connection I transfer my recorded shows to the pc,
uses DGIndex 1.2.1 to produce .d2v file for avs script.
The demuxed ac3 stream always reports a delay of 152ms.
When I record tv shows,the recordings starts one or two minutes before,
and ends two minutes after the shows.This stuff I want to cut with
trim() command in the script,and to get things done in a "easy" way
with audio in sync,and cutted on the right places,I want to take the audio
through the script as well.
So I found two methods of doing this,one with ac3source() and another
with directshowsource.
I read somewhere that ac3source() downmixes incorrectly so its better
to use directshowsource() for audio import.
I made two tests yesterday,and both methods seems to play fine .
I used TMPGnc with toolame do to the encoding.
Any one of you have any ideas whats the "best" one to use??
Script with DirectShowSource:
Quote:
LoadPlugin("C:\Programfiles\MovieStacker\Filters\D GDecode.dll")
LoadPlugin("C:\Programfiles\MovieStacker\Filters\U ndot.dll")
Video=Mpeg2Source("C:\Documents and Settings\Eier\Skrivebord\codemercury.d2v")
Audio=DelayAudio(DirectShowSource("C:\Documents and Settings\Eier\Skrivebord\codemercury.ac3"),0.152)
AudioDub(Video,Audio)
AssumeTFF()
bob(0,0.5)
Crop(8,88,704,400)
Undot()
AddBorders(8,88,8,88 )
ConvertToRGB24() # For TMPGEnc or VFAPI
SeparateFields()
SelectEvery(4,1,2) # SelectEvery(4,0,3) for bottom field first video
Weave()
#Trim(0,6000).FadeOut(150)
#info()
|
Script With AC3Source:
Quote:
LoadPlugin("C:\Programfiles\MovieStacker\Filters\D GDecode.dll")
LoadPlugin("C:\Programfiles\MovieStacker\Filters\A C3source.dll")
Mpeg2Source("C:\Documents and Settings\Eier\Skrivebord\disney.d2v")
AC3Source("C:\Documents and Settings\Eier\Skrivebord\disney.ac3")
DelayAudio(0.152)
AssumeTFF()
bob(0,0.5)
ConvertToRGB24() # For TMPGEnc or VFAPI
SeparateFields()
SelectEvery(4,1,2) # SelectEvery(4,0,3) for bottom field first video
Weave()
Trim(0,6000)
|
Also look at the delay audio stuff in the scripts,I think its correct,
,but im not sure
-------------------------
viking