Quote:
Originally Posted by Quazar
Thank you very much. You were right, the audio is recorded properly (unless the stream has been muted manually).
For future googlers: This is the command I use for converting the files.
Code:
ffmpeg -i INPUT_PATH -c:v libx264 -crf 23 -c:a libvo_aacenc -g:a 100 OUTPUT_PATH
|
Why are you re-encoding the video? Re-encoding video takes a long time and you will lose some video quality. I would replace "-c:v libx264 -crf 23" with "-c:v copy."
What is the "-g:a 100" option? I don't see "-g:a" in FFmpeg's help or html documents.