Last active
June 27, 2016 20:41
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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