0

Guys! I was wanting to know if anyone can tell me how to losslessly convert FLAC audio to LPCM without any quality loss at all?

This is info from of the mkv. Stream #0:0: Video, Stream #0:1: Audio: flac, 48000 Hz, stereo, s16, Stream #0:2: Subtitle: ass

ffmpeg -i A.mkv -map 0 -c:v copy -c:a ??? -ar 48000 -ac 2 -c:s copy B.mkv

What the correct command to convert flac 16 bit to pcm 16 bit

1 Answer 1

0
ffmpeg -i input.mkv -map 0 -c copy -c:a pcm_s16le output.mkv
1
  • Thank you for the correct ffmpeg format.
    – niko7496
    Commented Mar 31, 2021 at 3:17

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .