I am using the following command to record video on my desktop with the audio on the sound card. But, the volume of the audio recording is much lower than it should be. How can I get the audio to record at the same level that it was playing at when the video and audio were recorded?
ffmpeg -f gdigrab -framerate ntsc -video_size 1920x1080 -i desktop -f dshow -i audio="Microphone (Realtek High Definition Audio)" -vcodec libx264 -pix_fmt yuv420p -preset ultrafast D:\output.mp4
I have tried increasing the volume after the video was created using the following command. But, it doesn't sound right, there is a sort of "wah-wah" sound that I can now hear.
ffmpeg -i F:\input.mp4 -vcodec copy -af "volume=30dB" F:\output.mp4