我有一堆个人文件,我想通过Avisynth运行。但是,AVS文件只能创建一个视频。据我所知,没有办法从命令行声明变量的值。
我知道您可以创建一个脚本来生成一堆AVS文件,然后以某种方式将每个AVS文件转换为视频。但是,由于Avisynth是一个脚本系统,这看起来有点复杂。必须有一些方法可以通过脚本运行不同的视频,对吗?
最好的方法是什么?提前谢谢。
答案 0 :(得分:3)
我从未找到过将命令行参数直接传递给AVS脚本的方法。 动态生成脚本是我能够让它工作的唯一方法。
我知道这不是您正在寻找的答案 - 不过有两种生成脚本的方法:
当我有一个AVS脚本时,我使用它,其中唯一更改的参数是源输入文件。
我有一个脚本template.avs
,它需要一个包含源视频完整路径的变量(v
)。然后,批处理脚本只是为每个视频文件添加带有变量的行,类似于:
@echo off
if "%1" == "" (
echo No input video found
pause
GOTO :EOF
)
set pth=%~dp0
:loop
IF "%1"=="" GOTO :EOF
echo v="%1">"%pth%_tmp.avs"
type "%pth%template.avs">>"%pth%_tmp.avs"
:: Do whatever you want with the script
:: I use virtualdub...
"%vdub%" /i "%pth%Template.vdscript" "%pth%_tmp.avs"
del "%pth%_tmp"
SHIFT
GOTO loop
这使我可以简单地将多个源视频拖放到批处理中。
使用Import指令,可以将所有变量声明外部化为自己的脚本。
Import("variables.avs")
当模板AVS脚本需要多个变量时,这很有用。
答案 1 :(得分:0)
该问题的另一个答案是让AviSynth脚本获得自己的名称,以指向要处理的文件。如果您希望脚本在movie.mp4
上运行,可以将其重命名为movie.mp4.avs
。该脚本将类似于:
function GetVideoName()
{
Try
{
assert(false)
}
Catch(err_msg)
{
err_msg = MidStr(err_msg, FindStr(err_msg, "(") + 1)
filename = LeftStr(err_msg, StrLen(err_msg) - FindStr(RevStr(err_msg), "."))
return filename
}
}
video_to_process=GetVideoName()
#return BlankClip(color=$000000, pixel_type="RGB24").Subtitle("You would process the video [" + video_to_process + "]")
DirectShowSource(video_to_process, convertfps=true)
您只需重命名脚本即可对不同的视频执行相同的操作(前提是视频和.avs
位于同一文件夹中)。取消注释倒数第二行,以了解我的意思。
答案 2 :(得分:-1)
似乎每个AviSynth脚本都代表一个视频。
要解决此问题(类似于marapet的答案),我还开发了一个.BAT
文件,您可以将视频文件拖放到该文件上,并为每个文件创建一个AVS文件,视频的路径会自动插入。
我认为这更加灵活,因为它在脚本中使用占位符。它还可以选择对每一个运行ffmpeg(或您喜欢的任何命令)以呈现和编码最终结果。
.BAT
文件.BAT
下创建一个名为AviSynth Templates
的子文件夹在此子文件夹中创建主AVS脚本(例如master.avs
),并在需要插入视频路径的任何地方使用占位符[CLIP]
。 (如果您有与该视频相关的额外资产,也可以使用[CLIP-NO-EXTENSION]
排除文件扩展名。)
AviSource("[CLIP]")
# ...do more tasks here...
将视频文件拖放到BAT中,为每个文件创建一个自定义的AVS文件。如果将相同的视频文件再次放到BAT上,AVS将被新版本覆盖。
Create AVS files.bat
@ECHO OFF
:: INSTRUCTIONS:
:: 1. Create an AviSynth script
:: 2. Use [CLIP] and/or [CLIP-NO-EXTENSION] as placeholders in the script.
:: [CLIP-NO-EXTENSION] will exclude the file-extension in case you want to use it for including subtitles or other files that use the same base name.
:: e.g. AviSource("[CLIP]")
:: 3. Place the master .avs script in a folder called "AviSynth Templates", immediately beneath the folder containing this .BAT
:: 4. Drag and drop video files onto this BAT and each will be given an AVS file with the same name (video1.avi.avs will be created for video1.avi)
:: The placeholders will be filled in with the full absolute path of the dropped files.
SET TemplateName=master.avs
SET TemplatePath=%~dp0AviSynth Templates\%TemplateName%
echo Creating AVS scripts from master template %TemplatePath%...
:: Loop through every file dropped onto the .BAT
FOR %%A IN (%*) DO (
REM :: Here we create a .AVS file for each video dropped onto the bat
REM :: We read in the master script, replace the placeholders and then write the output to a text file using the video's filename and .avs extension
REM ::
REM :: %%A - this contains the full path to the video file, including surrounding double-quotes
REM :: %%~A - this contains the full path to the video file, without surrounding double-quotes
REM :: %%~dpnA - this contains the full path to the video file, with drive, path and name (dpn) but no file extension (without quotes)
echo Creating "%%~A.avs"
powershell -Command "(Get-Content '%TemplatePath%').replace('[CLIP]', '%%~A').replace('[CLIP-NO-EXTENSION]', '%%~dpnA') | Out-File -encoding ASCII '%%~A.avs'"
REM :: If you want to then run ffmpeg to render and transcode the AVS file you could run it here
REM :: e.g. ffmpeg -i "%%~A.avs" "%%~dpnA.h264.mp4"
)
ECHO.
ECHO Script creation finished.
ECHO.
PAUSE