Files
shaka-player/docs/tutorials/welcome.md
T
Aaron Vaage bc8fcaeb06 Update Welcome Docs
NPM released a new version which no longer work with the version
of Node we install in the docs. By updating NPM and Node they
play nicely with each other and no longer need the symlink.

Tested on a clean VM using:
  Distributor ID: Ubuntu
  Description:    Ubuntu 14.04.5 LTS
  Release:        14.04
  Codename:       trusty

Change-Id: Ie4a2cce194944ea57b542b01d072dfff8a8b40b3
2017-06-09 21:59:48 +00:00

1.8 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.

Prerequisites

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

Additionally, to build the documentation and run the tests, you will need:

To quickly install these prerequisites on Ubuntu or Debian, run:

sudo apt-get update
sudo apt-get install git python2.7 default-jre-headless npm

# Upgrade npm and node to the latest versions
sudo npm install -g n
sudo n stable
sudo npm install -g npm

Installation instructions for other operating systems are not provided here. (We can't possibly document them all.) You can follow the links above to download and install the prerequisites.

Get the source

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

Compile the library

python build/all.py

Join the community

If you want to discuss Shaka Player development or receive notifications when a new version is released, you should join our users group.

Continue the Tutorials

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