ffmpeg script to convert files - Programming On Unix

Users browsing this thread: 1 Guest(s)
ckester
Nixers
(15-03-2021, 07:57 PM)Ramiferous Wrote: So are the curly brackets necessary? seems to work without them.

Not sure if this is what you're asking about, but:

Code:
for i in *.mkv *.webm

and

Code:
for i in *.{mkv,webm}

generate the same list of files, although the syntax used to describe the pattern to be matched is slightly different. The bracketed notation is just a compact way to say either file extension will do.

It's a handy way to avoid retyping the common elements of two or more arguments. E.g.,

Code:
cp original{,.bak}

expands to

Code:
cp original original.bak

Apologies if I've misunderstood your question and explained something you already knew!


Messages In This Thread
ffmpeg script to convert files - by pfr - 15-03-2021, 12:22 AM
RE: ffmpeg script to convert files - by movq - 15-03-2021, 02:59 AM
RE: ffmpeg script to convert files - by s0kx - 15-03-2021, 03:00 AM
RE: ffmpeg script to convert files - by movq - 15-03-2021, 03:15 AM
RE: ffmpeg script to convert files - by pfr - 15-03-2021, 07:57 PM
RE: ffmpeg script to convert files - by ckester - 16-03-2021, 01:41 AM
RE: ffmpeg script to convert files - by pfr - 16-03-2021, 07:25 PM