2

我编写了一个批处理脚本,试图获取一个运行 12 秒的通用介绍性标题视频 (MP4),并将其附加到其他 4 个 MP4 视频的开头(相同的视频,但每个视频都有不同的语言音轨)

根据此处的ffmpeg语法:http: //ffmpeg.org/trac/ffmpeg/wiki/How%20to%20concatenate%20%28join,%20merge%29%20media%20files concat demuxer需要从一个文本文件运行看起来像这样:

# this is a comment
file '/path/to/file1'
file '/path/to/file2'
file '/path/to/file3'

我相信在加入文件之前我的脚本中的所有内容似乎都可以正常工作。但我得到这个错误:

[concat @ 04177d00] Line 2: unknown keyword ''C:\Users\Joe\1May\session3\readyforfinalconversion\frenchfile.mp4'
filelistFrench.txt: Invalid data found when processing input
[concat @ 03b70a80] Line 2: unknown keyword ''C:\Users\Joe\1May\session3\readyforfinalconversion\spanishfile.mp4'
filelistSpanish.txt: Invalid data found when processing input
[concat @ 0211b960] Line 2: unknown keyword ''C:\Users\Joe\1May\session3\readyforfinalconversion\basquefile.mp4'
filelistBasque.txt: Invalid data found when processing input
[concat @ 03a20a80] Line 2: unknown keyword ''C:\Users\Joe\1May\session3\readyforfinalconversion\Englishfile.mp4'
filelistEnglish.txt: Invalid data found when processing input

我相信问题在于我正在创建的文本文件。请原谅我的无知,但有时像我这样的新脚本制作者会对开发人员术语感到困惑,并且可能会从字面上理解。

因此,当我查看他们提供的示例文本文件时,我认为这就是我的文本文件应该是什么样子的想法是否正确?

# this is a comment
Titlefile.mp4 'C:\Users\Joe\1May\session3\readyforfinalconversion\Titlefile.mp4'
Englishfile.mp4 'C:\Users\Joe\1May\session3\readyforfinalconversion\Englishfile.mp4'

再说一遍,我是不是太直白了?报价是否正确?斜线是否正确?在示例中,他们提供的路径中的斜杠是 / 而不是普通的 windows \ 。如果有帮助,我将提供整个脚本。

@echo off

setlocal EnableDelayedExpansion

rem Create an array of languages
set i=0
for %%a in (French Spanish Basque English) do (
   set /A i+=1
   set term[!i!]=%%a
)

rem Get the title video file name from user

set /p titlevideofilename=What is the title video file 

name?

rem create a path variable for the title video file

set pathtotitlevideo=%~dp0%titlevideofilename%

rem Get the names of the different language video files to append to the title video
rem create a path variable for each different language video files

for /L %%i in (1,1,4) do (
   set /p language[%%i]=what is the name of the !term

[%%i]! file you want to append after the title video?
   set pathtofile[%%i]=%~dp0!language[%%i]!
)

rem create data file for ffmpeg based on variable data

for /L %%i in (1,1,4) do (
    echo # this is a comment>>filelist!term[%

%i]!.txt
    echo file '%pathtotitlevideo%'>>filelist!term[%

%i]!.txt
    echo file '!pathtofile[%%i]!'>>filelist!term[%

%i]!.txt
)

cls

rem join files using ffmpeg concat option

for /L %%i in (1,1,4) do (
   c:\ffmpeg\ffmpeg\bin\ffmpeg.exe -loglevel error -f 

concat -i filelist!term[%%i]!.txt -c copy !language[%

%i]!.!term[%%i]!.withtitle.mp4
)

endlocal

:eof
exit

编辑
感谢@foxidrive 让我看到它的简单性......我突然想到,显然我不够字面意思。我进行了这 3 项更改,脚本现在完美运行 1:示例中的“文件”字面意思是“文件”一词 2:需要使用单引号而不是双引号,如示例中所示。3:使用“\”而不是“/”,就像他们在那里的例子一样。

所以现在我创建文本文件的代码如下所示:

rem create data file for ffmpeg based on variable data

for /L %%i in (1,1,4) do (
    echo # this is a comment>>filelist!term[%

%i]!.txt
    echo file '%pathtotitlevideo%'>>filelist!term[%

%i]!.txt
    echo file '!pathtofile[%%i]!'>>filelist!term[%

%i]!.txt
)

所以现在我的文本文件看起来像这样:

# this is a comment    
file 'C:\Users\Joe\1May\session3\readyforfinalconversion\Titlefile.mp4'
file 'C:\Users\Joe\1May\session3\readyforfinalconversion\Englishfile.mp4'
4

2 回答 2

9

通过阅读您的问题,我建议配置文件可能如下所示:

# this is a comment
file 'C:\Users\Joe\1May\session3\readyforfinalconversion\Titlefile.mp4'
file 'C:\Users\Joe\1May\session3\readyforfinalconversion\Englishfile.mp4'

对于 Windows,它可能需要路径\文件名周围的双引号而不是单引号。尝试两种方式。

于 2013-08-28T01:36:38.967 回答
3

操作系统视窗

第 1 步:创建一个文件,例如 C:\iAmAFile.txt,其内容如下并保存

file 'C:\video1.flv'
file 'C:\video2.flv'

第 2 步:下载 FFmpeg http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20140716-git-faafd1e-win32-static.7z。解压,进入文件夹,你会发现一个 ff.prompt.bat 文件,类似于命令提示符打开它。

在此处输入图像描述

第 3 步:现在应用教程命令(Concat demuxer 更可靠,它不会破坏编码器/解码器只是复制)https://trac.ffmpeg.org/wiki/How%20to%20concatenate%20(join,%20merge )%20media%20files#demuxer

> ffmpeg -f concat -i C:\iAmAFile.txt -c copy C:\output.flv

完毕

于 2014-07-16T23:04:42.470 回答