Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- FILES=*_er.MP4
- for f in $FILES
- do
- echo "Processing $f file..."
- origFile=$(echo $f | sed 's/_er//g')
- exiftool -tagsFromFile $origFile $f
- exiftool '-FileModifyDate<TrackCreateDate' $f
- chflags nohidden $f
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement