## 11秒以上の動画の音が消える現象
AVCaptureMovieFileOutputのmovieFragmentIntervalがデフォルトで10秒となっているらしい。
撮影前の設定としてmovieFragmentIntervalを以下のように変更する。
let fileOutput = AVCaptureMovieFileOutput()
output.movieFragmentInterval = CMTime.invalid
参考: Stack Overflow: No sound if video is more then 12 seconds [duplicate]