When I go to this url : (warning: some Ad-blocker is recommended)
The web-page link loads fine, without errors.
However, when I try to load same page via iframe
in my html code, an error appears:
My html code :
<html>
<head>
</head>
<body>
<iframe width="600" height="700"
src="https://openload.co/embed/M4pSomdJWME/?c1_file=http://tugaflix.com/legendas/716bac991518958ad95df18200c906c3.srt&c1_label=Legenda">
</iframe>
</body>
</html>
Below image: Error result within my iframe. How to fix such error?
If you're willing to design/code your own player interface then one loading option is to use a
<video>
tag instead of via<iframe>
tag...I'm not going to tell you how to
stealaccess any video by code, but some advice is:1) You can see in the source code that a server
1508775191~213.205.0.0
is accessed for media files including subtitle VTT file). Study rest of source code. Consider whytoken
is mentioned and whyreferrer
is checked. What can you do pass and get same access?2) By using your browser's Developer Tools (especially "network" and "console" tabs), you can find the related
https://oload.stream/stream/
url for any future updates or alternate embeds.PS:
Look at source code of: http://tugaflix.com/Episodio?E=2310910&S2/
You will see that no
iframe
is mentioned or used... They are even using two different player interfaces so you cannot assume that tugaflix.com is loading this pagehttps://oload.stream/embed/M4pSomdJWME
within someiframe
. They are instead accessing the MP4 video file from some server calledhttps://lemonade-fruit.fruithosted.net/
The target site has code that prevents it from being shown in an Iframe. Unfortunately you will not be able to use that url in an Iframe.