HaarigerHarald / android-youtubeExtractor

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

decipherJsFile = null ,it make execption file not found at line 479 in YoutubeExtractor.java (master branch) #130

Open Livekus opened 4 years ago

Livekus commented 4 years ago

if (decipherFunctionName == null || decipherFunctions == null) { String decipherFunctUrl = "https://s.ytimg.com/yts/jsbin/" + decipherJsFileName;

        BufferedReader reader = null;
        String javascriptFile;
        URL url = new URL(decipherFunctUrl);
        HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
        urlConnection.setRequestProperty("User-Agent", USER_AGENT);
        try {
            reader = new BufferedReader(new InputStreamReader(urlConnection.getInputStream()));
nhCoder commented 4 years ago

Check out this lib its working perfectly right now https://github.com/naveedhassan913/YouTubeExtractor

Livekus commented 4 years ago

thank you very much