[Solved] How to convert video(mp4) file into audio(mp3) file while uploading video [closed]


You can use ffmpeg to do this on all platforms. https://ffmpeg.org/

ffmpeg -i input_video.mp4 -vn output_audio.mp3

Note that this reencodes the audiostream and is therefore slower than directly extracting it with a more specific command, depending on codecs used.

solved How to convert video(mp4) file into audio(mp3) file while uploading video [closed]