8

これはばかげているように聞こえますが、動作させることができません。違いがわからないと思います%%v, %v% and %v

これが私がやろうとしていることです:

for %%v in (*.flv) do ffmpeg.exe -i "%%v" -y -f mjpeg -ss 0.001 -vframes 1 -an "%%v.jpg"

これにより、各映画のサムネイルが正常に生成されますが、問題は次のとおりです。

movie.flv -> movie.flv.jpg

したがって、最後の4文字を削除し%%vて、それを2番目の変数に使用します。

私はこのようなことを試みてきました:

%%v:~0,-3%

しかし、それは機能しておらず、私が考えることができる反復も機能していません。

何か案は?

4

5 に答える 5

9
for %%v in (*.flv) do ffmpeg.exe -i "%%v" -y -f mjpeg -ss 0.001 -vframes 1 -an "%%~nv.jpg"

「ヘルプ」から:

%~I         - expands %I removing any surrounding quotes (")
%~fI        - expands %I to a fully qualified path name
%~dI        - expands %I to a drive letter only
%~pI        - expands %I to a path only
%~nI        - expands %I to a file name only
%~xI        - expands %I to a file extension only
%~sI        - expanded path contains short names only
%~aI        - expands %I to file attributes of file
%~tI        - expands %I to date/time of file
%~zI        - expands %I to size of file
%~$PATH:I   - searches the directories listed in the PATH
               environment variable and expands %I to the
               fully qualified name of the first one found.
               If the environment variable name is not
               defined or the file is not found by the
               search, then this modifier expands to the
               empty string
于 2008-10-31T01:05:40.377 に答える
8

%%~nV を使用して、ファイル名のみを取得します。

于 2008-10-31T01:01:37.093 に答える
2

私は上記のようにバッチ処理が得意ではありません (代わりに WSH または他のスクリプト言語を使用しています)。

最初の 2 つの形式はforループで使用されます。help for違いを説明します。最初の形式はバッチ ファイルで使用され、2 番目の形式はコマンド プロンプトでコマンドを直接入力 (貼り付け) するときに使用されます。

最後の形式は、変数名 (環境変数) をその値に置き換えるだけです。

set FOO=C:\bar\foo
cd %FOO%\gah
于 2008-10-31T07:06:11.257 に答える