TIL `objc_msgSend`'s new prototype; usign ffmpeg to convert audio in video
Read objc_msgSend’s New Prototype.
Learn to use ffmpeg to convert audio: ffmpeg -f f32le -ar 44100 -ac 1 -i output.pcm output.wav
-
-ar 44100sets sample rate -
-ac 1number of channels. should match number of channels in source audio otherwise output is fast or slow.