ffmpeg -i [input_file] -vcodec copy -an [output_file]
Export as mp4 otherwise safari will not be able to stream the file. The qscale 0 directive instructs ffmpeg not to adjust quality of the video during conversion.
ffmpeg -i [input_file.webm] -qscale 0 [output_file.mp4]