View Full Version : Right commands order


AlexeyS
30th August 2005, 23:49
I need to add audio to my movie, change fps and resize. What is right commands order?

When I use this, it seems ChangeFPS doesn't work or audio converts too (streches):
a = MPEG2Source("d:\movie.d2v")
b = wavsource("d:\sound.wav")
audiodub(a,b)
LanczosResize(512,384,0,0)
ChangeFPS(23.970)

hartford
31st August 2005, 01:56
No guarantee, try


a = MPEG2Source("d:\movie.d2v").AssumeFPS(23.970)
b = wavsource("d:\sound.wav")
audiodub(a,b)
LanczosResize(512,384,0,0)

stickboy
31st August 2005, 06:13
I need to add audio to my movie, change fps and resize. What is right commands order?

When I use this, it seems ChangeFPS doesn't work or audio converts too (streches)ChangeFPS should never affect audio.

Exactly what happens?