ExifTool Forum

ExifTool => The "exiftool" Application => Topic started by: GISSimplified on July 26, 2024, 05:30:54 AM

Title: Merge MP4 videos while appending EXIF metadata
Post by: GISSimplified on July 26, 2024, 05:30:54 AM
How to merge multiple MP4 videos while appending EXIF metadata in merged video.
Title: Re: Merge MP4 videos while appending EXIF metadata
Post by: Phil Harvey on July 26, 2024, 06:58:07 AM
You can use ffmpeg to merge the videos.  ExifTool can write static metadata to the resulting video (not EXIF because videos don't support EXIF metadata, instead use QuickTime or XMP tags).  But nothing I know of can write timed metadata (eg. GPS track) if that is what you want.

- Phil
Title: Re: Merge MP4 videos while appending EXIF metadata
Post by: GISSimplified on July 26, 2024, 11:59:49 AM
I am having multiple MP4 videos with coordinates stored in Quicktime tag. I have already merged video but want to combine metadata (including GPS coordinates with date and time) and apply to merged video.
Title: Re: Merge MP4 videos while appending EXIF metadata
Post by: Phil Harvey on July 26, 2024, 04:19:32 PM
Try this command:

exiftool -tagsfromfile ORIGINAL_FILE "-all:all<quicktime:all" MERGED_FILE

- Phil
Title: Re: Merge MP4 videos while appending EXIF metadata
Post by: StarGeek on July 27, 2024, 12:38:12 AM
You can also use the exif2xmp.args file (https://github.com/exiftool/exiftool/blob/master/arg_files/exif2xmp.args) to copy any EXIF tags into the corresponding XMP tags.
Title: Re: Merge MP4 videos while appending EXIF metadata
Post by: GISSimplified on July 27, 2024, 02:12:37 AM
Quote from: Phil Harvey on July 26, 2024, 04:19:32 PMTry this command:

exiftool -tagsfromfile ORIGINAL_FILE "-all:all<quicktime:all" MERGED_FILE

- Phil

I tried this command but it is not copying all quicktime metadata from source to destination MP4 file. Even multiple MP4 files having same Quicktime tag like Track1:GPSLatitude, Track1:GPSLongitude etc. How they will be copied into merged file. I want all of them to be retained rather than overwrite due to same tag name.
Title: Re: Merge MP4 videos while appending EXIF metadata
Post by: Phil Harvey on July 27, 2024, 05:39:12 AM
ExifTool creates only top-level tags in QuickTime-format files.  It won't write to Track1.   Also, see the QuickTime tags documentation (https://exiftool.org/TagNames/QuickTime.html) to see which tags are writable (GPSLatitude/GPSLongitude aren't -- you need to use GPSCoordinates).

- Phil