UNPKG

google-photos-migrate

Version:

A tool to fix EXIF data and recover filenames from a Google Photos takeout.

9 lines (8 loc) 291 B
import { readFile } from 'fs/promises'; export async function readMetaTitle(mediaFileInfo) { if (!mediaFileInfo.jsonPath) return undefined; const metaJson = (await readFile(mediaFileInfo.jsonPath)).toString(); const meta = JSON.parse(metaJson); return meta?.title; }