Skip to content

Commit

Permalink
Wrong FileTime #1 Issue solved
Browse files Browse the repository at this point in the history
  • Loading branch information
anderbggo committed Oct 30, 2022
1 parent cd83cf5 commit 1a302c0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Binary file modified GPMatcher.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Google Photos Matcher (v 1.0)
# Google Photos Matcher (v 1.2)

Simple executable to match metadata from JSONs to original images/videos.

Expand Down
3 changes: 1 addition & 2 deletions files/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ def mainProcess(browserPath, window, editedW):
continue

# METADATA EDITION

timeStamp = int(data['creationTime']['timestamp']) # Get creation time
timeStamp = int(data['photoTakenTime']['timestamp']) # Get creation time
print(filepath)

if title.rsplit('.', 1)[1].casefold() in piexifCodecs: # If EXIF is supported
Expand Down

2 comments on commit 1a302c0

@GlockenspielLight
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Windows 11 system message when attempting to run GPMatcher.exe:
"This app can't run on your PC.
To find a version for your PC, check with the software publisher."

@racskobalazs
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello there,

Is there any method of running this program with a script of some sort?
I have more than 170 folder just exported from google photos and I just wanted to see if I can give the folder for example as a parameter from cmd, and run it that way?
Thanks in advance!

Please sign in to comment.