How to bypass anti robot system

kraftyourself

Newbie
Joined
Dec 22, 2024
Messages
10
Reaction score
2
There is a video host that has a random position play button as protection and it also dissalow direct access to embed links. How would you go about downloading videos from their embed links. I guess play button could be located and clicked with some python library. But how do I get to the url where video is coming from. I really dont know nothing about networking. Any help appreciated.
 
There is a video host that has a random position play button as protection and it also dissalow direct access to embed links. How would you go about downloading videos from their embed links. I guess play button could be located and clicked with some python library. But how do I get to the url where video is coming from. I really dont know nothing about networking. Any help appreciated.
for random position play button - locate the play button using element selectors (use appium inspector or uiautomator viewer to find element resource IDs, XPath or accessibility IDs)
to locate a video url - use browser developer tools or programmatic methods to capture network requests (look for video file requests or streaming segments)
 
Back
Top