View Single Post
Old 24th March 2009, 22:57   #777  |  Link
MrC
AVStoDVD Dev
 
MrC's Avatar
 
Join Date: Apr 2006
Location: Italy
Posts: 1,302
@calmart

a full "joining" script could be like this (adapt it to your needs):

Code:
Import("C:\Programmi\AV\AVStoDVD\Lib\A2DSource.avsi")

Video1 = A2DVideoSource("D:\Film1.avi", CacheFolder = "D:\Temp")
Video2 = A2DVideoSource("D:\Film2.avi", CacheFolder = "D:\Temp")
Video = Video1 + Video2
Video = Video.ConvertToYV12
Video = Video.Lanczos4Resize(720,576)

Audio1 = A2DAudioSource("D:\Film1.avi", CacheFolder = "D:\Temp")
Audio2 = A2DAudioSource("D:\Film2.avi", CacheFolder = "D:\Temp")
Audio = Audio1 + Audio2
Audio = Audio.SSRC(48000)

AudioDub(Video, Audio)
BTW, I agree with MysticE that you should join AVIs *before* going thru AVStoDVD.

@Flux

I made no tweaks to improve HCenc handling of multicore CPU, just added the command *SMP which turns on multithread encoding in HCenc.
If your 4core is not fully used by HCenc, your complains should be addressed to HCenc.



Bye
__________________
MrC

AVStoDVD Homepage
AVStoDVD @ Doom9 Forum
MrC is offline   Reply With Quote