Closed wishygupta closed 1 year ago
I am getting this error
java.nio.file.FileSystemNotFoundException: Provider "http" not installed at java.base/java.nio.file.Path.of(Path.java:212) at java.base/java.nio.file.Paths.get(Paths.java:98)
When I read playlist
MasterPlaylist playlist = parser.readPlaylist(Paths.get(new URI(sourceUrl)));
Hi,
Paths.get usually only works with local files. You probably want to use a http client to fetch the playlist content before feeding it to the parser.
Cheers, Anton
I am getting this error
java.nio.file.FileSystemNotFoundException: Provider "http" not installed at java.base/java.nio.file.Path.of(Path.java:212) at java.base/java.nio.file.Paths.get(Paths.java:98)
When I read playlist
MasterPlaylist playlist = parser.readPlaylist(Paths.get(new URI(sourceUrl)));