Windows批处理文件:for / F只读取mylist.txt的第一行,然后删除第一行

时间:2018-05-20 02:54:02

标签: windows batch-file ffmpeg command

我运行批处理脚本:

FOR /F "tokens=1" %%F IN (mylist.txt) do C:\VideoConverter\Applications\ffmpeg.exe ^
-f image2 -loop 1 -framerate 0.1 -i "%%~F" -i "%~dpn1.mp3" -codec:v libx264 ^
-s 1920x1080 -acodec copy -strict experimental -movflags faststart -t 00:10:10.00 ^
-f mp4 "%~dpn1.mp4"

在我的文件夹中有以下文件:

file001.mp3
file002.mp3
file003.mp3

mylist.txt包含:

pic001.jpg 
pic002.jpg 
pic003.jpg

目前,该脚本为文件夹中的每个mp3创建3个视频,其中包含3个不同的背景图像。这是错的。

我想只创建这三个视频。

video 1 = file001.mp3 + pic001.jpg (line1) 
video 2 = file002.mp3 + pic002.jpg (line2)
video 3 = file003.mp3 + pic003.jpg (line3)

有人可以帮助我使用for /f命令吗?谢谢你的帮助。

1 个答案:

答案 0 :(得分:2)

我会使用for循环播放视频,将mylist.txt通过stdin(带for)推送到<循环,让set /p捕获它-by-line(每次循环迭代一次)。像这样:

@echo off & setlocal

(
    for %%I in (*.mp3) do (

        rem // set /P grabs one line of input from stdin
        set /P "imagefile="

        setlocal enabledelayedexpansion
        if defined imagefile call :build "%%~I" "!imagefile!" "%%~dpnI.mp4"
        endlocal

        set "imagefile="
    )
) < mylist.txt
rem // The line above dumps mylist.txt into stdin, letting set /P grab one line at a time.

goto :EOF

:build <in_mp3> <in_image> <outfile>
C:\VideoConverter\Applications\ffmpeg.exe -f image2 -loop 1 -framerate 0.1 ^
-i "%~1" -i "%~2" -codec:v libx264 -s 1920x1080 -acodec copy -strict experimental ^
-movflags faststart -t 00:10:10.00 -f mp4 "%~3"