• Support
  • Downloading the 2D/Flat Versions of videos?

Is it possible to download the flat versions of the videos?

Don't think so.
But you can just run this into Terminal once you have the video downloaded

cd ~/Documents/FOLDERNAME

ffmpeg -i "NAME.mp4" -filter:v "v360=input=hequirect:output=flat:in_stereo=sbs:out_stereo=2d:d_fov=125:w=1920:h=1080:pitch=0" -map 0 -c copy -c:v libx265 -crf 18 -pix_fmt yuv420p flat.mp4

for file in *.mp4; do ffmpeg -i "$file" -vcodec copy -acodec copy -tag:v hvc1 "${file%.mp4}_converted.mp4"; done