Advertisement
Guest User

Untitled

a guest
Jun 27th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. @echo off
  2. title Set Exif Data
  3. echo SET EXIF DATA FOR FACEBOOK PANORAMA droplet
  4.  
  5. IF "%~1" == "" GOTO ERROR
  6. IF NOT EXIST "%~1" GOTO ERROR
  7.  
  8. FOR %%V in (%*) do "%~dp0\exiftool" -Make="RICOH" -Model="RICOH THETA S" "%%~V"
  9.  
  10. GOTO DONE
  11.  
  12. :ERROR
  13. echo.
  14. echo Drag and drop panorama images on this droplet
  15. echo to set exif data for facebook panorama
  16. echo.
  17.  
  18.  
  19. :DONE
  20. echo.
  21. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement