HaarigerHarald / android-youtubeExtractor

Deprecated: Android based YouTube URL extractor and downloader
Other
877 stars 304 forks source link

Move to new Youtube-Extractor library #238

Closed Rider02vn closed 1 year ago

Rider02vn commented 1 year ago

Hi. This library has been discontinued and has not been maintained for a long time. Please use new Youtube-Extractor library . It's perect working https://github.com/Rider02vn/Youtube-Extractor

Mathias8405 commented 1 year ago

Hi. This library has been discontinued and has not been maintained for a long time. Please use new Youtube-Extractor library . It's perect working https://github.com/Rider02vn/Youtube-Extractor

What dependencies do you use for this? I want to use this code in a Kotlin app for Android

Rider02vn commented 1 year ago

Hi. This library has been discontinued and has not been maintained for a long time. Please use new Youtube-Extractor library . It's perect working https://github.com/Rider02vn/Youtube-Extractor

What dependencies do you use for this? I want to use this code in a Kotlin app for Android

@Mathias8405 Please contact: Mail: rider02vn@gmail.com Skype: Click here

fiasko131 commented 1 year ago

@Mathias8405 It seems that recently a change in the youtube share url has appeared. You must therefore make this modification to the URL of the share:

if (YTsharedUrl.contains("watch?v=watch?v=")){
       YTsharedUrl= YTsharedUrl.replace("watch?v=watch?v=","watch?v=");
}

Paid library posted by @Rider02vn "https://github.com/Rider02vn/Youtube-Extractor" is a scam!!

Rider02vn commented 1 year ago

@Mathias8405 It seems that recently a change in the youtube share url has appeared. You must therefore make this modification to the URL of the share:

if (YTsharedUrl.contains("watch?v=watch?v=")){
       YTsharedUrl= YTsharedUrl.replace("watch?v=watch?v=","watch?v=");
}

Paid library posted by @Rider02vn "https://github.com/Rider02vn/Youtube-Extractor" is a scam!!

Humm. Please submit proof. Don't slander others like that.

Mathias8405 commented 1 year ago

@Mathias8405 It seems that recently a change in the youtube share url has appeared. You must therefore make this modification to the URL of the share:

if (YTsharedUrl.contains("watch?v=watch?v=")){
       YTsharedUrl= YTsharedUrl.replace("watch?v=watch?v=","watch?v=");
}

Paid library posted by @Rider02vn "https://github.com/Rider02vn/Youtube-Extractor" is a scam!!

Yeah, I figured it was a scam. Plus, I refuse to pay for a library that was initially free especially at a price gouging price. So, the share link is the download link?

fiasko131 commented 1 year ago

The link returned to be used by the extractor is the link that is given (under android) by sharing the video. Recently it is not in the form: https://www.youtube.com/watch?v=watch?v=FzWGvx1pmFA&feature=share. Mais il doit être modifié comme ceci: https://www.youtube.com/watch?v=FzWGvx1pmFA&feature=share.

Rider02vn commented 1 year ago

We sell because we put effort and time into researching and coding the library. Our library is different from this one. What's wrong with that? You want everything to be free for you to use?

We have never scammed anyone. If accusing us of fraud please provide a video to prove it.

We are also ready to demo to prove our library is still working properly. And those who slander us are petty, lowly, very disgraceful people.

fiasko131 commented 1 year ago

@Rider02vn The proof is that I can still get the audio and video URLs. So contrary to what you say this library continues to work if we take care to check the sharing URL or we must delete the duplicate "watch?v=". Your super expensive proposal is therefore a scam here on github.

Rider02vn commented 1 year ago

Liên kết được trình giải nén trả lại để sử dụng là liên kết được cung cấp (trong android) bằng cách chia sẻ video. Gần đây nó không ở dạng: https://www.youtube.com/watch?v=watch?v=FzWGvx1pmFA&feature=share . Mais il doit être modifié comme ceci: https://www.youtube.com/watch?v=FzWGvx1pmFA&feature=share .

Who are you ? Why slander us? Take a video to prove we're a scam and upload it here. Don't lie without proof. You are a failure, an evil person.

fiasko131 commented 1 year ago

Ok, so immediately give your prices for this library that we laugh!!

