Upload a GoPro MAX 360 Video to Mapillary via Oracle Cloud Infrastucture and Mapillary CLI
Posted by GA_Kevin on 13 February 2025 in English.Prerequisites
To follow along with this tutorial, please setup and configure a Oracle Cloud instance for mapillary tools. Please refer to this guide for instructions on how to accomplish this.
Uploading a 360 video to Mapillary on Oracle Cloud instance from ARM computer
- Login to Oracle Cloud Instances.
- Select your Mapillary instance configured from this guide.
- On the top bar, click Start to boot your instance and note any public IP address changes.
- Open Terminal and SSH into your Oracle instance.
ssh -i ~/.ssh/oracle_mapillary_keys/[your private key (not .pub)] opc@[IP Address copied from Oracle]
- Open a second terminal window and copy files from your local machine / SD card / elsewhere to your Oracle instance. This will place the file into the folder on your instance you created during configuration.
scp -i ~/.ssh/oracle_mapillary_keys/[your private key (not .pub)] [/path/to/local/360/file] opc@[IP Address copied from Oracle]:~/mapillary
- Wait for these file(s) to transfer to the Oracle instance and switch back to the instance terminal window. Upload the transferred files to Mapillary.
mapillary_tools process_and_upload ~/mapillary/*.360
- Wait for the upload(s) to complete. Delete the files off the instance and gracefully exit the instance.
rm ~/mapillary/*.360 && exit
- Return to Oracle dashboard on the web, select Stop from the top bar to stop the instance from running while not in use.