mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-07 20:47:49 +00:00
20 lines
575 B
Markdown
20 lines
575 B
Markdown
# StartTranscodeSessionProtocol
|
|
|
|
Indicates the network streaming protocol to be used for the transcode session: * 'http' - include the file in the http response such as MKV streaming * 'hls' - hls stream (RFC 8216) * 'dash' - dash stream (ISO/IEC 23009-1:2022)
|
|
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { StartTranscodeSessionProtocol } from "@lukehagar/plexjs/models/operations";
|
|
|
|
let value: StartTranscodeSessionProtocol = StartTranscodeSessionProtocol.Dash;
|
|
```
|
|
|
|
## Values
|
|
|
|
| Name | Value |
|
|
| ------ | ------ |
|
|
| `Http` | http |
|
|
| `Hls` | hls |
|
|
| `Dash` | dash | |