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

vsmeta-to-nfo

v1.0.0

Published

Convert Synology .vsmeta files to Kodi/Jellyfin compatible NFO files.

Downloads

85

Readme

vsmeta-to-nfo

Convert Synology Video Station .vsmeta metadata files into generic Kodi/Jellyfin compatible .nfo XML files.

Synology has officially deprecated Video Station with DSM 7.2.2. If you are migrating to Jellyfin, Kodi, Plex, or other generic ecosystems, this tool helps you translate your existing closed-format .vsmeta sidecar files into standard, openly parsable movie.nfo / tvshow.nfo / episodedetails.nfo files directly alongside your source media.

This package provides both a command-line tool for batch conversion and a programmatic interface for integrating the conversion logic into scripts.

Installation

# Global install for CLI use
npm install -g vsmeta-to-nfo

# Or install locally
npm install vsmeta-to-nfo

CLI Usage

Installed Package

You can point the CLI tool directly to a specific file or run it against a directory, where it will automatically scan for .vsmeta files recursively.

# Process a single file
vsmeta-to-nfo ./path/to/movie.mp4.vsmeta

# Recursively scan a directory and process all discovered .vsmeta files
vsmeta-to-nfo ./path/to/library

Running Locally (From Source)

If you've cloned the repository and want to run the tool without installing it globally, you can execute it directly from the source code.

# Install dependencies first
npm install

# Option 1: Run directly using tsx
npx tsx src/cli.ts ./path/to/library --dry-run

# Option 2: Build and run the compiled output
npm run build
node dist/cli.js ./path/to/library

Options

  • -d, --dry-run: Simulate the process without writing any actual .nfo files.
  • -f, --overwrite: By default, the script skips generation if an .nfo file already exists at the target location. This option overrides that safeguard.
  • -v, --verbose: Append a concise list of all skipped or failed files and errors at the end of the console execution run.

Safety Checks

  • Existing .nfo check: Automatically skips if a matching .nfo exists (unless --overwrite is specified).
  • Missing Media check: The script checks the directory to ensure a matching media file (e.g., movie.mp4, movie.mkv) actually exists next to the .vsmeta. If it doesn't (indicating a leftover un-cleaned .vsmeta file), it skips .nfo creation.

Programmatic API

You can safely import standard handlers if mapping .vsmeta programmatically.

import { convertVsMetaToNfo } from 'vsmeta-to-nfo';

// Converts the sidecar and returns the resulting ConvertResult object containing status details.
// `status` can be 'SUCCESS', 'WARN', 'SKIP', or 'ERROR'.
const result = convertVsMetaToNfo('./libraries/movies/MyMovie (2020).mp4.vsmeta', {
  dryRun: false,
  overwrite: true,
});

if (result.status === 'SUCCESS') {
    console.log(`Generated: ${result.nfoPath}`);
} else {
    console.log(`Failed/Skipped: ${result.message}`);
}

License

MIT License