[ prog / sol / mona ]

prog


Help on the Way

93 2022-10-05 08:56

>>92
You don't need to break lines on pipes.

find . -type f -print0    |  # list all files
xargs -0 -n1 ffprobe 2>&1 |  # extract media information
awk '...'                 |  # do something with it
less

Should work just fine.

103


VIP:

do not edit these