thom_b
19th May 2011, 13:50
Hi there,
I use the scriptlanguage of my 3d program to automatically create avisynth scripts, that are able to edit together ANY video it randomly finds in a database. the cuts usually are very fast and a lot of clips are used, so there are some problems:
1. is there a way to see the avisynth progress while it's loading in virtual dub? It can take quite some time.
2. sometimes i run into memory issues, the "access violation" error appears or virtual dub crashes, even though i have 6 gigs of ram on a win7 64bit system.
This is how my scripts look like:
video = ResampleAudio(Trim(directShowSource("test1.0001.avi",fps=25).BilinearResizeBars(1024,576).convert_to_stereo(),0,15),48000)
video = video+ResampleAudio(Trim(directShowSource("anothervid.avi",fps=25).BilinearResizeBars(1024,576).convert_to_stereo(),0,15),48000)
[... a lot of vids ...]
video
convert_to_stereo and BilinearResizeBars are custom functions (the first i wrote to make a clip stereo no matter what and the second I found on the net and it resizes while keeping the aspect ratio).
Maybe somebody knows a more efficient way to do this? Is avisource (+ fps filter) perhaps better than directshowsource? Is there an easier way to conform clips befor adding them?
Thanks!!
I use the scriptlanguage of my 3d program to automatically create avisynth scripts, that are able to edit together ANY video it randomly finds in a database. the cuts usually are very fast and a lot of clips are used, so there are some problems:
1. is there a way to see the avisynth progress while it's loading in virtual dub? It can take quite some time.
2. sometimes i run into memory issues, the "access violation" error appears or virtual dub crashes, even though i have 6 gigs of ram on a win7 64bit system.
This is how my scripts look like:
video = ResampleAudio(Trim(directShowSource("test1.0001.avi",fps=25).BilinearResizeBars(1024,576).convert_to_stereo(),0,15),48000)
video = video+ResampleAudio(Trim(directShowSource("anothervid.avi",fps=25).BilinearResizeBars(1024,576).convert_to_stereo(),0,15),48000)
[... a lot of vids ...]
video
convert_to_stereo and BilinearResizeBars are custom functions (the first i wrote to make a clip stereo no matter what and the second I found on the net and it resizes while keeping the aspect ratio).
Maybe somebody knows a more efficient way to do this? Is avisource (+ fps filter) perhaps better than directshowsource? Is there an easier way to conform clips befor adding them?
Thanks!!