zvoice
zvoice

Reputation: 165

How to convert audio file using ffmpeg API?

How to convert PCM to flac using only ffmpeg API, but not the ffmpeg binary? I am looking for the full explanation of the process, but not only a solution

Upvotes: 0

Views: 783

Answers (1)

sashoalm
sashoalm

Reputation: 79457

The best way is to look at the source of the ffmpeg binary itself, it uses the ffmpeg APIs itself. There are also code samples there. Here's the ffmpeg source code.

Upvotes: 1

Related Questions