View Single Post
  #4  
Old 04-04-2015, 11:17 PM
slim10 slim10 is offline
Member
 
Join Date: Jun 2013
Posts: 47
slim10 is on a distinguished road
Default

Re: RTMPDump - No audio


Quote:
Originally Posted by Quazar View Post
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.
Reply With Quote