Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Usage

Reply
 
Thread Tools Search this Thread Display Modes
Old 5th February 2018, 18:49   #121  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by Max_143 View Post
There is no function named 'ImageSource'
There is no function named 'LoadVirtualDubPlugin'
Internal filters (crop, trim, SeparateFields, ...?) are working
External filters too are working
You probably didn't set it up properly. Can you post your customized batch file?
__________________
Groucho's Avisynth Stuff

Last edited by Groucho2004; 5th February 2018 at 18:51.
Groucho2004 is offline   Reply With Quote
Old 5th February 2018, 19:24   #122  |  Link
Max_143
Registered User
 
Join Date: Dec 2011
Location: Odessa, Ukraine
Posts: 7
Code:
::  ########################## Start Configuration #########################

::   The variable "AVS_SRC_DIR" needs to be set according to the location of
::   this batch file ("Option 1" and "Option 2" are mutually exclusive):

::   Option 1
::   When you unpack the repository and just want to create a shortcut to
::   the batch file, remove the colon from the beginning of the next line.
:set AVS_SRC_DIR=%~dp0

::   Option 2
::   If you want to run the batch file from a different directory
::   (i.e. a directory to which the "PATH" environment variable points),
::   use a fully qualified path to the source directory.
::   Example:
::   set AVS_SRC_DIR=E:\VideoTools\AvisynthRepository
set AVS_SRC_DIR=D:\Avisynth\AvisynthRepository

::   Default plugin directories
::   If you leave them blank, the respective "plugin" directories within
::   the "AvisynthRepository" source directories will be used.
set PLUGDIR32=D:\Avisynth\Plugin32
set PLUGDIR64=D:\Avisynth\Plugin64

::   Additional plugin directories (works only with Avisynth+)
::   If you leave them blank, only the default plugin directories (see above)
::   will be used.
set PLUGDIR32PLUS=D:\Avisynth\AddPlugin32
set PLUGDIR64PLUS=D:\Avisynth\AddPlugin64


::  **IMPORTANT:
::  If you have customized any of the above directories and their names contain
::  special characters such as '&', '(' or ')', enclose the variable and path
::  in double quotes and use the escape character '^' before the special character(s).
::  
::  Example 1:
::  set "AVS_SRC_DIR=C:\Program Files ^(x86^)\Avisynth"
::  
::  Example 2:
::  set "PLUGDIR32=C:\Program Files ^(x86^)\Avisynth\Plugins ^& avsi"


::  ########################### End Configuration ##########################
Max_143 is offline   Reply With Quote
Old 5th February 2018, 19:48   #123  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by Max_143 View Post
[CODE]:: Option 2
:: If you want to run the batch file from a different directory
:: (i.e. a directory to which the "PATH" environment variable points),
:: use a fully qualified path to the source directory.
:: Example:
:: set AVS_SRC_DIR=E:\VideoTools\AvisynthRepository
set AVS_SRC_DIR=D:\Avisynth\AvisynthRepository

:: Default plugin directories
:: If you leave them blank, the respective "plugin" directories within
:: the "AvisynthRepository" source directories will be used.
set PLUGDIR32=D:\Avisynth\Plugin32
set PLUGDIR64=D:\Avisynth\Plugin64

:: Additional plugin directories (works only with Avisynth+)
:: If you leave them blank, only the default plugin directories (see above)
:: will be used.
set PLUGDIR32PLUS=D:\Avisynth\AddPlugin32
set PLUGDIR64PLUS=D:\Avisynth\AddPlugin64
The part highlighted in red is the problem. Since you specified your own plugin directories, the directories within the repository are no longer valid. They do however contain the plugins that come with AVS(+) which include ImageSeq.dll and VDubFilter.dll.

What you could do is this:
Code:
::   Default plugin directories
::   If you leave them blank, the respective "plugin" directories within
::   the "AvisynthRepository" source directories will be used.
:set PLUGDIR32=
:set PLUGDIR64=

::   Additional plugin directories (works only with Avisynth+)
::   If you leave them blank, only the default plugin directories (see above)
::   will be used.
set PLUGDIR32PLUS=D:\Avisynth\AddPlugin32
set PLUGDIR64PLUS=D:\Avisynth\AddPlugin64
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 5th February 2018, 20:03   #124  |  Link
Max_143
Registered User
 
Join Date: Dec 2011
Location: Odessa, Ukraine
Posts: 7
Thanks I'll know
After the standard installation, I no longer reproduce the problem.
Max_143 is offline   Reply With Quote
Old 18th March 2018, 16:42   #125  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
2018-03-18
  • Updated AVS+ to r2636
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 27th March 2018, 02:03   #126  |  Link
minaust
Registered User
 
Join Date: Nov 2007
Posts: 185
Quote:
Originally Posted by Groucho2004 View Post
2018-03-18
  • Updated AVS+ to r2636
Thankee sir.
minaust is offline   Reply With Quote
Old 30th March 2018, 14:32   #127  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
2018-03-30
  • Updated AVS+ to r2664
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 4th July 2018, 11:29   #128  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
2018-07-04
  • Updated AVS+ to r2728
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 19th December 2018, 11:44   #129  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
2018-12-19
  • Updated AVS+ to r2768
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 22nd December 2018, 21:03   #130  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
2018-12-22
  • Updated AVS+ to r2772
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 3rd April 2019, 20:58   #131  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Respectful request:

