Return mp3-128 audio stream [experimental]
This commit is contained in:
parent
43dc3c3d4c
commit
80d67e22b7
1 changed files with 10 additions and 2 deletions
|
@ -18,6 +18,7 @@ import org.schabi.newpipe.extractor.stream.*;
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class BandcampStreamExtractor extends StreamExtractor {
|
public class BandcampStreamExtractor extends StreamExtractor {
|
||||||
|
@ -177,7 +178,14 @@ public class BandcampStreamExtractor extends StreamExtractor {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<AudioStream> getAudioStreams() throws IOException, ExtractionException {
|
public List<AudioStream> getAudioStreams() throws IOException, ExtractionException {
|
||||||
return null;
|
List<AudioStream> audioStreams = new ArrayList<>();
|
||||||
|
|
||||||
|
audioStreams.add(new AudioStream(
|
||||||
|
albumJson.getJSONArray("trackinfo").getJSONObject(0)
|
||||||
|
.getJSONArray("file").getJSONObject(0).getString("mp3-128"),
|
||||||
|
MediaFormat.MP3, 128
|
||||||
|
));
|
||||||
|
return audioStreams;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -204,7 +212,7 @@ public class BandcampStreamExtractor extends StreamExtractor {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public StreamType getStreamType() throws ParsingException {
|
public StreamType getStreamType() throws ParsingException {
|
||||||
return null;
|
return StreamType.AUDIO_STREAM;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue