How to get stream link from video hosting sites?

bluejax

Newbie
Joined
Jun 24, 2011
Messages
46
Reaction score
3
I'm planning to make an android streaming application for mobile media player like (MX Player, VLC) which will stream from video hosting sites like openload, videoweed, googledrive etc. So when a video is requested thru the app it fetches from the video host and will be played directly on the player instead of browser.


Here are some sample links:

https://openload.co/f/gNvglF48eZU/BN_18.mp4

https://www.rapidvideo.com/v/FS7OH0VDTA

https://vidcloud.co/v/5b1c04768f8fa/Batman.Ninja.2018.1080p.BluRay.x264-YTS.AM.mp4

https://drive.google.com/open?id=11dY-1VQ0-l_iRPgpxVtsyv08ChrzeNED
 
You need parcers to get direct . Mp4 links. The openload link you can get via api. The others via php scripts or python
 
you need to get the passer which can go to choose app for playing video
 
You need parcers to get direct . Mp4 links. The openload link you can get via api. The others via php scripts or python

For openload I tried the API, but it is not working.

Tried below requests:

Account Infos

Code:
https://api.openload.co/1/account/info?login={login}&key={key}

Download Ticket

Code:
https://api.openload.co/1/file/dlticket?file={file}&login={login}&key={key}

Both are giving me below error, even though login and key are correct.

{"status":403,"msg":"Authentication failed","result":null}

What could be the issue?
 
Your authentication is failed. You have to add an valid api key and password.
PS: if you don't know how to do it, hire an freelancer or learn some scripting language.
 
OK, now its working. But the link I received from this, is only working on the IP on which it is extracted. If I share the link or put in the player of my app, it won't play on other IPs.

"download ISP is different to request ISP. request: AS9541 download: AS25019" on web browser.

"Can't play this link" on MX player.
 
You have to proxying the content. It's easy!! You need just an good server
 
The app is almost complete. But my coders are not getting what you said above:

"You have to proxying the content. It's easy!! You need just an good server."


Anyone could you please help in getting direct links from video hosts mentioned above in first post.

Thanks.
 
https://oload.download/api#download-getlink
https://api.rapidvideo.com/
https://vidcloud.co/api
Only for gdrive you need custom script
 
Back
Top