<label for="file">Upload Video</label>
<input type="file" accept=".mp4, .mkv, .mpeg4" id="file" class="video-input">
<button class="capture-btn">Capture</button>
<div class="source-vid"></div>
<div class="result"></div>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<label for="videourl"> | |
Vimeo or YouTube URL | |
</label> | |
<br/> | |
<input type="text" v-model="videoURL" placeholder="Enter URL" id="videourl"> | |
<div v-if="videoURL != ''"> | |
Extracted Thumbnail: <br/> |
Integrate Google Sign-in (Popup method) with Nuxt.js - Works in Incognito mode as well
Nuxt 3 version here.
export default {
...
Render markdown for your feed module inside nuxt.config.js
Pre-requisite:
You should have @nuxtjs/markdownit
and @nuxtjs/feed
installed
npm i @nuxtjs/markdownit @nuxtjs/feed
Then, configure your nuxt.config.js as follows