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

castoro

v0.0.6

Published

A commandline tool to stream local files to Google Chromecast

Downloads

5

Readme

Description

A commandline tool to cast local files to chromecast.

Install

You can user npm published version

npm install -g castoro

or roll one yourself from this repo

npm install -g coffee-script
cd [this repo]
npm run-script prepublish
npm install -g

Usage

Command line usage goes like this

  castoro \
    --mode [original|stream-transcode|transcode] \
    --input [path/to/file.mkv]

Optional arguments

    --ip [ip of your machine]
    --port [http port to use]
    --cli-controller # enables cli controller

Mode(s)

"original"

The tool will stream un-modified input file using HTTP. Since chromecast is picky about formats (expecially audio ones) the file must be properly encoded.

"stream-transcode"

The tool will live transcode the input file to fit chromecast audio capabilities using ffmpeg. At the moment this disables seeking support. Now there is experimental seek support.

"transcode"

The tool will

  1. start to cast the input media to the chromecast using stream-transcode mode (no seeking enabled)
  2. start a transcoding process converts the entire input media
  3. as soon as the transcoding (2) is finished it will switch playback to the trascoded file (seeking will be re-enabled)

Cli controller

Use keys to control playback/volume

  • Up: Volume up
  • Down: Volume down
  • Left: RR (10 min)
  • Shift+Left: RR (1 min)
  • Right: FF (10 min)
  • Shift+Right: FF (1 min)
  • Space: Pause/Unpause
  • key "s": Print player status
  • key "q": Quit

Notes

I use this on OSX where I installed ffmpeg using Homebrew like this

brew install ffmpeg --with-faac --with-fdk-aac

Todos

Pull requests are welcome

  • Make pause/unpause more stable
  • Figure out how to do seeking in 'stream-transcode' mode to make 'transcode' useless
  • Also transcode video when needed (currently we just transcode audio)
  • Automatically figure out available port
  • Automatically figure out appropriate ip
  • Support multiple chromecasts in the same network
  • Maybe create a user interface served with express