Skip to content

Commit

Permalink
Minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
dsilhavy committed Jan 21, 2025
1 parent 4957e12 commit 6f59786
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pages/quickstart/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ the `UMD modern` build.

Note that only the `master` branch of dash.js includes the `dist` folder. If you are working with the `development`
branch, you need to build the bundles yourself. For that reason, check
the [Build dist files yourself](#build-dist-files-yourself) section below.
the [Building the `dist` files](#building-the-dist-files) section below.

## CDN hosted files

Expand Down
13 changes: 8 additions & 5 deletions pages/usage/mss.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ the [sample section](https://reference.dashif.org/dash.js/nightly/samples/smooth
The Smooth Streaming layer in dash.js is implemented as a separate module. To enable Smooth Streaming support in dash.js
import `dash.mss.min.js` or `dash.mss.debug.js` right after the main build files:

```xml
<script src="../../dist/umd/dash.all.debug.js"></script>
<!-- add mss package which is required to play Smooth Streaming streams -->
<script class="code" src="../../dist/umd/dash.mss.debug.js"></script>
```
````xml

<head>
<script src="../../dist/umd/dash.all.debug.js"></script>
<!-- add mss package which is required to play Smooth Streaming streams -->
<script class="code" src="../../dist/umd/dash.mss.debug.js"></script>
</head>
````

Initialization of dash.js for Smooth Streaming is similar to initialization for DASH content:

Expand Down

0 comments on commit 6f59786

Please sign in to comment.