View Single Post
Old 24th January 2016, 08:38   #2  |  Link
ChiDragon
Registered User
 
ChiDragon's Avatar
 
Join Date: Sep 2005
Location: Vancouver
Posts: 600
Quote:
Originally Posted by LilWiz View Post
It was suggested in the thread I posted to look into QTGMC with Avisynth ('in conjunction with VirtualDub', of which I can't appreciate the relevance at this point).
...
How do I capture the video with these filters permanently applied?
This would be where VirtualDub comes in. You open the AVS file in that and save an intermediate AVI file for editing (preferably in a lossless format).

Your script is wrong. Read the docs for FFmpegSource2 for more info on proper usage.

Here is one way:
Code:
FilePath = "x:\filename.ts"
A = FFAudioSource(FilePath)
V = FFVideoSource(FilePath)
AudioDub(V,A)
There will be a delay while the file is indexed before it opens.

LoadPlugin is redundant because you already have the plugin in the autoload directory. But leaving it in wouldn't cause a problem.
ChiDragon is offline   Reply With Quote