convert a MOV file to an MP3 audio file using FFmpeg
The command to convert a MOV file to an MP3 audio file using FFmpeg is `ffmpeg -i input.mov -vn -acodec libmp3lame -qscale:a 2 output.mp3`, which specifies input, disables video, sets audio codec and quality, and names the output file.
Read more