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. |
|
![]() |
|
Thread Tools | Search this Thread | Display Modes |
![]() |
#1 | Link |
Clouded
Join Date: Jul 2003
Location: Cambridge, UK
Posts: 1,148
|
List of command-line and batch utilities for AVISynth (and a few discussions)
I collated this for my own purposes but it might prove useful to someone else...
http://forum.doom9.org/showthread.php?t=50060 http://forum.doom9.org/showthread.php?t=70882 (AVS2WAV) http://forum.doom9.org/showthread.php?t=71493 (AVS2AVI) http://forum.doom9.org/showthread.php?t=73709 http://forum.doom9.org/showthread.php?t=74899 (avsutil - commandline player w/o video output - link broken?) http://forum.doom9.org/showthread.php?t=75610 (Adding lines to many .AVSs) http://forum.doom9.org/showthread.php?t=79259 (notes on command prompt) http://jonny.leffe.dnsalias.com/ (Enc - encoder with commandline mode) http://sourceforge.net/projects/avsbatches (Project: AVISynth BatchScripting) http://tangentsoft.net/video/asynther/ (AVISynthesizer - build Avisynth scripts based on predefined templates) http://www.avisynth.org/BatchScripting (Web-based batch .AVS generation) http://www.blainehelmick.com/AVS2DVD/ (A batch file; references other useful commandline tools) http://forum.doom9.org/showthread.php?t=98648 (ScriptWriter - batch script creation) http://forum.doom9.org/showthread.php?t=98469 (xvid_encraw_avs) http://forum.doom9.org/showthread.php?t=92120 (AVSAmp - calculate audio normalisation factor) Avisynth Batch Scripter (by Steven van Cauter): discussion. Last edited by Wilbert; 23rd July 2006 at 12:01. |
![]() |
![]() |
![]() |
#3 | Link |
AviSynth Enthusiast
Join Date: Jul 2002
Location: California, U.S.
Posts: 1,267
|
Here is yet another thread about generating multiple AVS files from a directory list:
http://forum.doom9.org/showthread.php?p=520674 |
![]() |
![]() |
![]() |
#5 | Link |
Clouded
Join Date: Jul 2003
Location: Cambridge, UK
Posts: 1,148
|
![]() - The one I unhhelpfully labelled "(notes on command prompt)" is the one @stickboy refers to, and it's about using the command prompt to generate multiple .AVSs. - In thread number 73709 someone asks about batch encoding .AVS files to .MP2, but it's really a TMpgEnc answer rather than a AVISynth one, so I'm not sure how relevant it is to this list. OTOH there are some batch/commandline operations that aren't to do with AVISynth but would be used repeatedly with it. I have just looked up/got to work the command line syntax for getting VirtualDub to run AVS->AVI. (It allows you to run a batch job with each instance loading a new copy of VirtualDub, which is useful for filters which don't like VirtualDub's own batch mode.) So I might dump something on that into a separate thread if it sounds useful... |
![]() |
![]() |
![]() |
#6 | Link |
Registered User
Join Date: Apr 2004
Posts: 45
|
I've updated the batch page at http://www.blainehelmick.com/AVS2DVD/ to include the newst version 0.61 of QuENC and subsequently removed several apps that QuENC now replaces.
|
![]() |
![]() |
![]() |
#7 | Link |
Registered User
Join Date: Mar 2004
Location: Novosibirsk, Russia
Posts: 27
|
Why don’t you include the thread on xvid_encraw_avs?
|
![]() |
![]() |
![]() |
#8 | Link |
Registered User
Join Date: Feb 2004
Location: Virginia, USA
Posts: 334
|
How about AVSAmp?
__________________
moitah.net |
![]() |
![]() |
![]() |
#9 | Link |
AviSynth plugger
Join Date: Nov 2003
Location: Russia
Posts: 2,183
|
Recently I found (rather old) AVS2AVI Wrapper v0.3, by HMage.
http://hmd.c58.ru/files.html It creates fake avi like VFAPI, MakeAvis. The name is the the same as AVS2AVI by Moitah, but it is other program It is probably off-topic here, but where to i must post it? Last edited by Fizick; 29th November 2005 at 23:02. |
![]() |
![]() |
![]() |
#10 | Link |
Clouded
Join Date: Jul 2003
Location: Cambridge, UK
Posts: 1,148
|
You could ask Wilbert to assimilate it into the appropriate FAQ?
__________________
a.k.a. Clouded. Come and help by making sure your favourite AVISynth filters and scripts are listed. |
![]() |
![]() |
![]() |
#12 | Link |
Registered User
Join Date: Mar 2005
Posts: 366
|
Avi2swf.exe from SWFTools will convert avs files into flash swf files. Everything works well as long as the avs files are with out sound, but with sound it generates a working file(with sound), but produces an error in the end of the file and hangs. I dunno what is causing this?
Get avi2swf from here:www.swftools.org On avi2swf.exe: avi2swf
__________________
DVD slideshow GUI(Freeware). Last edited by tin3tin; 8th April 2006 at 12:25. |
![]() |
![]() |
![]() |
#13 | Link |
Registered User
Join Date: May 2006
Posts: 237
|
WAVI - save WAV from AVI/AVS
http://sourceforge.net/projects/wavi-avi2wav (Different from AVS2WAV) I use a batch file with this to make AC3 at 128kb: Code:
@echo avs2ac3 avsfile.avs @echo audio from avs files and convert to AC3 @echo uses wavi and ffmpeg @if %1X==X goto ALL :LOOP for %%I in (%1) do ( wavi %%I %%~nI.wav p:\ffmpeggui\ffmpeg -i %%~nI.wav -ab 128 -ar 48000 -ac 2 -acodec ac3 -y %%~nI.ac3 del %%~nI.wav ) SHIFT @if %1X==X goto END @goto LOOP :ALL for %%I in (*.avs) do ( wavi %%I %%~nI.wav p:\ffmpeggui\ffmpeg -i %%~nI.wav -ab 128 -ar 48000 -ac 2 -acodec ac3 -y %%~nI.ac3 del %%~nI.wav ) :END The version I use came with ffmpeggui. |
![]() |
![]() |
![]() |
#14 | Link | |
Moderator
![]() Join Date: Feb 2005
Location: Spain
Posts: 6,772
|
Quote:
wavi x.avs - | aften - x.ac3 |
|
![]() |
![]() |
![]() |
#16 | Link | |
Moderator
![]() Join Date: Feb 2005
Location: Spain
Posts: 6,772
|
Quote:
To encode ac3 Aften, by Justin Ruggles (Justin also maintain the ac3 part in ffmpeg), is more optimized and versatile (accept many more parameters). Also ffmpeg problems solved with Aften: - The multichannel encode (5.1) is wrong mapped with ffmpeg. - The 32-float samples (a common format after audio process with AviSynth) are not supported by ffmpeg. There are also many ffmpeg versions with different behaviour about STDIN and input parameters (-ab 192 / -ab 192000). Last edited by tebasuna51; 19th January 2008 at 14:21. |
|
![]() |
![]() |
![]() |
#17 | Link | |
Registered User
Join Date: Feb 2003
Location: Russia, Moscow
Posts: 854
|
Hi all!
I have problem with wavi. My avi file is analog capture in VirtualDub 1.8.1 video huffyuv, audio PCM 48 kHz. I get error Quote:
Please advice. yup. Last edited by yup; 27th August 2008 at 08:50. |
|
![]() |
![]() |
![]() |
#18 | Link | |
Registered User
Join Date: May 2006
Posts: 237
|
Quote:
Most AVIs have some kind of compressed audio. Normally use WAVI on an AVS script, then Avisynth will convert to wave audio which wavi can output or stream. Assuming you have Avisynth installed, Make an AVS, eg film.avs, in the same folder as film.avi, with one line: AVISource("film.avi") then run: wavi film.avs film.wav Last edited by AlanHK; 27th August 2008 at 09:40. |
|
![]() |
![]() |
![]() |
#20 | Link | |
Registered User
Join Date: Sep 2008
Posts: 2
|
Quote:
I see the avs2avi wrapper has been mentioned in this thread, could anybody here please suggest how to modify the installation procedure (maybe the .inf) in order to have the codec successfully registered in Win x64 (XP or Vista)? I found on the web quite simple instructions for installing VFAPI in Win x64 and they worked just fine. I tried doing something similar for the avs2avi wrapper with no success (ok the contextual menu and wrapper avi generation, but apparently the codec doesn't get registered so no decompressor appears to be available). Thanks a lot for any advice. |
|
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|