How to embed video from other streaming site

Stywn.romi

Junior Member
Joined
Jun 19, 2018
Messages
131
Reaction score
6
Hello folks

As the title, i want to know how to embed video from other sources streaming site, ex indoxx1 site,i belive they use google drive with jw player,is that possible to embed their video to my site?
 
It's definitely possible. If you are lazy, you can always set up a ghetto hack using an iFrame.
 
It's definitely possible. If you are lazy, you can always set up a ghetto hack using an iFrame.
I was searching on google but no get the result how to embed, any plugin or may be code to embed?
 
I was searching on google but no get the result how to embed, any plugin or may be code to embed?
There probably won't be an easy plugin to embed the video unless the site specifically wants you to embed their videos (like YouTube, DailyMotion, etc.). But you can do it pretty easily with an iFrame. Something like:

Code:
<iframe width="600" height="400" sandbox="allow-forms allow-scripts" src="https://indoxx1.com/movie/avengers-infinity-war-2018-6f4g/play"></iframe>

See this page:
  • https://www.w3schools.com/Tags/tryit.asp?filename=tryhtml_iframe
If you just want to load the player and not the entire page, it should be possible with some jQuery hack. Something like this:
  • https://stackoverflow.com/questions/8335198/how-to-load-url-into-div-tag
 
Back
Top