Files
shaka-player/docs/tutorials/welcome.md
T
Joey Parrish 42b40bd3da Require NodeJS v8+ and NPM v5+
This updates our build requirements to NodeJS v8+ and NPM v5+, both
released in 2017.

This also clarifies our support for Python 3 (not well-documented
before) to the version we are using on Debian, v3.5.

Requiring NodeJS v8+ means our node tools (like our extern generator)
no longer need shims for compatibility.  This allows us to drop the
"es6-shim" and "array-includes" modules.

In NPM v5+, the "prepublish" script has been deprecated, and replaced
with "prepublishOnly" (which is what we want) and "prepare" (the old
behavior we had to work around).  This allows us to drop the
"in-publish" module.

Change-Id: Ied189c76a58fe981c12d41155b834f2d6ea73bbd
2019-05-15 20:32:34 +00:00

3.3 KiB

Welcome to Shaka Player

Shaka Player is a JavaScript library for adaptive video streaming. It plays DASH content without browser plugins using MediaSource Extensions and Encrypted Media Extensions.

Shaka Player is meant to be deployed after being compiled. The tools you need to compile the sources and documentation are included in the sources: Closure Compiler, Closure Linter, and JSDoc.

If you are integrating Shaka Player into another Closure-based project, our build process will generate externs for Shaka Player itself.

If you installed Shaka Player via npm, the source has been compiled and the externs have been generated.

Prerequisites

You can build Shaka on Linux, Windows, or Mac. To get the sources and compile the library, you will need:

To quickly install these prerequisites on Ubuntu or Debian, you can run this script:

curl https://raw.githubusercontent.com/google/shaka-player/master/build/install-linux-prereqs.sh | bash

We do not provide detailed instructions or scripts for installing these prerequisites on other operating systems or on non-Debian-based Linux distributions. (We couldn't possibly document them all.) You can follow the links above to download and install the prerequisites manually on any OS.

Get the source

git clone https://github.com/google/shaka-player.git
cd shaka-player

Compile the library and generate the docs

python build/all.py

The output is:

  • dist/shaka-player.compiled.js (compiled bundle)
  • dist/shaka-player.compiled.debug.js (debug bundle)
  • dist/shaka-player.compiled.externs.js (generated externs, for Closure-based projects)
  • docs/api/index.html (generated documentation)

Run the tests

The tests depend on a few third-party tools, which are installed automatically via npm when you run the tests. Nothing will be installed globally.

Run the tests in your platform's browsers using ./build/test.py. You can specify particular browsers with the --browsers argument. For example:

./build/test.py --browsers Opera

# or:

./build/test.py --browsers Chrome,Firefox,Edge

You can find a full list of available browsers with --browsers help, and you can find a complete list of testing options with --help.

Join the announcement list

If you want to receive release or survey announcements, you should join our mailing list. The list is very low volume.

Continue the Tutorials

Next, check out {@tutorial basic-usage}.