You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the file get-companion-json-path-for-media-file.ts you can add the following
// Edge case where google/iOS creates a thumbnail as a JPG for an MP4 and saves it in a json sidecar possible for iOS Live Photosif(mediaFileExtension==='.MP4'||mediaFileExtension==='.mp4'){potentialJsonFileNames.push(`${mediaFileNameWithoutExtension}.JPG.json`);potentialJsonFileNames.push(`${mediaFileNameWithoutExtension}.jpg.json`);}
The text was updated successfully, but these errors were encountered:
JakeAi
changed the title
Support MP4
Support MP4 / iOS Live Photos
Feb 8, 2022
arewm
added a commit
to arewm/google-photos-exif
that referenced
this issue
Oct 15, 2022
Edge cases included:
* .mp4 can use jpec and heic json files: mattwilson1024#26
* Counters may collide with other rules
* Long filenames are truncated: mattwilson1024#28
* Some json files have .j and .jp as the media extension
Signed-off-by: arewm <[email protected]>
arewm
added a commit
to arewm/google-photos-exif
that referenced
this issue
Oct 15, 2022
Edge cases included:
* `.mp4 can use jpeg and heic json files: mattwilson1024#26
* Counters may collide with other rules
* Long filenames are truncated: mattwilson1024#28
* Some json files have `.j` and `.jp` as the media extension
Signed-off-by: arewm <[email protected]>
In the file
get-companion-json-path-for-media-file.ts
you can add the followingThe text was updated successfully, but these errors were encountered: