hikikomoriphoenix / Beedio

Android app that lets you find downloadable videos as you browse the web. Allows queuing downloads. Also includes bookmarking and ad-blocking features for easier browsing experience.
GNU General Public License v2.0
148 stars 44 forks source link

Downloaded videos from Vimeo don't play #56

Open hikikomoriphoenix opened 4 years ago

waseem19992 commented 4 years ago

I am also facing the same issue did you find the soulution?

nowfalsalahudeen commented 4 years ago

iam also facing same issue

Iamdeveloperking commented 4 years ago

iam also facing same issue

hikikomoriphoenix commented 4 years ago

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 once the new version is out.

Iamdeveloperking commented 4 years ago

can u upload that issue fixing codes

nowfalsalahudeen commented 4 years ago

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 once the new version is out.

if u dont mind.. please push your latest updates

MarcoPolo267 commented 3 years ago

facing the same issue so do i have to do this?

private String getNextChunkWithVimeoRule(Intent intent, long totalChunks) { String link = intent.getStringExtra("link"); return link.replaceAll("SEGMENT", "segment-0.m4s" + (totalChunks + 1)); }