Can Bitmovin be used for only audio?

Hi @kevin.rizzo , thanks bringing this up in the community. To answer your question, yes, audio-only encoding is perfectly possible with our Encoder, but note that such use case is only available via our API SDKs and not via the Dashboard platform, as our systems default to video in that case…

You could use this example as a starting point, where you’ll just need to remove all references to video: https://github.com/bitmovin/bitmovin-api-sdk-examples/blob/main/java/src/main/java/FixedBitrateLadder.java

Here are some useful guides to get you started using the API SDKs:

All examples above are in Java for simplicity reasons, but note that we offer our SDKs in Python, PHP, Javascript, etc as well, so please feel free to choose the language that better suits your needs.

Finally, I’d like to highlight that, once the audio-only encoding is completed, you could also use our Player for audio-only playback of that content, as shown here: Creating player in audio mode

Regards