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

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

Open Livekus opened this issue 5 years ago • 2 comments

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()));

Livekus avatar Jan 15 '20 04:01 Livekus

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

nhCoder avatar Jan 17 '20 10:01 nhCoder

thank you very much

Livekus avatar Jan 20 '20 06:01 Livekus