youtube-jextractor
youtube-jextractor copied to clipboard
This library is dead
I added this library in my project and it doesn't work neither owner resolves issues. I will not recommend this useless library. try any other.
I agree. +1
true
true
Works well for me
It isn't working anymore. Works again. I did a big refactor and now it works well again
它不再工作了。再次工作。我做了一个很大的重构,现在它再次运行良好 Can you share your solution? Thank you
Can you share your solution? Thank you
I don't know why it is working again, but it is working with this Kotlin function:
fun loadYoutubeContent(videoId: String) : VideoPlayerConfig? {
try {
val youtubeJExtractor = YoutubeJExtractor()
val videoDataInner = youtubeJExtractor.extract(videoId)
return videoDataInner
} catch (e: YoutubeRequestException) {
Log.e("EXTRACTIONERROR","", e)
} catch (e: NullPointerException) {
Log.e("EXTRACTIONERROR","", e)
}
return null
}