Translations:Archive:Kdenlive/Manual/ShootingHints/10/da

From KDE UserBase Wiki
Revision as of 13:48, 11 August 2023 by FuzzyBot (talk | contribs) (FuzzyBot moved page Translations:Kdenlive/Manual/ShootingHints/10/da to Translations:Archive:Kdenlive/Manual/ShootingHints/10/da without leaving a redirect: Part of translatable page "Kdenlive/Manual/ShootingHints")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
# /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