Log in

View Full Version : HELP LIKE add frame


jd1990
11th May 2008, 21:43
help as insert blank frames at end of video a video vob, avi, mkv....
HELP PLEASE

unskinnyboy
11th May 2008, 22:39
Look here (http://www.say-it-in-english.com/Lessons.html).

jeffy
12th May 2008, 00:14
@unskinnyboy:

Since we do not know if English is their native language, then:

(Hmm..) Could someone please help me to insert the blank frames at the end of a video file. The containers I am interested in are vob, avi, mkv.

45tripp
12th May 2008, 00:43
well, something like this for vob,
after running through dgindex:

LoadPlugin("C:\Program Files\AviSynth 2.5\dgdecode.dll")
a = mpeg2Source("VideoFile.d2v").lanczos4resize(448,336)
b = wavsource("audio.wav")
c = audiodub(a,b)
d= c.BlankClip(length=1440)
e=c+d
return(e)

with avi,
it's easier with a call of avisource()
with mkv,
you could try directshowsource(), ffmpegsource(),
or demux to elementary (h264), and use dgavcindex.

it's only import that differs, after that, it's all much the same.