We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5bb313a + d61e10b commit c9174a7Copy full SHA for c9174a7
picard/formats/vorbis.py
@@ -483,6 +483,6 @@ def OggContainerFile(filename):
483
return guess_format(filename, options)
484
485
486
-OggContainerFile.EXTENSIONS = [".ogg"]
+OggContainerFile.EXTENSIONS = [".ogg", ".ogx"]
487
OggContainerFile.NAME = "Ogg"
488
OggContainerFile.supports_tag = VCommentFile.supports_tag
test/formats/test_vorbis.py
@@ -439,6 +439,10 @@ def test_ogg_audio(self):
439
open_format,
440
self._copy_file_tmp('test.ogg', '.oga'),
441
vorbis.OggVorbisFile)
442
+ self._test_file_is_type(
443
+ open_format,
444
+ self._copy_file_tmp('test.ogg', '.ogx'),
445
+ vorbis.OggVorbisFile)
446
447
def test_ogg_opus(self):
448
self._test_file_is_type(
0 commit comments