Ok, no one hit me for using WMV or WMM, premier does NOT run on my machine, as in it's not that my machine isn't capable but a trial version was written to registry and... oh hell it's a long story. Suffice to say I'm looking into alternatives.
In the meantime... I am trying to clean my post prod footage and AVIsynth doesn't recognise source WMV, and before anyone tells me to Read <a href=http://www.a-m-v.org/guides/avtech31/>ErMaC & AbsoluteDestiny's Friendly AMV Guides</a>, I have and could find an import command for it (domestic blindness?).
So I experimented a little and nope/nada/nothing but errors.
Any ideas
WMV source
- Autraya
- Zero Punctuation
- Joined: Tue Mar 11, 2003 12:52 am
- Status: old
- Location: Terra Australis
- Contact:
WMV source
new banzors in the making :p
- Scintilla
- (for EXTREME)
- Joined: Mon Mar 31, 2003 8:47 pm
- Status: Quo
- Location: New Jersey
- Contact:
As mentioned <a href="http://www.animemusicvideos.org/guides/ ... l">here</a>, the preferred AVISynth command to load most videos that aren't AVI files is <b>DirectShowSource()</b>.
However, I've noticed that this doesn't always work properly for .WMV files: you may encounter inexplicable desynchronization. So your next best bet is probably to load the files with a converter such as http://www.eo-video.com and cut the clips you need out of it, converting them to something easier to work with such as an AVI file with the HuffYUV video codec.
However, I've noticed that this doesn't always work properly for .WMV files: you may encounter inexplicable desynchronization. So your next best bet is probably to load the files with a converter such as http://www.eo-video.com and cut the clips you need out of it, converting them to something easier to work with such as an AVI file with the HuffYUV video codec.
- Qyot27
- Surreptitious fluffy bunny
- Joined: Fri Aug 30, 2002 12:08 pm
- Status: Creepin' between the bullfrogs
- Location: St. Pete, FL
- Contact:
- Autraya
- Zero Punctuation
- Joined: Tue Mar 11, 2003 12:52 am
- Status: old
- Location: Terra Australis
- Contact:
Ur genius I was missing FPS=Qyot27 wrote:Scintilla wrote:Using the convertfps parameter within DirectShowSource usually solves that for me.
Ex.
DirectShowSource("video.wmv", fps=29.97, convertfps=true)
I just had DirectShowSource("F:\AMV Construction\fafscrubbing.wmv",25) which was the demo used in Read <a href=http://www.a-m-v.org/guides/avtech31/>ErMaC & AbsoluteDestiny's Friendly AMV Guides</a>
tis all working now!!
new banzors in the making :p
- Scintilla
- (for EXTREME)
- Joined: Mon Mar 31, 2003 8:47 pm
- Status: Quo
- Location: New Jersey
- Contact:
... You know, that explains a lot. The <b>convertfps</b> argument was new for AVISynth version 2.5.6, and I think I was still on 2.5.5 the last time I had to work with .WMV files that way. >_<Qyot27 wrote:Using the convertfps parameter within DirectShowSource usually solves that for me.Scintilla wrote:However, I've noticed that this doesn't always work properly for .WMV files: you may encounter inexplicable desynchronization.
Ex.
DirectShowSource("video.wmv", fps=29.97, convertfps=true)