diff --git a/index.html b/index.html index 7c72121..81dae82 100644 --- a/index.html +++ b/index.html @@ -108,6 +108,18 @@

Learn about more advanced FFmpeg concepts

+ + + +
+
Batch and Loop script usage
+

ffmpeg -nostdin -i input_file ...

+

One of the frequent uses of FFmpeg is to run batch commands within loops to, for example, generate access files for an entire collection at once.

+

When running an FFmpeg command within a loop it is often necessary to use the -nostdin flag prior to the input in order to ensure successful execution of the commands. This is needed to override FFmpeg's default behavior of enabling interaction on standard input which can result in errors as loop inputs are fed to the ongoing command.

+ +
+ +