fiasko131 commented 1 year ago

You say : "This library has been discontinued and has not been maintained for a long time."

It's simply false!!

Rider02vn commented 1 year ago

Ok, so immediately give your prices for this library that we laugh!!

What does the price have to do with you slandering us?

fiasko131 commented 1 year ago

Your prices: "We have built the source code into a library, which you can easily integrate into your project. There are 2 option of payment:

  1. Subscription (Get stream through our server, used for 1 app, extra 30$/month for every next app):
    • 300$ for 3 months
    • 550$ for 6 months
    • 1050$ for 12 months
  2. Pro (We provide the full source code library, get the stream directly to the Youtube server, so the speed will be faster and more stable, no limit to the number of apps used): 1500$" :(( No comment!
Mathias8405 commented 1 year ago

@Mathias8405 It seems that recently a change in the youtube share url has appeared. You must therefore make this modification to the URL of the share:

if (YTsharedUrl.contains("watch?v=watch?v=")){
       YTsharedUrl= YTsharedUrl.replace("watch?v=watch?v=","watch?v=");
}

Paid library posted by @Rider02vn "https://github.com/Rider02vn/Youtube-Extractor" is a scam!!

This library is using YouTubeExtractor constructor in the library. How are you getting YTShareUrl as your library constructor? We maybe using different library dependencies?

Rider02vn commented 1 year ago

What a bad guy, a failure.

Screenshot_20230817_215713_Skype

fiasko131 commented 1 year ago

The url you need to use for the extractor must be a share url on android. Which you retrieve with an intent to your application. This url must be in this form: " https://www.youtube.com/watch?v=FzWGvx1pmFA&feature=share"

Then you use it to extract the links to the sound or video depending on the itag.

Comme ceci :

new YouTubeExtractor(activity) {
                                                    @Override
                                                    public void onExtractionComplete(SparseArray<YtFile> ytFiles, VideoMeta vMeta) {
                                                        if (ytFiles != null) {

                                                            int itag = 140; // for audio only

                                                            playableURL = ytFiles.get(itag).getUrl();
                                                            yoututubeThumbUrl = vMeta.getThumbUrl();
                                                            youtubeTitle = vMeta.getTitle();

                                                        }
                                                    }
                                                }.extract("yourYouTubeSharedUrl");
Mathias8405 commented 1 year ago

The url you need to use for the extractor must be a share url on android. Which you retrieve with an intent to your application. This url must be in this form: " https://www.youtube.com/watch?v=FzWGvx1pmFA&feature=share"

Then you use it to extract the links to the sound or video depending on the itag.

Comme ceci :

new YouTubeExtractor(activity) {
                                                    @Override
                                                    public void onExtractionComplete(SparseArray<YtFile> ytFiles, VideoMeta vMeta) {
                                                        if (ytFiles != null) {

                                                            int itag = 140; // for audio only

                                                            playableURL = ytFiles.get(itag).getUrl();
                                                            yoututubeThumbUrl = vMeta.getThumbUrl();
                                                            youtubeTitle = vMeta.getTitle();

                                                        }
                                                    }
                                                }.extract("yourYouTubeSharedUrl");

Thanks!

fiasko131 commented 1 year ago

What a bad guy, a failure.

Screenshot_20230817_215713_Skype

You are pathetic!!!

Rider02vn commented 1 year ago

We do not welcome people who just want to use it for free, do not acknowledge the work of others. Close at here

Mathias8405 commented 1 year ago

It's not always about money you greedy bastard! We can acknowledge others by saying thank you! That's good enough! You can take your library and your greedy price gouging prices elsewhere!

On Thu, Aug 17, 2023, 10:34 AM Rider02vn @.***> wrote:

We do not welcome people who just want to use it for free, do not acknowledge the work of others. Close at here

— Reply to this email directly, view it on GitHub https://github.com/HaarigerHarald/android-youtubeExtractor/issues/238#issuecomment-1682495591, or unsubscribe https://github.com/notifications/unsubscribe-auth/AYJDZA2HTMSJ2AMCRQFGWODXVY2X7ANCNFSM6AAAAAA3LA74NQ . You are receiving this because you were mentioned.Message ID: @.***>