Strange Avisynth Error
- Deathscythe_Animated
- Joined: Wed Jun 15, 2005 12:16 am
- Location: 44.322N/88.928W Elevation:794ft
- Contact:
Strange Avisynth Error
I'm trying to convert an h.264 .mp4 using an AVS script:
DirectShowSource("d:\filename.mp4")
When I try to load the file into vdubmod it gives me a script error saying that there is no function named "directshowsource"
Im sure im missing something easy and straight forward and downright noobish here but I dont know what. Can anyone point me in the right direction.
DirectShowSource("d:\filename.mp4")
When I try to load the file into vdubmod it gives me a script error saying that there is no function named "directshowsource"
Im sure im missing something easy and straight forward and downright noobish here but I dont know what. Can anyone point me in the right direction.
“Where the spirit does not work with the hand there is no art.”
- Qyot27
- Surreptitious fluffy bunny
- Joined: Fri Aug 30, 2002 12:08 pm
- Status: Creepin' between the bullfrogs
- Location: St. Pete, FL
- Contact:
Stuff like this happens sometimes when there's too many plugins in AviSynth's plugins folder, although otherwise my guess is that something's gone screwy with DirectShowSource itself.
You could try FFmpegSource (if the link's dead, try again later - that is, if you don't already have that plugin):
http://forum.doom9.org/showthread.php?t=127037
You could try FFmpegSource (if the link's dead, try again later - that is, if you don't already have that plugin):
http://forum.doom9.org/showthread.php?t=127037
- Qyot27
- Surreptitious fluffy bunny
- Joined: Fri Aug 30, 2002 12:08 pm
- Status: Creepin' between the bullfrogs
- Location: St. Pete, FL
- Contact:
Gah...well firstly you could try manually loading DirectShowSource like this:Qyot27 wrote:Stuff like this happens sometimes when there's too many plugins in AviSynth's plugins folder, although otherwise my guess is that something's gone screwy with DirectShowSource itself.
You could try FFmpegSource (if the link's dead, try again later - that is, if you don't already have that plugin):
http://forum.doom9.org/showthread.php?t=127037
Code: Select all
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DirectShowSource.dll")
DirectShowSource("file.mp4")
- Deathscythe_Animated
- Joined: Wed Jun 15, 2005 12:16 am
- Location: 44.322N/88.928W Elevation:794ft
- Contact:
- Deathscythe_Animated
- Joined: Wed Jun 15, 2005 12:16 am
- Location: 44.322N/88.928W Elevation:794ft
- Contact:
Ok so DirectShowSource did not work even after I redownloaded the plugin. However FFMpegSource worked great for the video, but there is no audio. This doesn't bother me nearly as much as I have ways of getting around that, however if there are any suggestions they would be greatly appreciated.Qyot27 wrote:Gah...well firstly you could try manually loading DirectShowSource like this:Qyot27 wrote:Stuff like this happens sometimes when there's too many plugins in AviSynth's plugins folder, although otherwise my guess is that something's gone screwy with DirectShowSource itself.
You could try FFmpegSource (if the link's dead, try again later - that is, if you don't already have that plugin):
http://forum.doom9.org/showthread.php?t=127037
Code: Select all
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DirectShowSource.dll") DirectShowSource("file.mp4")
“Where the spirit does not work with the hand there is no art.”
- LivingFlame
- Joined: Sat May 28, 2005 4:41 pm
- Location: Closer than you think...
Just add atrack=-1 on the end of the ffmpegsource code. So it should look like:
Code: Select all
ffmpegsource("file.mp4", atrack=-1)
... yea ...
- Deathscythe_Animated
- Joined: Wed Jun 15, 2005 12:16 am
- Location: 44.322N/88.928W Elevation:794ft
- Contact:
Well that will certainly simplify the process, right now I'm using some good old freeware to extract the audio from the .mp4 files, but on the next video I'll try that.LivingFlame wrote:Just add atrack=-1 on the end of the ffmpegsource code. So it should look like:Code: Select all
ffmpegsource("file.mp4", atrack=-1)
Thanks
“Where the spirit does not work with the hand there is no art.”
- Deathscythe_Animated
- Joined: Wed Jun 15, 2005 12:16 am
- Location: 44.322N/88.928W Elevation:794ft
- Contact: