This plugins can generate a thumbnail from a remote or local video file.
cordova plugin add cordova-plugin-video-thumbnail2
- Android
 - iOS
 
window.videoThumbnail
  .createThumb({
    videoPath: "/video1.mov",
    width: 100,
    height: 100,
    kind: 1 //android only
  })
  .then(
    thumb => {
      //base64 encoded thumbnail
    },
    error => {
      //deal with error
    }
  );References:
https://github.com/lulee007/cordova-plugin-video-thumbnail by @lulee007