Page 1 of 1

Custiom AviSynth script

Posted: Wed Mar 09, 2016 3:44 pm
by tiler
Hi! I'm very new in AviSynth and try to make any simple example (my first script btw))). But not successful yet. The most simple way in my opinion is:

Code: Select all

m_video=ffms2(_ffas_video)
m_audio=ffms2(_ffas_audio)
m_clip=AudioDub(m_video,m_audio)
Return m_clip
It really do nothing as you can see - just get video and audio, put them together and return. But I get error "No video or audio found in media". So something is wrong. Maybe I should use something else instead of ffms2 for loading?

Re: Custiom AviSynth script

Posted: Wed Mar 09, 2016 8:27 pm
by admin
I think the best way to learn the basics of AviSynth is not to start with FFAStrans. Just like creating custom ffmpeg presets demands that you have some knowledge og ffmpeg, creating a custom AviSynth demand you have some knowledge of AviSynth.

viewtopic.php?f=5&t=235

Please read this post to learn the "rules" of ffmpeg and AviSynth questions in this forum.

-steipal