The audioOut function is used to generate audio samples to be given to the sound card. You can use it to generate tones by calculating audio samples and saving them to the sound buffer. The function is not being called because this method of audio generation needs to be initialize by a call to ofSoundStream().
Unfortunately, the ofSoundPlayer object you're using to play the mp3 is not connected to the audioOut function at all. In fact, unless something has changed since I last looked into this, there is no good way to get the "current mix" of sound being played by an app that is using something like ofSoundPlayer to generate sound. The work-around is to re-route the output of the entire app back in as an input, then use the audioInput function to save the samples to the ofxVideoRecorder object.
I have done this in the past using an aux cable that literally went from my audio output jack into my audio input jack. There may also be some third party software solutions to accomplish this without converting to analog.