I have a major probelm. I'm making a video with avisynth and converted my d2v files to crappy mpgs for editing and was planning to just replace the dummy avs file which had this code:
video = DirectShowSource("D:\metropolis\1.mpg")
audio = WAVSource("D:\metropolis\video_ts\1 AC3 T03 3_1ch 32Kbps 48KHz.wav")
AudioDub(video, audio)
with the one below:
LoadPlugin("C:\windows\system\mpeg2dec.dll")
video = Mpeg2Source("D:\metropolis\video_ts\1.d2v")
audio = WAVSource("D:\metropolis\video_ts\1 AC3 T03 3_1ch 32Kbps 48KHz.wav")
AudioDub(video, audio)
But when I replace the avs files and start premiere up, it freezes and becomes completely inactive. How can I do this properly? I'm confused...
I did try replacing the avs files with the "replace files" feature from within premiere, but that had the same effect. Oh, and all the vobs are still on my system so I'm not missing any files. the mpeg2dec.dll file is in the correct directory as well. Any thoughts about how I can fix this?

