mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 12:37:46 +00:00
17 KiB
17 KiB
GetLibraryItemsMedia
Example Usage
import { GetLibraryItemsHasThumbnail, GetLibraryItemsMedia } from "@lukehagar/plexjs/sdk/models/operations";
let value: GetLibraryItemsMedia = {
id: 387322,
duration: 9610350,
bitrate: 25512,
width: 3840,
height: 1602,
aspectRatio: 2.35,
audioChannels: 6,
displayOffset: 50,
audioCodec: "aac",
videoCodec: "hevc",
videoResolution: "4k",
container: "mp4",
videoFrameRate: "24p",
videoProfile: "main 10",
hasVoiceActivity: false,
audioProfile: "dts",
has64bitOffsets: false,
part: [
{
accessible: true,
exists: true,
id: 418385,
key: "/library/parts/418385/1735864239/file.mkv",
indexes: "sd",
duration: 9610350,
file: "/mnt/Movies_1/W/Wicked (2024).mkv",
size: 30649952104,
packetLength: 188,
container: "mkv",
videoProfile: "main 10",
audioProfile: "dts",
has64bitOffsets: false,
hasThumbnail: GetLibraryItemsHasThumbnail.True,
},
],
};
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
id |
number | ✔️ | Unique media identifier. | 387322 |
duration |
number | ➖ | Duration of the media in milliseconds. | 9610350 |
bitrate |
number | ➖ | Bitrate in bits per second. | 25512 |
width |
number | ➖ | Video width in pixels. | 3840 |
height |
number | ➖ | Video height in pixels. | 1602 |
aspectRatio |
number | ➖ | Aspect ratio of the video. | 2.35 |
audioChannels |
number | ➖ | Number of audio channels. | 6 |
displayOffset |
number | ➖ | N/A | 50 |
audioCodec |
string | ➖ | Audio codec used. | aac |
videoCodec |
string | ➖ | Video codec used. | hevc |
videoResolution |
string | ➖ | Video resolution (e.g., 4k). | 4k |
container |
string | ➖ | Container format of the media. | mp4 |
videoFrameRate |
string | ➖ | Frame rate of the video. Values found include NTSC, PAL, 24p |
24p |
videoProfile |
string | ➖ | Video profile (e.g., main 10). | main 10 |
hasVoiceActivity |
boolean | ➖ | Indicates whether voice activity is detected. | false |
audioProfile |
string | ➖ | The audio profile used for the media (e.g., DTS, Dolby Digital, etc.). | dts |
optimizedForStreaming |
operations.GetLibraryItemsOptimizedForStreaming | ➖ | Has this media been optimized for streaming. NOTE: This can be 0, 1, false or true | |
has64bitOffsets |
boolean | ➖ | Indicates whether the media has 64-bit offsets. This is relevant for media files that may require larger offsets than what 32-bit integers can provide. |
false |
part |
operations.GetLibraryItemsPart[] | ➖ | N/A |