Loremar Marabillas
Loremar Marabillas
The file generated from this project and pushed into my mock repo is java. Therefore it is not a case of github misreporting the language. It looks like this project...
I finally solved this. Download needs to start at segment-0.m4s which is the initialization segment. This was tricky because segment-0.m4s does not show in `onLoadResource()`. I will close this issue...
Hi, thank you for letting me know. I'll work on it as soon as I can.
Try this for mp3 after getting content type from response headers: `if (contentType.equals("audio/mpeg"))` Or try audio/mpeg3 or whatever you see in this link -> [https://stackoverflow.com/questions/12017694/content-type-for-mp3-download-response](https://stackoverflow.com/questions/12017694/content-type-for-mp3-download-response) For other formats, basically you'll...
What I would usually do is log the urls from onLoadResource like this: ``` webView.setWebViewClient(new WebViewClient() { @Override public void onLoadResource(final WebView view, final String url) { Log.v("MyTag", url); }...
I fixed it. [New Release Here.](https://github.com/hikikomoriphoenix/LM-videodownloader/releases/tag/v1.0.1) Changes in the code: ``` // Skip twitter video chunks. if (host.contains("twitter.com") && contentType.equals("video/mp2t")) { return; } ``` and ``` } else if (host.contains("facebook.com")...
So what I did was, I used the Flash Video Downloader extension in Chrome Browser. Went to a facebook page with a streaming video. Copied the link address of the...
You can try to add more keywords in res/values/videourl_filters.xml. ``` mp4 video googleusercontent embed mp3 audio mpeg ``` Make sure you have this code: ``` String urlLowerCase = url.toLowerCase(); String[]...
These ts files are usually streamed using an m3u8 file which lists all these ts files. All you have to do is extract this list and concatenate all the files...
Looks like this problem is exclusive to older versions. Works fine in my phone