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

@warren-bank/exoairplayer-youtube-sender

v2.2.0

Published

Command-line utility to 'cast' videos from YouTube to ExoAirPlayer.

Downloads

44

Readme

exoairtube

Command-line utility to "cast" videos from YouTube to ExoAirPlayer.

Supports:

  • YouTube URLs: videos and playlists
  • ExoAirPlayer API endpoints: /play and /queue

Installation:

npm install --global @warren-bank/exoairplayer-youtube-sender

Usage:

exoairtube <options>

========
options:
========

"--help"
    Print a help message describing all command-line options.

"-V"
"--version"
    Display the current version.

"-u" <URL>
"--url" <URL>
    Specify the YouTube URL to play on ExoAirPlayer.
    Examples:
    - video (format 1)
        https://www.youtube.com/watch?v=IQ4dUowGAKI
    - video (format 2)
        https://youtu.be/IQ4dUowGAKI
    - playlist (format 1)
        https://www.youtube.com/playlist?list=UUFgSnQojiEXb9-N3ViRdRnA
    - playlist (format 2)
        https://www.youtube.com/watch?v=IQ4dUowGAKI&list=UUFgSnQojiEXb9-N3ViRdRnA

"-s" <seconds>
"--start-at" <seconds>
    Specify an amount of time to seek within the first video to begin playback.
    When not specified, this value can also be extracted from the YouTube URL.

"-r" <range>
"--playlist-range" <range>
    Specify a subset of videos in a playlist in "--url".
    Spec for <range>:
      [-]<start_index>[:]<stop_index>
    Where:
    * [-]
      - is optional
      - indicates that the resulting subset of videos
        should be sorted in reverse order
      - is implied when <start_index> is greater than <stop_index>
    * <start_index>
      - is an integer in the range:
          [1 .. <count_of_videos_in_playlist>]
      - is included in subset of videos
      - is required
    * [:]
      - any non-numeric non-empty string can be used as a delimiter
      - is optional
    * <stop_index>
      - is an integer in the range:
          [<start_index> .. <count_of_videos_in_playlist>]
      - is included in subset of videos
      - is optional
      - default value depends on whether <range> ends with a [:] delimiter
        * if not: <start_index>
          range:  cherry picks a single video at <start_index>
        * if yes: <count_of_videos_in_playlist>
          range:  includes <start_index> and all videos that follow
    * <count_of_videos_in_playlist>
      - has a maximum value of: 100
    Example:
      - <range> specs (all equivalent):
          1) -r "-5:10"
          2) -r "-5-10"
          3) -r "-5..10"
          4) -r "10:5"
      - videos included in all example <range> specs:
          [10,9,8,7,6,5]
    Default: "1:"

"-h" <IP_address>
"--device-host" <IP_address>
    Specify the hostname or IP for an instance of ExoAirPlayer.

"-p" <port>
"--device-port" <port>
    Specify the port for the instance of ExoAirPlayer at "--device-host".
    Default: 8192

"-t" <seconds>
"--discovery-timeout" <seconds>
    Specify the length of time (in seconds) to perform mDNS discovery.
    Discovery is used to find instances of ExoAirPlayer on the LAN.
    Discovery is not performed when "--device-host" is specified.
    When timeout occurs,
    * a list of all found devices is displayed
    * the user is prompted to choose a single device to use for playback
    Default: 15

"-q"
"--queue"
    Specify that the pre-existing queue on the playback device should be preserved.
    Videos resolved from "--url" are silently appended.
    Default:
    * the pre-existing queue is replaced
    * the new queue contains the list of videos resolved from "--url"
    * the first video in the new queue begins playback

"-v"
"--verbose"
    Specify that verbose logging should be enabled.
    Extremely long and detailed log messages will be written to stdout.

Credits:

Legal: