android-youtubeExtractor icon indicating copy to clipboard operation
android-youtubeExtractor copied to clipboard

Deprecated: Android based YouTube URL extractor and downloader

Results 110 android-youtubeExtractor issues
Sort by recently updated
recently updated
newest added

I am trying to make this library work much in the way that it does within Youtube. Such as, what is the default "iTag" used by a player. Is there...

Hello one time ytFiles returns null then after every time other video ytFiles returns null and when app are kill in background and run again working all video so please...

if (ytFiles != null) { int itag = 18; String downloadUrl = ytFiles.get(itag).getUrl(); Uri url = Uri.parse(downloadUrl); playVideo(url); Log.d("shantanu",downloadUrl); }else{ Log.d("shantanu", String.valueOf(ytFiles)); }

I have a general question. Is extracting youtube URL and then playing it in other than youtube player legal? Also if it is, does that not violate and of google...

Most of the videos work, but some do not. This one for example: https://www.youtube.com/watch?v=6gkdOX-c7iI as ytFiles comes as null. I have enabled logging and tried extracting it and this is...

I tried the following video and does not extract https://youtu.be/YkuxquOHsj0 any idea

For some of the video extractor returns empty formats: []. What is the reason and how can I fix this?

Not working for videos that contain ad's at the start of the video. Sample Videos: https://www.youtube.com/watch?v=xx-zOkBh7Ag https://www.youtube.com/watch?v=yqiNOCfn-wU

Hi, I found a defect while reading/getting cipher signature from matcher group. Pattern patEncSig = Pattern.compile("s=(.{10,}?)(\\\\\\\\u0026|\\z)"); --- mat2 = patEncSig.matcher(cipher); if (mat2.find()) { sig = URLDecoder.decode(mat2.group(1), "UTF-8"); Qlog.d(TAG,"The final signature...