UNPKG

@numairawan/video-duration

Version:

Get video duration from any url and video object in nodejs and browser.

12 lines (8 loc) 226 B
const { videoDuration } = require("../src/main"); (async () => { // Get video duration let info = await videoDuration( "./example/file_example_MP4_640_3MG.mp4" ); console.log(info); })();