我正在逐段处理视频,并使用文件名scene1.avi
,scene2.avi
保存,等等。
我想要一种简单的方法将视频构建到一个块中并在音轨中进行复制。为此,我正在使用VirtualDub。
现在,对我来说打开VirtualDub非常简单,请查看File =>打开,加载第一个场景,转到File =>添加视频片段,选择第二个场景,选中“按文件名自动检测其他片段”选项,将视频设置为直接流复制,将音频设置为“从其他文件”并选择音轨,然后将整个事物保存为{{ 1}} ...但是需要四行来解释所有这些!
我想要的是一个VCF脚本,可以将所有这些文件组合在一起。不幸的是,编码语言很糟糕。
当我创建这种脚本语言时,我不知道我在想什么。它的 非常松散地基于C,但它吸收更多。我一定在看泡泡糖 在创造它之前的危机。
所有语句都是声明或表达式,以及所有语句 必须以分号结尾。没有流量控制 - 没有功能,没有 程序,没有,没有,没有,没有,没有开关,没有转到。
没有out.avi
,没有if
,没有while
...所以我猜for
是完全不可能的。
我正在使用Batch脚本来检查VCF文件是否存在,并使用正确的命令行运行VirtualDub来运行脚本,所以也许我可以使用该脚本“构建”所需的VCF文件包括所有文件?有没有办法自动检测VCF文件中的段,还是我必须使用批处理脚本自定义构建VCF?
答案 0 :(得分:1)
我刚刚写了一些相关/类似的内容,可以让你开始编码。它是一个批处理文件,因此将以下内容复制到something.bat:
Set Mfps=23.976
Set Bpath="E:\- Video Extractions\Virtualdub\1920x1280 (23.976fps pure,93%%,MPEG2,deinterlaced)auto openNsave.vcf"
rem Set Bpath="E:\- Video Extractions\Virtualdub\852x480 DAR3 (16x9) (24fps,96%%,MPEG2,deinterlaced).vcf"
Set Vdpath="E:\- Video Extractions\Virtualdub\VirtualDub-1.8.8\"
Set Svpath="D:\"
for %%A in (*.mkv *.avi *.mpg *.mpeg *.m2ts *.vob) do >%%~nA.avs echo # M2ts file & >>%%~nA.avs echo SetMemoryMax(128) & >>%%~nA.avs echo DirectShowSource("%%~dA%%~pA%%~nA%%~xA", fps=%Mfps%, audio=true, seekzero = true, convertfps=true) & >>%%~nA.avs echo EnsureVBRMP3Sync() & start /d %Vdpath% VirtualDub.exe /i %Bpath% "%%~dA%%~pA%%~nA.avs" "%Svpath%%%~nA.avi"
rem ---Notes---
rem code requires: Avisynth, virtualdub, pre-existing (.vcf) config file
rem most people prefer to use virtualdub with jobs in queue; run them in sequence. This runs jobs in parallel by searching the directory of the script, finding all listed wildcard masked files below, generating a simple avisynth script file for each file, then opening virtualdub and autosaving the video to .avi
rem caution, this will stress your system. you may only be able to handle 1 file at a time. I can input 30 blueray .m2ts files just fine, so long as i set vdub process to idle or low. Modify the code to your hearts content ~ TigerWild
rem create a unique .vcf that you will use with this batch file only. Do this by running Virtualdub, opening a video file, configuring all your settings as you want them, then selecting File->save processing settings->.vcf
rem use a text editor to open the vcf file you made, and add these 2 lines: VirtualDub.Open(VirtualDub.params[0]); VirtualDub.SaveAVI(VirtualDub.params[1]);
rem ---References---
rem http://stackoverflow.com/questions/8749637/dos-command-to-sperate-file-name-and-extension-into-variables
rem http://forum.doom9.org/archive/index.php/t-152842.html with a nod to stax76
答案 1 :(得分:1)
在研究了一些非常相似的方法之后,我刚刚遇到了这个问题。在我看来,最好的办法是编写一个小脚本或程序,生成一次性使用的VirtualDub脚本文件,然后执行它。
例如,我手写了以下脚本来连接三个.avi文件:
// Set Video and Audio to Direct Stream Copy
VirtualDub.video.SetMode(0);
VirtualDub.audio.SetMode(0);
VirtualDub.Open(U"D:\path\to\file1.avi");
VirtualDub.Append(U"D:\path\to\file2.avi");
VirtualDub.Append(U"D:\path\to\file3.avi");
VirtualDub.SaveAVI(U"D:\path\to\concatenatedFile.avi");
VirtualDub.Close();
您可以将其用作模板并从那里开始。