Skip to content

Instantly share code, notes, and snippets.

@DannySotzny
Last active June 27, 2016 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DannySotzny/6ec5d587cfcec07c798ebc8a4f807bcc to your computer and use it in GitHub Desktop.
Save DannySotzny/6ec5d587cfcec07c798ebc8a4f807bcc to your computer and use it in GitHub Desktop.
Set Make and Modell to Ricoh Theta S to upload panoram to Facebook as Panorama Picture
@echo off
title Set Exif Data
echo SET EXIF DATA FOR FACEBOOK PANORAMA droplet
IF "%~1" == "" GOTO ERROR
IF NOT EXIST "%~1" GOTO ERROR
FOR %%V in (%*) do "%~dp0\exiftool" -Make="RICOH" -Model="RICOH THETA S" "%%~V"
GOTO DONE
:ERROR
echo.
echo Drag and drop panorama images on this droplet
echo to set exif data for facebook panorama
echo.
:DONE
echo.
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment