Opus Recommended Settings: Difference between revisions

From XiphWiki
Jump to navigation Jump to search
(→‎Bandwidth Transition Thresholds: give rough guestimates instead of code thresholds)
mNo edit summary
Line 5: Line 5:
You should test the suggested bitrate by actually '''listening''' to your encoded audio and then tweaking the bitrate:
You should test the suggested bitrate by actually '''listening''' to your encoded audio and then tweaking the bitrate:
* '''down''' if you think the quality is good, but the filesize (or bitrate) is too big
* '''down''' if you think the quality is good, but the filesize (or bitrate) is too big
* '''up''' if you think the quality is bad, and you can afford having bigger files (or bitrate)
* '''up''' if you think the quality is bad, and you can afford having bigger files (or a larger streaming bitrate)


{| class="wikitable" style="text-align:center"
{| class="wikitable" style="text-align:center"
Line 65: Line 65:
You can force downmixing at any bitrate by using the following command-line parameters:
You can force downmixing at any bitrate by using the following command-line parameters:


<code>--downmix-mono</code> - downmixes input channels to mono
<code>--downmix-mono</code> - downmixes all input channels to mono


<code>--downmix-stereo</code> - downmixes input channels to stereo (if there are more than 2 e.g. if your input is surround sound)
<code>--downmix-stereo</code> - downmixes all input channels to stereo (if there are more than 2 input channels, e.g. surround sound)


== Bandwidth Transition Thresholds ==
== Bandwidth Transition Thresholds ==

Revision as of 05:35, 7 November 2016

Depending on what kinds of sounds you want to encode with Opus, you should use different bitrate (quality) settings.

The settings in the table below are meant to start you off with a decent tradeoff between good quality and small filesize (or bitrate usage, if you're streaming).

You should test the suggested bitrate by actually listening to your encoded audio and then tweaking the bitrate:

  • down if you think the quality is good, but the filesize (or bitrate) is too big
  • up if you think the quality is bad, and you can afford having bigger files (or a larger streaming bitrate)
Use Case Channels Bitrate (Kb/s) Notes
Ham radio 1 (mono) use Codec 2 Opus only supports bitrates down to 6 Kb/s. Codec 2 handles speech from 0.7 to 3.2 Kb/s.
VoIP 1 10-24 10 Kb/s will deliver narrowband most of the time, 24 Kb/s should give fullband.
More details in the relevant table further down this page.
Audiobooks / Podcasts 1 24 bitrates from here on up tend to deliver fullband audio.
2 (stereo) 32
Music Streaming / Radio 2 64-96 Opus has better quality than MP3, AAC and Vorbis at these rates.
(test results here and here)
Music Storage 2 96-128 Opus at 128 KB/s (VBR) is pretty much transparent
6 (5.1 surround) 128-256 for surround sound, Opus uses surround-sound bitrate allocation
8 (7.1 surround) 256-450
Music Archiving any use FLAC if you are archiving audio, use a lossless audio format to prevent generation loss

Technical Details

For the more technical Opus users, here are some details to help you fine-tune your decision on which bitrate best fits your needs.

Mono or Stereo

Opus tends to start downmixing stereo inputs to mono from roughly 24 Kb/s and lower. You can check the details in the opus_encoder.c source file.

You can force downmixing at any bitrate by using the following command-line parameters:

--downmix-mono - downmixes all input channels to mono

--downmix-stereo - downmixes all input channels to stereo (if there are more than 2 input channels, e.g. surround sound)

Bandwidth Transition Thresholds

The following table shows rough bitrates that you might want to use to encode audio that has limited frequency bandwidths. This could be useful if your audio has already been bandpassed, or should go through a bandpass filter (e.g. VoIP speech).

(bitrates in Kb/s) Mono Stereo
Voice Music Voice Music
NarrowBand 12 15 ? ?
MediumBand 15 18-22 ? ?
WideBand 16-20 22-28 ? ?
SuperWideBand 24-28 28-32 ? ?
FullBand 28-40 32-64 32-64 64-128

The details of Opus' bandpass thresholds can be found in the opus_encoder.c source file.

The HydrogenAudio wiki also has some great information on Opus and its usage.

Framesize Tweaking

Opus uses a 20 ms frame size by default, as it gives a decent mix of low latency and good quality.