Skip to content

Instantly share code, notes, and snippets.

@jigewxy
Created September 12, 2018 03:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jigewxy/505fa29efe92e95059ab6dc8fdb3b10d to your computer and use it in GitHub Desktop.
Save jigewxy/505fa29efe92e95059ab6dc8fdb3b10d to your computer and use it in GitHub Desktop.
video analyzer
<template>
<div class="about">
<div class="player">
<iframe width="100%" height="100%"
src="https://www.videoindexer.ai/embed/player/00000000-0000-0000-0000-000000000000/9a296c6ec3" frameborder="0" allowfullscreen></iframe>
</div>
<div class="analyzer">
<iframe width="100%" height="780"
src="https://www.videoindexer.ai/embed/insights/00000000-0000-0000-0000-000000000000/9a296c6ec3/?widgets=people,keywords,annotations" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</template>
<script>
</script>
<style>
.about{
display:grid;
grid-template-columns: 5fr 3fr;
grid-column-gap: 10pt;
}
.player{
grid-column: 1;
}
.analyzer{
grid-column: 2;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment