Skip to content

Instantly share code, notes, and snippets.

@DannySotzny
Last active June 27, 2016 20:41
Embed
What would you like to do?
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