We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9441f4a commit 392bf48Copy full SHA for 392bf48
NEWS
@@ -1,5 +1,6 @@
1
ver 0.24.6 (not yet released)
2
* decoder
3
+ - ffmpeg: handle "*.opus" files
4
- mpg123: another workaround for libmpg123 ID3 corruption bug
5
- opus: fix seeking in files with large OpusTags
6
src/decoder/plugins/FfmpegDecoderPlugin.cxx
@@ -726,6 +726,9 @@ ffmpeg_suffixes() noexcept
726
suffixes.emplace("dsf"sv);
727
} else if (StringIsEqual(codec->name, "dst")) {
728
suffixes.emplace("dst"sv);
729
+ } else if (StringIsEqual(codec->name, "opus") ||
730
+ StringIsEqual(codec->name, "libopus")) {
731
+ suffixes.emplace("opus"sv);
732
} else if (StringStartsWith(codec->name, "wma"sv)) {
733
/* there are codecs "wmav1", "wmav2" etc. and
734
they usually come in "*.wma" files */
0 commit comments