Question / Help How to output audio separately from video.

ender_scythe

New Member
So I'm running the 32-bit version and I'm trying to record just audio, in mp3 format. I have been going through the settings and I can't find anything. So how do I make it so the audio is separate in an mp3 format?
 

Sapiens

Forum Moderator
OBS doesn't record audio only. Record to MP4/FLV as usual and then demux the audio track afterwards with FFmpeg. For example:

ffmpeg -i obs_output.mp4 -acodec copy -vn your_audio_track.mp3

Replace obs_output.mp4 with the name of the video file you're working with, and replace your_audio_track.mp3 with the name you want to give to the audio file.
 
Top