npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@qy-upup/veo

v1767166.928.398

Published

Professional integration for https://supermaker.ai/video/veo/

Readme

Veo

Veo is a lightweight JavaScript library designed for seamless video manipulation and processing within web applications. It provides a simplified interface for common video tasks, enhancing developer productivity.

Installation

Install Veo using npm: bash npm install veo

Usage Examples

Here are a few examples demonstrating how to use Veo in your JavaScript/Node.js projects:

1. Basic Video Duration Retrieval: javascript const veo = require('veo');

async function getVideoDuration(videoPath) { try { const duration = await veo.getDuration(videoPath); console.log(Video duration: ${duration} seconds); } catch (error) { console.error("Error getting video duration:", error); } }

// Example usage (replace with your video file path) getVideoDuration('path/to/your/video.mp4');

2. Generating a Video Thumbnail: javascript const veo = require('veo');

async function generateThumbnail(videoPath, outputPath) { try { await veo.generateThumbnail(videoPath, outputPath); console.log(Thumbnail generated at: ${outputPath}); } catch (error) { console.error("Error generating thumbnail:", error); } }

// Example usage (replace with your video file path and output path) generateThumbnail('path/to/your/video.mp4', 'path/to/your/thumbnail.jpg');

3. Trimming a Video Segment: javascript const veo = require('veo');

async function trimVideo(videoPath, outputPath, startTime, duration) { try { await veo.trim(videoPath, outputPath, startTime, duration); console.log(Video trimmed and saved to: ${outputPath}); } catch (error) { console.error("Error trimming video:", error); } }

// Example usage (replace with your video file path, output path, start time, and duration in seconds) trimVideo('path/to/your/video.mp4', 'path/to/your/trimmed_video.mp4', 5, 10); // Trim from 5 seconds for 10 seconds.

4. Converting Video Format: javascript const veo = require('veo');

async function convertVideo(inputPath, outputPath, format) { try { await veo.convert(inputPath, outputPath, format); console.log(Video converted to ${format} and saved to: ${outputPath}); } catch (error) { console.error("Error converting video:", error); } }

// Example usage (replace with your video file path, output path, and desired format) convertVideo('path/to/your/video.mp4', 'path/to/your/converted_video.avi', 'avi');

5. Retrieving Video Metadata: javascript const veo = require('veo');

async function getVideoMetadata(videoPath) { try { const metadata = await veo.getMetadata(videoPath); console.log("Video Metadata:", metadata); } catch (error) { console.error("Error retrieving video metadata:", error); } }

// Example usage (replace with your video file path) getVideoMetadata('path/to/your/video.mp4');

API Summary

  • getDuration(videoPath): Asynchronously retrieves the duration of a video file in seconds.

    • videoPath (string): The path to the video file.
    • Returns: Promise<number> - A promise that resolves with the duration in seconds.
  • generateThumbnail(videoPath, outputPath): Asynchronously generates a thumbnail image from a video file.

    • videoPath (string): The path to the video file.
    • outputPath (string): The path where the thumbnail image should be saved.
    • Returns: Promise<void> - A promise that resolves when the thumbnail is generated.
  • trim(videoPath, outputPath, startTime, duration): Asynchronously trims a video segment from a video file.

    • videoPath (string): The path to the video file.
    • outputPath (string): The path where the trimmed video should be saved.
    • startTime (number): The start time of the segment to trim, in seconds.
    • duration (number): The duration of the segment to trim, in seconds.
    • Returns: Promise<void> - A promise that resolves when the video is trimmed.
  • convert(inputPath, outputPath, format): Asynchronously converts a video file to a specified format.

    • inputPath (string): The path to the input video file.
    • outputPath (string): The path where the converted video should be saved.
    • format (string): The desired output format (e.g., 'avi', 'mov', 'mp4').
    • Returns: Promise<void> - A promise that resolves when the video is converted.
  • getMetadata(videoPath): Asynchronously retrieves metadata information from a video file.

    • videoPath (string): The path to the video file.
    • Returns: Promise<object> - A promise that resolves with an object containing video metadata. The structure of the object may vary depending on the video file.

License

MIT

This package is part of the veo ecosystem. For advanced features and enterprise-grade tools, visit: https://supermaker.ai/video/veo/