Translations:Archive:Kdenlive/Manual/ShootingHints/10/uk
# /source/directory # /destination/directory # # change to destination directory cd /destination/directory #find all *.MXF files in a specific directory and loop through them using the variable 'i' for i in /source/directory/*.MXF do # use mxfsplit to convert files STREAM=`mxfsplit -m $i | grep “File=” | cut -c 31-52` # rename the files so they make sense, appending the word 'converted' to the end of the basename mv *.Stream "`basename $i .MXF`converted.MXF" #end loop done