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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@pithmediaserver/pith

v0.1.0

Published

pith is a lightweight media server that aims to seamlessly integrate your networked media devices. It can act as a standard UPnP media server, but you can also use the built-in web interface to playback media in your browser, or use the same web interface

Downloads

3

Readme

pith

pith is a lightweight media server that aims to seamlessly integrate your networked media devices. It can act as a standard UPnP media server, but you can also use the built-in web interface to playback media in your browser, or use the same web interface to stream media directly to supported devices and control playback on those devices.

Features:

  • UPnP/DLNA support: it acts as both a media server as well as a control device for Media Renderers
  • Media Library: set up a media library by scanning your media files. Movies and TV shows are automatically recognized and catalogued. Metadata is fetched from TMDb and/or locally found kodi-style .nfo files.
  • Sonarr and CouchPotato integration: directly browse your Sonarr or CouchPotato libraries without having to set up scanning. Quick and efficient.
  • Least-effort live-transcoding (experimental): playback your media files in the browser without worrying about codecs. pith will live-transcode your files for your browser automatically, and tries to do as little as possible while doing so to keep the load on your server low, as well as hardware requirements.
  • Works great with Kodi; the UPnP media server works great for Kodi. It exposes the same metadata Kodi uses internally, so it's just like having the media locally on your Kodi box. Playback state is shared between all devices; so if you stop playing on one device, you can easily resume playback on another from the same point in time.

Getting started

Install prerequisites

$ sudo apt-get install mongodb-server nodejs ffmpeg

If you just want to run the latest release, you can do so using just:

$ npx @pithmediaserver/pith

This will automatically download the latest version and start it. If you don't care for the automatic version checking, you can also install it as a global module:

$ npm install -g @pithmediaserver/pith
$ pith

Navigate to the URL that is mentioned in the logging, and click the menu to go into settings to set up your media path and library. Restart pith after saving those settings.

Running from GitHub

If you'd like to run the latest (unpublished) code, then continue reading.

Clone the project:

$ git clone https://github.com/Evinyatar/pith.git pith
$ cd pith

Install node and build the web interface

$ npm install
$ npm run-script build

Start it up

$ npm start