-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from ant-media/update-readme
Update readme
- Loading branch information
Showing
2 changed files
with
48 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,59 +20,71 @@ Install the Web Player package using npm: | |
npm i @antmedia/web_player | ||
``` | ||
|
||
## Configuration Parameters | ||
|
||
The player accepts several configuration parameters, either through the URL or directly in the code: | ||
|
||
1. `id` (String): The stream ID to play. This parameter is mandatory. | ||
2. `token` (String): The token for stream access. It's mandatory if token security is enabled on the server side. | ||
3. `autoplay` (Boolean): Autoplay the stream if available. Optional. Default value is `true`. | ||
4. `mute` (Boolean): Start playing in mute mode if the stream is available. Optional. Default value is `true`. | ||
5. `playOrder` (String): The order of technologies used for playing. Optional. Default value is `"webrtc,hls"`. Possible values include `"hls,webrtc"`, `"webrtc"`, `"hls"`, `"vod"`, `"dash"`. | ||
6. `playType` (String): The order of play types used for playing. Optional. Default value is `"mp4,webm"`. Possible values include `"webm,mp4"`, `"mp4"`, `"webm"`, `"mov"`. | ||
7. `targetLatency` (Number): The target latency for the DASH player. Optional. Default value is `3`. | ||
8. `is360` (Boolean): Enable playback in 360 mode. Optional. Default value is `false`. | ||
|
||
## Usage | ||
|
||
### Basic Usage | ||
|
||
Import the `WebPlayer` and initialize it with the desired configuration: | ||
To use the Web Player, import it and initialize it with the parameters received from the URL. Refer to the Configuration Parameters section below for more details. | ||
|
||
```javascript | ||
import { WebPlayer } from "@antmedia/web_player"; | ||
1. In your web application, create a div with the id video_container. This will serve as the container for the player. | ||
|
||
var embeddedPlayer = new WebPlayer(window, document.getElementById("video_container"), document.getElementById("video_info")); | ||
``` | ||
<div id="video_container" ></div> | ||
```` | ||
2. Initialize the player as follows: | ||
```javascript | ||
import { WebPlayer } from "@antmedia/web_player"; | ||
embeddedPlayer.initialize().then(() => { | ||
var embeddedPlayer = new WebPlayer(window, document.getElementById("video_container"), null); | ||
embeddedPlayer.initialize().then(() => { | ||
embeddedPlayer.play(); | ||
}); | ||
``` | ||
}); | ||
``` | ||
|
||
The sample for this usage is available in [play.html in StreamApp](https://github.com/ant-media/StreamApp/blob/master/src/main/webapp/play.html) | ||
|
||
### Advanced Usage | ||
You can also pass the parameters as an object to the WebPlayer constructor: | ||
|
||
```javascript | ||
var player = new WebPlayer({ | ||
streamId: streamId, | ||
httpBaseURL: "http://example.antmedia.io:5080/WebRTCAppEE", | ||
token: tokenId, | ||
playOrder: ["webrtc", "hls", "dash"], | ||
videoHTMLContent: '<video id="video-player" class="video-js vjs-default-skin vjs-big-play-centered" controls playsinline style="width:100%;height:100%"></video>', | ||
}, document.getElementById("video_container"), null); | ||
|
||
player.initialize().then(() => { | ||
Alternatively, you can pass the parameters as an object to the WebPlayer constructor. | ||
|
||
|
||
1. In your web application, create a div with the id video_container. This will serve as the container for the player. | ||
``` | ||
<div id="video_container" ></div> | ||
```` | ||
2. Initialize the player as follows | ||
```javascript | ||
var player = new WebPlayer({ | ||
streamId: "myStreamId", | ||
httpBaseURL: "http://example.antmedia.io:5080/WebRTCAppEE/", //Remember to add trailing slash(/) | ||
}, document.getElementById("video_container"), null); | ||
player.initialize().then(() => { | ||
player.play(); | ||
}).catch((error) => { | ||
}).catch((error) => { | ||
console.error("Error while initializing embedded player: " + error); | ||
}); | ||
``` | ||
}); | ||
``` | ||
|
||
The sample for this usage is available in [app.page.component.ts in Ant-Media-Management-Console](https://github.com/ant-media/Ant-Media-Management-Console/blob/master/src/app/app.page/app.page.component.ts) | ||
|
||
|
||
## Configuration Parameters | ||
|
||
The player accepts several configuration parameters, either through the URL or directly in the code: | ||
|
||
1. `id` (String): The stream ID to play. This parameter is mandatory. | ||
2. `token` (String): The token for stream access. It's mandatory if token security is enabled on the server side. | ||
3. `autoplay` (Boolean): Autoplay the stream if available. Optional. Default value is `true`. | ||
4. `mute` (Boolean): Start playing in mute mode if the stream is available. Optional. Default value is `true`. | ||
5. `playOrder` (String): The order of technologies used for playing. Optional. Default value is `"webrtc,hls"`. Possible values include `"hls,webrtc"`, `"webrtc"`, `"hls"`, `"vod"`, `"dash"`. | ||
6. `playType` (String): The order of play types used for playing. Optional. Default value is `"mp4,webm"`. Possible values include `"webm,mp4"`, `"mp4"`, `"webm"`, `"mov"`. | ||
7. `targetLatency` (Number): The target latency for the DASH player. Optional. Default value is `3`. | ||
8. `is360` (Boolean): Enable playback in 360 mode. Optional. Default value is `false`. | ||
|
||
|
||
## Support | ||
For support and further inquiries, please visit [Ant Media Server's community](https://github.com/orgs/ant-media/discussions). If you are an enterprise user, you can receive support by sending an email to [email protected]. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters