Advertisement
epheterson

Move Metadata on Ricoh Theta S 360 Videos with exiftool

Dec 1st, 2015
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #!/bin/bash
  2. FILES=*_er.MP4
  3. for f in $FILES
  4. do
  5. echo "Processing $f file..."
  6. origFile=$(echo $f | sed 's/_er//g')
  7. exiftool -tagsFromFile $origFile $f
  8. exiftool '-FileModifyDate<TrackCreateDate' $f
  9. chflags nohidden $f
  10. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement