[PeerTube] Support livestreams

This commit is contained in:
bopol 2021-06-18 16:25:10 +02:00
parent 65fd8740aa
commit 7d7cc087e2
2 changed files with 8 additions and 3 deletions

View File

@ -199,7 +199,7 @@ public class PeertubeStreamExtractor extends StreamExtractor {
@Nonnull
@Override
public String getHlsUrl() {
return "";
return json.getArray("streamingPlaylists").getObject(0).getString("playlistUrl");
}
@Override
@ -227,6 +227,11 @@ public class PeertubeStreamExtractor extends StreamExtractor {
throw new ParsingException("Could not get video streams", e);
}
if (getStreamType() == StreamType.LIVE_STREAM) {
final String url = getHlsUrl();
videoStreams.add(new VideoStream(url, MediaFormat.MPEG_4, "720p"));
}
return videoStreams;
}
@ -283,7 +288,7 @@ public class PeertubeStreamExtractor extends StreamExtractor {
@Override
public StreamType getStreamType() {
return StreamType.VIDEO_STREAM;
return json.getBoolean("isLive") ? StreamType.LIVE_STREAM : StreamType.VIDEO_STREAM;
}
@Nullable

View File

@ -82,7 +82,7 @@ public class PeertubeStreamInfoItemExtractor implements StreamInfoItemExtractor
@Override
public StreamType getStreamType() {
return StreamType.VIDEO_STREAM;
return item.getBoolean("isLive") ? StreamType.LIVE_STREAM : StreamType.VIDEO_STREAM;
}
@Override