Skip to content

Commit af1dddb

Browse files
authored
Merge pull request #96 from Bleuzen/enable_opus
Enable opus format 251
2 parents 1eff8c5 + 9af07a2 commit af1dddb

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

  • extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube

extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/ItagItem.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,14 @@ public class ItagItem {
3434
////////////////////////////////////////////////////////////////////
3535
// AUDIO ID ItagType Format Bitrate ///
3636
//////////////////////////////////////////////////////////////////
37-
// Disable Opus codec as it's not well supported in older devices
38-
// new ItagItem(249, AUDIO, WEBMA, 50),
39-
// new ItagItem(250, AUDIO, WEBMA, 70),
40-
// new ItagItem(251, AUDIO, WEBMA, 160),
4137
new ItagItem(171, AUDIO, WEBMA, 128),
4238
new ItagItem(172, AUDIO, WEBMA, 256),
4339
new ItagItem(139, AUDIO, M4A, 48),
4440
new ItagItem(140, AUDIO, M4A, 128),
4541
new ItagItem(141, AUDIO, M4A, 256),
4642
new ItagItem(249, AUDIO, OPUS, 50),
4743
new ItagItem(250, AUDIO, OPUS, 70),
48-
new ItagItem(160, AUDIO, OPUS, 160),
44+
new ItagItem(251, AUDIO, OPUS, 160),
4945

5046
/// VIDEO ONLY ////////////////////////////////////////////
5147
// ID Type Format Resolution FPS ///

0 commit comments

Comments
 (0)