Print out master playlist URL for LiveJasmin
This commit is contained in:
parent
dd2b8041d7
commit
3e4483aabd
|
@ -112,6 +112,7 @@ public class LiveJasminModel extends AbstractModel {
|
||||||
@Override
|
@Override
|
||||||
public List<StreamSource> getStreamSources() throws IOException, ExecutionException, ParseException, PlaylistException {
|
public List<StreamSource> getStreamSources() throws IOException, ExecutionException, ParseException, PlaylistException {
|
||||||
String masterUrl = getMasterPlaylistUrl();
|
String masterUrl = getMasterPlaylistUrl();
|
||||||
|
LOG.debug("Master playlist: {}", masterUrl);
|
||||||
List<StreamSource> streamSources = new ArrayList<>();
|
List<StreamSource> streamSources = new ArrayList<>();
|
||||||
Request req = new Request.Builder().url(masterUrl).build();
|
Request req = new Request.Builder().url(masterUrl).build();
|
||||||
try(Response response = site.getHttpClient().execute(req)) {
|
try(Response response = site.getHttpClient().execute(req)) {
|
||||||
|
|
Loading…
Reference in New Issue