youtube-jextractor icon indicating copy to clipboard operation
youtube-jextractor copied to clipboard

This library is dead

Open LuqmanArif2051 opened this issue 3 years ago • 7 comments

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.

LuqmanArif2051 avatar Aug 26 '21 10:08 LuqmanArif2051

I agree. +1

Hvitserk1999 avatar Aug 30 '21 15:08 Hvitserk1999

true

amrashraf1992 avatar Sep 21 '21 11:09 amrashraf1992

true

souravnoobcoder avatar Feb 01 '22 13:02 souravnoobcoder

Works well for me

lm41 avatar Apr 03 '22 09:04 lm41

It isn't working anymore. Works again. I did a big refactor and now it works well again

lm41 avatar Apr 03 '22 11:04 lm41

它不再工作了。再次工作。我做了一个很大的重构,现在它再次运行良好 Can you share your solution? Thank you

Jun19 avatar Apr 28 '22 02:04 Jun19

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
}

lm41 avatar Apr 28 '22 08:04 lm41