Embedded video and 3D

Video embedding

The below Python code experiments with retrieving video data via iframe embedding. Video from TIB AV Portal.

Code
from IPython.display import HTML
HTML("""
<iframe width="600" height="315" scrolling="no" src="https://av.tib.eu/player/56162" frameborder="0" allowfullscreen></iframe>
""")

3D model embedding

The below Python code experiments with retrieving 3D data via iframe embedding. 3D models from demo instance of Semantic Kompakkt at kompakkt.wbworkshop.tibwiki.io

Code
from IPython.display import HTML
HTML("""
<iframe
  width="600" height="315"
  name="Cube STL"
  src="https://kompakkt.wbworkshop.tibwiki.io/viewer/?entity=63e91957f3dcab9b642046ce&mode=open"
  allowfullscreen
  loading="lazy"
></iframe>
""")
Code
from IPython.display import HTML
HTML("""
<iframe
  width="600" height="315"
  name="Monopterus Schloss Monaise Trier Temple"
  src="https://kompakkt.wbworkshop.tibwiki.io/viewer/?entity=63e8d2fbfbc272b762204e1c&mode=open"
  allowfullscreen
  loading="lazy"
></iframe>
""")