I use Microsoft Azure Blob Storage to stored my video.
How do I generate the thumbnail from the video's url that I get from backend using ajax.
axios.post('my-api')
     .then(function(response) {
        var videoUrl = response.data.url;
        // How to generate thumbnail here
     })
 
    