Audio recorded with MediaRecorder on Chrome missing duration Audio recorded with MediaRecorder on Chrome missing duration google-chrome google-chrome

Audio recorded with MediaRecorder on Chrome missing duration


I found at the ffmpeg documentation that we can set metadata at the conversion using this option:

//-metadata[:metadata_specifier] key=value (output,per-metadata)//Set a metadata key/value pair.ffmpeg -i in.avi -metadata title="my title" out.flv

You can also test if the duration conversion limit works on your case:

//-t duration (input/output)//When used as an input option (before -i), limit the duration of data read from the input file.//When used as an output option (before an output url), stop writing the output after its duration reaches duration.