PDA

View Full Version : Any way to add music in a range (trim points)?


bookman761
28th December 2002, 00:32
Hi everyone,

I have edited my avi file using trim points & it looks great. Now I want to add some background music in certain sections. Any easy methods using AVISynth?

Thanks for the feedback.
Frank

Belgabor
28th December 2002, 00:35
you could try something like this:


src=AVISource(...)

part1vid=src.Trim(...,...)
part1aud=WAVSource(...)

.
.
.

AudioDub(part1vid,part1aud)++AudioDub(part2vid,part2aud)++...