I have multiple 360 videos that I'm trying to concatenate in ffmpeg. The command it self is pretty straightforward:
ffmpeg -f concat -i 0036_concat.txt -c copy -strict unofficial 36.mp4
where 0036_concat.txt
is just a list of the individual files. The issue I'm having is that I can't get ffmpeg to preserve side data. Very simply put, ffprobe
on any of the source files includes this:
Side data:
spherical: equirectangular (0.000000/0.000000/0.000000)
And I can't, for the life of me, get that to propagate to the output file.
this question has a solution that works for single files, but it doesn't work when concatenating multiple files.
I'd be perfectly fine injecting that entire string if anyone knows how.
0036_concat.txt
? – Vogulfile 'name.mp4'\nfile 'name2.mp4'
, etc – Griffiths