Hows bout adding Avisynth Neo to the suppository, handy for testing stuff.
Only current version probably required, probably dont need older version as below.

VersionStrings
Code:
# Avisynth NEO
AviSynth Neo 0.1 (r2822, Neo, i386)
AviSynth Neo 0.1 (r2822, Neo, x86_64)
# Avisynth NEO Forerunner Avisynth+ CUDA
AviSynth+ 0.1 (r2533, CUDA, i386)
AviSynth+ 0.1 (r2533, CUDA, x86_64)
The old version already had the DumpFilterGraph function,
Code:
- Usage of DumpFilterGraph
Put "SetGraphAnalysis(true)" on top of your script. Use "DumpFilterGraph" to the last clip to output a filter graph.

---------- sample avs script ------------
SetGraphAnalysis(true)
srcfile="..."
LWLibavVideoSource(srcfile)
QTGMC()
DumpFilterGraph("graph.txt", mode=2)
Many thanks for your consideration

Fancy FilterGraph for QTGMC():- https://i.imgur.com/JMWKKaO.png

EDIT: VersionStrings
Code:
# AviSynth v2.58
AviSynth 2.58, build:Dec 22 2008 [08:46:51]

# AviSynth v2.60
AviSynth 2.60, build:Mar 31 2015 [16:38:54]

# AviSynth v2.61 Alpha
AviSynth 2.61, build:May 17 2016 [16:06:18] VC2008Exp

# Avisynth v2.60 ICL
AviSynth 2.60 (ICL10)

# Avisynth V2.60 MT
AviSynth 2.60, build:Feb 20 2015 [03:16:45]

# Avisynth+ v2.60
AviSynth+ 0.1 (r2772, MT, i386)
AviSynth+ 0.1 (r2772, MT, x86_64)

# Avisynth NEO
AviSynth Neo 0.1 (r2822, Neo, i386)
AviSynth Neo 0.1 (r2822, Neo, x86_64)

# Avisynth NEO Forerunner Avisynth+ CUDA
AviSynth+ 0.1 (r2533, CUDA, i386)
AviSynth+ 0.1 (r2533, CUDA, x86_64)
EDIT: NOTE, some versions use COLON (':') in VersionString, and so NOT usable in filename production without mod.
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???

Last edited by StainlessS; 4th April 2019 at 10:20.
StainlessS is offline   Reply With Quote
Old 4th April 2019, 13:45   #132  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
2019-04-04
  • Added Avisynth+ Neo r2822
  • Cosmetics
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 4th April 2019, 14:08   #133  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Thank you lovely boy (In the dulcet Welsh tones of Windsor Davies [ EDIT: R.I.P. 17 January 2019, aged 88 ] )
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???

Last edited by StainlessS; 5th April 2019 at 00:15.
StainlessS is offline   Reply With Quote
Old 10th April 2019, 15:39   #134  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
2019-04-10
  • Changed "Avisynth+ Neo" to "Avisynth Neo"
  • Cosmetics
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 12th April 2019, 18:34   #135  |  Link
Sharc
Registered User
 
Join Date: May 2006
Posts: 3,997
I know 'version.avs', but it would be convenient to see the actual installed/active version on the first line when setavs.bat is run. Could this perhaps be added?
Sharc is offline   Reply With Quote
Old 12th April 2019, 22:10   #136  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by Sharc View Post
I know 'version.avs', but it would be convenient to see the actual installed/active version on the first line when setavs.bat is run. Could this perhaps be added?
Good idea, I'll add it soon.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 13th April 2019, 22:46   #137  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
2019-04-13
  • Added display of currently installed Avisynth version(s)
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 14th April 2019, 10:22   #138  |  Link
Sharc
Registered User
 
Join Date: May 2006
Posts: 3,997
Quote:
Originally Posted by Groucho2004 View Post
2019-04-13
  • Added display of currently installed Avisynth version(s)
Thanks.
I am getting the "path not found" message instead, even when I set the fully qualified path.

Edit:
Never mind. My mistake, I didn't copy the Tools folder. All ok now. Thanks.

Last edited by Sharc; 14th April 2019 at 10:30.
Sharc is offline   Reply With Quote
Old 22nd April 2019, 16:25   #139  |  Link
ASVTut
Registered User
 
ASVTut's Avatar
 
Join Date: Apr 2019
Posts: 7
Stupid question: How is AVISynth NEO different from AVS+/classic AVS? I got a little lost trying to read the documentation on the GitHub page, and I couldn't find good info from a Google/forum search - other the info shown above that it supports generating visual filtergraphs.

Last edited by ASVTut; 22nd April 2019 at 16:28.
ASVTut is offline   Reply With Quote
Old 22nd April 2019, 17:36   #140  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by ASVTut View Post
How is AVISynth NEO different from AVS+/classic AVS? I got a little lost trying to read the documentation on the GitHub page, and I couldn't find good info from a Google/forum search - other the info shown above that it supports generating visual filtergraphs.
I don't know anything beyond that either. I just added it because StainlessS asked nicely.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 13:28.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.