JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://popcornjs.org/code/dist/popcorn-complete.min.js"></script>
<video height="180" width="300" id="video" controls> 
<source src="http://localhost/audio_video/video/googoosh.mp4"></source>
<source src="http://localhost/audio_video/video/googoosh.ogv"></source>

</video>
<div id="flickrdiv"></div>

JavaScript

// create our popcorn instance
var p = Popcorn( "#video" )
      // play the video
      .play()
      // set the volume to zero
      .volume( 0 )
      .flickr({
        start: 1,
        end: 5,
        userid: "35034346917@N01",
        target: "flickrdiv"
      });