How to remove the audio from a 360 video?

NewPond 9 Nov 2019 08:20
Is there a way to remove the audio from 360 footage shot with Theta V? Many thanks.
silverspex 22 Nov 2019 11:55
You don't state which format the files are, but you could always try https://ffmpeg.org and run the following from CLI/shell:

ffmpeg -i yourfile.ext -c:v copy -an outfile.ext

-i yourfile.ext = the input video file
-c:v copy = codec:video copy, or copy video codec (as-is, no reencoding)
-an = no audio

This will only copy the video content (provided ffmpeg support the video file you're using). Metadata tagging the video as 360 should be copied too by default. If not, try adding -map_metadata 0 before outfile.