Step 3: Injecting Photo Sphere XMP Metadata

Metadata is any data that helps describe the content or characteristics of a file.

Adobe’s Extensible Metadata Platform (XMP) is a file labeling technology that lets you embed metadata into files.

ProjectionType is one of the XMP GPano Tags, which written by Google Photosphere.

This tutorial demonstrate the steps of:

  1. Injecting Photo Sphere XMP Metadata into your photo

This is one of the requirments for Facebook to detect your photo is a spherical 360 photo.

Method 1: Web-based Exif Editor


Method 2: Exiftool


Linux

Install exiftool

# Debian, Ubuntu, Linux Mint, ...
sudo apt-get -y install libimage-exiftool-perl

# CentOS, RadHat, Amazon Linux, ...
sudo yum install -y perl-Image-ExifTool

Add Exif XMP tag

exiftool -ProjectionType="equirectangular" IMG_0001.jpg

macOS

Install exiftool

Add Exif XMP tag

exiftool -ProjectionType="equirectangular" IMG_0001.jpg

Windows

Install exiftool

Add Exif XMP tag

exiftool -ProjectionType="equirectangular" IMG_0001.jpg

By GUI Exif Editor

  1. Select your photo
  2. Click ExifTool direct
  3. Enter -ProjectionType="equirectangular" into command box below, then hit Enter Add tag

Reference