Custiom AviSynth script
Posted: Wed Mar 09, 2016 3:44 pm
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:
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?
Code: Select all
m_video=ffms2(_ffas_video)
m_audio=ffms2(_ffas_audio)
m_clip=AudioDub(m_video,m_audio)
Return m_clip