jellyflood/JellyfinPlayer/Swaggers/APIs/LibraryAPI.swift

15196 lines
452 KiB
Swift

//
// LibraryAPI.swift
//
// Generated by swagger-codegen
// https://github.com/swagger-api/swagger-codegen
//
import Foundation
import Alamofire
open class LibraryAPI {
/**
Deletes an item from the library and filesystem.
- parameter itemId: (path) The item id.
- parameter completion: completion handler to receive the data and the error objects
*/
open class func deleteItem(itemId: UUID, completion: @escaping ((_ data: Void?,_ error: Error?) -> Void)) {
deleteItemWithRequestBuilder(itemId: itemId).execute { (response, error) -> Void in
if error == nil {
completion((), error)
} else {
completion(nil, error)
}
}
}
/**
Deletes an item from the library and filesystem.
- DELETE /Items/{itemId}
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- parameter itemId: (path) The item id.
- returns: RequestBuilder<Void>
*/
open class func deleteItemWithRequestBuilder(itemId: UUID) -> RequestBuilder<Void> {
var path = "/Items/{itemId}"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
let url = URLComponents(string: URLString)
let requestBuilder: RequestBuilder<Void>.Type = SwaggerClientAPI.requestBuilderFactory.getNonDecodableBuilder()
return requestBuilder.init(method: "DELETE", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Deletes items from the library and filesystem.
- parameter ids: (query) The item ids. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func deleteItems(ids: [UUID]? = nil, completion: @escaping ((_ data: Void?,_ error: Error?) -> Void)) {
deleteItemsWithRequestBuilder(ids: ids).execute { (response, error) -> Void in
if error == nil {
completion((), error)
} else {
completion(nil, error)
}
}
}
/**
Deletes items from the library and filesystem.
- DELETE /Items
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- parameter ids: (query) The item ids. (optional)
- returns: RequestBuilder<Void>
*/
open class func deleteItemsWithRequestBuilder(ids: [UUID]? = nil) -> RequestBuilder<Void> {
let path = "/Items"
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"ids": ids
])
let requestBuilder: RequestBuilder<Void>.Type = SwaggerClientAPI.requestBuilderFactory.getNonDecodableBuilder()
return requestBuilder.init(method: "DELETE", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Gets all parents of an item.
- parameter itemId: (path) The item id.
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getAncestors(itemId: UUID, userId: UUID? = nil, completion: @escaping ((_ data: [BaseItemDto]?,_ error: Error?) -> Void)) {
getAncestorsWithRequestBuilder(itemId: itemId, userId: userId).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Gets all parents of an item.
- GET /Items/{itemId}/Ancestors
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example=[ {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
}, {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
} ]}]
- parameter itemId: (path) The item id.
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- returns: RequestBuilder<[BaseItemDto]>
*/
open class func getAncestorsWithRequestBuilder(itemId: UUID, userId: UUID? = nil) -> RequestBuilder<[BaseItemDto]> {
var path = "/Items/{itemId}/Ancestors"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"userId": userId
])
let requestBuilder: RequestBuilder<[BaseItemDto]>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Gets critic review for an item.
- parameter itemId: (path)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getCriticReviews(itemId: String, completion: @escaping ((_ data: BaseItemDtoQueryResult?,_ error: Error?) -> Void)) {
getCriticReviewsWithRequestBuilder(itemId: itemId).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Gets critic review for an item.
- GET /Items/{itemId}/CriticReviews
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example={
"TotalRecordCount" : 7,
"StartIndex" : 5,
"Items" : [ {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
}, {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
} ]
}}]
- parameter itemId: (path)
- returns: RequestBuilder<BaseItemDtoQueryResult>
*/
open class func getCriticReviewsWithRequestBuilder(itemId: String) -> RequestBuilder<BaseItemDtoQueryResult> {
var path = "/Items/{itemId}/CriticReviews"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
let url = URLComponents(string: URLString)
let requestBuilder: RequestBuilder<BaseItemDtoQueryResult>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Downloads item media.
- parameter itemId: (path) The item id.
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getDownload(itemId: UUID, completion: @escaping ((_ data: Data?,_ error: Error?) -> Void)) {
getDownloadWithRequestBuilder(itemId: itemId).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Downloads item media.
- GET /Items/{itemId}/Download
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example=""}]
- parameter itemId: (path) The item id.
- returns: RequestBuilder<Data>
*/
open class func getDownloadWithRequestBuilder(itemId: UUID) -> RequestBuilder<Data> {
var path = "/Items/{itemId}/Download"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
let url = URLComponents(string: URLString)
let requestBuilder: RequestBuilder<Data>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Get the original file of an item.
- parameter itemId: (path) The item id.
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getFile(itemId: UUID, completion: @escaping ((_ data: Data?,_ error: Error?) -> Void)) {
getFileWithRequestBuilder(itemId: itemId).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Get the original file of an item.
- GET /Items/{itemId}/File
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example=""}]
- parameter itemId: (path) The item id.
- returns: RequestBuilder<Data>
*/
open class func getFileWithRequestBuilder(itemId: UUID) -> RequestBuilder<Data> {
var path = "/Items/{itemId}/File"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
let url = URLComponents(string: URLString)
let requestBuilder: RequestBuilder<Data>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Get item counts.
- parameter userId: (query) Optional. Get counts from a specific user&#x27;s library. (optional)
- parameter isFavorite: (query) Optional. Get counts of favorite items. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getItemCounts(userId: UUID? = nil, isFavorite: Bool? = nil, completion: @escaping ((_ data: ItemCounts?,_ error: Error?) -> Void)) {
getItemCountsWithRequestBuilder(userId: userId, isFavorite: isFavorite).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Get item counts.
- GET /Items/Counts
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example={
"SeriesCount" : 6,
"BookCount" : 4,
"TrailerCount" : 2,
"AlbumCount" : 9,
"MusicVideoCount" : 3,
"MovieCount" : 0,
"BoxSetCount" : 2,
"EpisodeCount" : 1,
"ProgramCount" : 5,
"ItemCount" : 7,
"SongCount" : 7,
"ArtistCount" : 5
}}]
- parameter userId: (query) Optional. Get counts from a specific user&#x27;s library. (optional)
- parameter isFavorite: (query) Optional. Get counts of favorite items. (optional)
- returns: RequestBuilder<ItemCounts>
*/
open class func getItemCountsWithRequestBuilder(userId: UUID? = nil, isFavorite: Bool? = nil) -> RequestBuilder<ItemCounts> {
let path = "/Items/Counts"
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"userId": userId,
"isFavorite": isFavorite
])
let requestBuilder: RequestBuilder<ItemCounts>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Gets the library options info.
- parameter libraryContentType: (query) Library content type. (optional)
- parameter isNewLibrary: (query) Whether this is a new library. (optional, default to false)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getLibraryOptionsInfo(libraryContentType: String? = nil, isNewLibrary: Bool? = nil, completion: @escaping ((_ data: LibraryOptionsResultDto?,_ error: Error?) -> Void)) {
getLibraryOptionsInfoWithRequestBuilder(libraryContentType: libraryContentType, isNewLibrary: isNewLibrary).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Gets the library options info.
- GET /Libraries/AvailableOptions
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example={
"TypeOptions" : [ {
"DefaultImageOptions" : [ {
"Type" : "",
"Limit" : 0,
"MinWidth" : 6
}, {
"Type" : "",
"Limit" : 0,
"MinWidth" : 6
} ],
"Type" : "Type",
"SupportedImageTypes" : [ "Primary", "Primary" ],
"ImageFetchers" : [ null, null ],
"MetadataFetchers" : [ null, null ]
}, {
"DefaultImageOptions" : [ {
"Type" : "",
"Limit" : 0,
"MinWidth" : 6
}, {
"Type" : "",
"Limit" : 0,
"MinWidth" : 6
} ],
"Type" : "Type",
"SupportedImageTypes" : [ "Primary", "Primary" ],
"ImageFetchers" : [ null, null ],
"MetadataFetchers" : [ null, null ]
} ],
"MetadataReaders" : [ null, null ],
"SubtitleFetchers" : [ null, null ],
"MetadataSavers" : [ {
"DefaultEnabled" : true,
"Name" : "Name"
}, {
"DefaultEnabled" : true,
"Name" : "Name"
} ]
}}]
- parameter libraryContentType: (query) Library content type. (optional)
- parameter isNewLibrary: (query) Whether this is a new library. (optional, default to false)
- returns: RequestBuilder<LibraryOptionsResultDto>
*/
open class func getLibraryOptionsInfoWithRequestBuilder(libraryContentType: String? = nil, isNewLibrary: Bool? = nil) -> RequestBuilder<LibraryOptionsResultDto> {
let path = "/Libraries/AvailableOptions"
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"libraryContentType": libraryContentType,
"isNewLibrary": isNewLibrary
])
let requestBuilder: RequestBuilder<LibraryOptionsResultDto>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Gets all user media folders.
- parameter isHidden: (query) Optional. Filter by folders that are marked hidden, or not. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getMediaFolders(isHidden: Bool? = nil, completion: @escaping ((_ data: BaseItemDtoQueryResult?,_ error: Error?) -> Void)) {
getMediaFoldersWithRequestBuilder(isHidden: isHidden).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Gets all user media folders.
- GET /Library/MediaFolders
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example={
"TotalRecordCount" : 7,
"StartIndex" : 5,
"Items" : [ {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
}, {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
} ]
}}]
- parameter isHidden: (query) Optional. Filter by folders that are marked hidden, or not. (optional)
- returns: RequestBuilder<BaseItemDtoQueryResult>
*/
open class func getMediaFoldersWithRequestBuilder(isHidden: Bool? = nil) -> RequestBuilder<BaseItemDtoQueryResult> {
let path = "/Library/MediaFolders"
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"isHidden": isHidden
])
let requestBuilder: RequestBuilder<BaseItemDtoQueryResult>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Gets a list of physical paths from virtual folders.
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getPhysicalPaths(completion: @escaping ((_ data: [String]?,_ error: Error?) -> Void)) {
getPhysicalPathsWithRequestBuilder().execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Gets a list of physical paths from virtual folders.
- GET /Library/PhysicalPaths
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example=[ "", "" ]}]
- returns: RequestBuilder<[String]>
*/
open class func getPhysicalPathsWithRequestBuilder() -> RequestBuilder<[String]> {
let path = "/Library/PhysicalPaths"
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
let url = URLComponents(string: URLString)
let requestBuilder: RequestBuilder<[String]>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Gets similar items.
- parameter itemId: (path) The item id.
- parameter excludeArtistIds: (query) Exclude artist ids. (optional)
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter limit: (query) Optional. The maximum number of records to return. (optional)
- parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getSimilarAlbums(itemId: UUID, excludeArtistIds: [UUID]? = nil, userId: UUID? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, completion: @escaping ((_ data: BaseItemDtoQueryResult?,_ error: Error?) -> Void)) {
getSimilarAlbumsWithRequestBuilder(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Gets similar items.
- GET /Albums/{itemId}/Similar
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example={
"TotalRecordCount" : 7,
"StartIndex" : 5,
"Items" : [ {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
}, {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
} ]
}}]
- parameter itemId: (path) The item id.
- parameter excludeArtistIds: (query) Exclude artist ids. (optional)
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter limit: (query) Optional. The maximum number of records to return. (optional)
- parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional)
- returns: RequestBuilder<BaseItemDtoQueryResult>
*/
open class func getSimilarAlbumsWithRequestBuilder(itemId: UUID, excludeArtistIds: [UUID]? = nil, userId: UUID? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> RequestBuilder<BaseItemDtoQueryResult> {
var path = "/Albums/{itemId}/Similar"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"excludeArtistIds": excludeArtistIds,
"userId": userId,
"limit": limit?.encodeToJSON(),
"fields": fields
])
let requestBuilder: RequestBuilder<BaseItemDtoQueryResult>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Gets similar items.
- parameter itemId: (path) The item id.
- parameter excludeArtistIds: (query) Exclude artist ids. (optional)
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter limit: (query) Optional. The maximum number of records to return. (optional)
- parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getSimilarArtists(itemId: UUID, excludeArtistIds: [UUID]? = nil, userId: UUID? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, completion: @escaping ((_ data: BaseItemDtoQueryResult?,_ error: Error?) -> Void)) {
getSimilarArtistsWithRequestBuilder(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Gets similar items.
- GET /Artists/{itemId}/Similar
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example={
"TotalRecordCount" : 7,
"StartIndex" : 5,
"Items" : [ {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
}, {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
} ]
}}]
- parameter itemId: (path) The item id.
- parameter excludeArtistIds: (query) Exclude artist ids. (optional)
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter limit: (query) Optional. The maximum number of records to return. (optional)
- parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional)
- returns: RequestBuilder<BaseItemDtoQueryResult>
*/
open class func getSimilarArtistsWithRequestBuilder(itemId: UUID, excludeArtistIds: [UUID]? = nil, userId: UUID? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> RequestBuilder<BaseItemDtoQueryResult> {
var path = "/Artists/{itemId}/Similar"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"excludeArtistIds": excludeArtistIds,
"userId": userId,
"limit": limit?.encodeToJSON(),
"fields": fields
])
let requestBuilder: RequestBuilder<BaseItemDtoQueryResult>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Gets similar items.
- parameter itemId: (path) The item id.
- parameter excludeArtistIds: (query) Exclude artist ids. (optional)
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter limit: (query) Optional. The maximum number of records to return. (optional)
- parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getSimilarItems(itemId: UUID, excludeArtistIds: [UUID]? = nil, userId: UUID? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, completion: @escaping ((_ data: BaseItemDtoQueryResult?,_ error: Error?) -> Void)) {
getSimilarItemsWithRequestBuilder(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Gets similar items.
- GET /Items/{itemId}/Similar
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example={
"TotalRecordCount" : 7,
"StartIndex" : 5,
"Items" : [ {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
}, {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
} ]
}}]
- parameter itemId: (path) The item id.
- parameter excludeArtistIds: (query) Exclude artist ids. (optional)
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter limit: (query) Optional. The maximum number of records to return. (optional)
- parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional)
- returns: RequestBuilder<BaseItemDtoQueryResult>
*/
open class func getSimilarItemsWithRequestBuilder(itemId: UUID, excludeArtistIds: [UUID]? = nil, userId: UUID? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> RequestBuilder<BaseItemDtoQueryResult> {
var path = "/Items/{itemId}/Similar"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"excludeArtistIds": excludeArtistIds,
"userId": userId,
"limit": limit?.encodeToJSON(),
"fields": fields
])
let requestBuilder: RequestBuilder<BaseItemDtoQueryResult>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Gets similar items.
- parameter itemId: (path) The item id.
- parameter excludeArtistIds: (query) Exclude artist ids. (optional)
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter limit: (query) Optional. The maximum number of records to return. (optional)
- parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getSimilarMovies(itemId: UUID, excludeArtistIds: [UUID]? = nil, userId: UUID? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, completion: @escaping ((_ data: BaseItemDtoQueryResult?,_ error: Error?) -> Void)) {
getSimilarMoviesWithRequestBuilder(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Gets similar items.
- GET /Movies/{itemId}/Similar
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example={
"TotalRecordCount" : 7,
"StartIndex" : 5,
"Items" : [ {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
}, {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
} ]
}}]
- parameter itemId: (path) The item id.
- parameter excludeArtistIds: (query) Exclude artist ids. (optional)
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter limit: (query) Optional. The maximum number of records to return. (optional)
- parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional)
- returns: RequestBuilder<BaseItemDtoQueryResult>
*/
open class func getSimilarMoviesWithRequestBuilder(itemId: UUID, excludeArtistIds: [UUID]? = nil, userId: UUID? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> RequestBuilder<BaseItemDtoQueryResult> {
var path = "/Movies/{itemId}/Similar"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"excludeArtistIds": excludeArtistIds,
"userId": userId,
"limit": limit?.encodeToJSON(),
"fields": fields
])
let requestBuilder: RequestBuilder<BaseItemDtoQueryResult>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Gets similar items.
- parameter itemId: (path) The item id.
- parameter excludeArtistIds: (query) Exclude artist ids. (optional)
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter limit: (query) Optional. The maximum number of records to return. (optional)
- parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getSimilarShows(itemId: UUID, excludeArtistIds: [UUID]? = nil, userId: UUID? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, completion: @escaping ((_ data: BaseItemDtoQueryResult?,_ error: Error?) -> Void)) {
getSimilarShowsWithRequestBuilder(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Gets similar items.
- GET /Shows/{itemId}/Similar
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example={
"TotalRecordCount" : 7,
"StartIndex" : 5,
"Items" : [ {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
}, {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
} ]
}}]
- parameter itemId: (path) The item id.
- parameter excludeArtistIds: (query) Exclude artist ids. (optional)
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter limit: (query) Optional. The maximum number of records to return. (optional)
- parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional)
- returns: RequestBuilder<BaseItemDtoQueryResult>
*/
open class func getSimilarShowsWithRequestBuilder(itemId: UUID, excludeArtistIds: [UUID]? = nil, userId: UUID? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> RequestBuilder<BaseItemDtoQueryResult> {
var path = "/Shows/{itemId}/Similar"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"excludeArtistIds": excludeArtistIds,
"userId": userId,
"limit": limit?.encodeToJSON(),
"fields": fields
])
let requestBuilder: RequestBuilder<BaseItemDtoQueryResult>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Gets similar items.
- parameter itemId: (path) The item id.
- parameter excludeArtistIds: (query) Exclude artist ids. (optional)
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter limit: (query) Optional. The maximum number of records to return. (optional)
- parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getSimilarTrailers(itemId: UUID, excludeArtistIds: [UUID]? = nil, userId: UUID? = nil, limit: Int? = nil, fields: [ItemFields]? = nil, completion: @escaping ((_ data: BaseItemDtoQueryResult?,_ error: Error?) -> Void)) {
getSimilarTrailersWithRequestBuilder(itemId: itemId, excludeArtistIds: excludeArtistIds, userId: userId, limit: limit, fields: fields).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Gets similar items.
- GET /Trailers/{itemId}/Similar
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example={
"TotalRecordCount" : 7,
"StartIndex" : 5,
"Items" : [ {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
}, {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
} ]
}}]
- parameter itemId: (path) The item id.
- parameter excludeArtistIds: (query) Exclude artist ids. (optional)
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter limit: (query) Optional. The maximum number of records to return. (optional)
- parameter fields: (query) Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls. (optional)
- returns: RequestBuilder<BaseItemDtoQueryResult>
*/
open class func getSimilarTrailersWithRequestBuilder(itemId: UUID, excludeArtistIds: [UUID]? = nil, userId: UUID? = nil, limit: Int? = nil, fields: [ItemFields]? = nil) -> RequestBuilder<BaseItemDtoQueryResult> {
var path = "/Trailers/{itemId}/Similar"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"excludeArtistIds": excludeArtistIds,
"userId": userId,
"limit": limit?.encodeToJSON(),
"fields": fields
])
let requestBuilder: RequestBuilder<BaseItemDtoQueryResult>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Get theme songs and videos for an item.
- parameter itemId: (path) The item id.
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter inheritFromParent: (query) Optional. Determines whether or not parent items should be searched for theme media. (optional, default to false)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getThemeMedia(itemId: UUID, userId: UUID? = nil, inheritFromParent: Bool? = nil, completion: @escaping ((_ data: AllThemeMediaResult?,_ error: Error?) -> Void)) {
getThemeMediaWithRequestBuilder(itemId: itemId, userId: userId, inheritFromParent: inheritFromParent).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Get theme songs and videos for an item.
- GET /Items/{itemId}/ThemeMedia
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example={
"ThemeVideosResult" : "",
"SoundtrackSongsResult" : "",
"ThemeSongsResult" : ""
}}]
- parameter itemId: (path) The item id.
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter inheritFromParent: (query) Optional. Determines whether or not parent items should be searched for theme media. (optional, default to false)
- returns: RequestBuilder<AllThemeMediaResult>
*/
open class func getThemeMediaWithRequestBuilder(itemId: UUID, userId: UUID? = nil, inheritFromParent: Bool? = nil) -> RequestBuilder<AllThemeMediaResult> {
var path = "/Items/{itemId}/ThemeMedia"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"userId": userId,
"inheritFromParent": inheritFromParent
])
let requestBuilder: RequestBuilder<AllThemeMediaResult>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Get theme songs for an item.
- parameter itemId: (path) The item id.
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter inheritFromParent: (query) Optional. Determines whether or not parent items should be searched for theme media. (optional, default to false)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getThemeSongs(itemId: UUID, userId: UUID? = nil, inheritFromParent: Bool? = nil, completion: @escaping ((_ data: ThemeMediaResult?,_ error: Error?) -> Void)) {
getThemeSongsWithRequestBuilder(itemId: itemId, userId: userId, inheritFromParent: inheritFromParent).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Get theme songs for an item.
- GET /Items/{itemId}/ThemeSongs
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example={
"TotalRecordCount" : 0,
"StartIndex" : 6,
"OwnerId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Items" : [ {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
}, {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
} ]
}}]
- parameter itemId: (path) The item id.
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter inheritFromParent: (query) Optional. Determines whether or not parent items should be searched for theme media. (optional, default to false)
- returns: RequestBuilder<ThemeMediaResult>
*/
open class func getThemeSongsWithRequestBuilder(itemId: UUID, userId: UUID? = nil, inheritFromParent: Bool? = nil) -> RequestBuilder<ThemeMediaResult> {
var path = "/Items/{itemId}/ThemeSongs"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"userId": userId,
"inheritFromParent": inheritFromParent
])
let requestBuilder: RequestBuilder<ThemeMediaResult>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Get theme videos for an item.
- parameter itemId: (path) The item id.
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter inheritFromParent: (query) Optional. Determines whether or not parent items should be searched for theme media. (optional, default to false)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func getThemeVideos(itemId: UUID, userId: UUID? = nil, inheritFromParent: Bool? = nil, completion: @escaping ((_ data: ThemeMediaResult?,_ error: Error?) -> Void)) {
getThemeVideosWithRequestBuilder(itemId: itemId, userId: userId, inheritFromParent: inheritFromParent).execute { (response, error) -> Void in
completion(response?.body, error)
}
}
/**
Get theme videos for an item.
- GET /Items/{itemId}/ThemeVideos
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- examples: [{contentType=application/json, example={
"TotalRecordCount" : 0,
"StartIndex" : 6,
"OwnerId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Items" : [ {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
}, {
"SeasonName" : "SeasonName",
"PremiereDate" : "2000-01-23T04:56:07.000+00:00",
"CriticRating" : 9.018348,
"AirTime" : "AirTime",
"Studios" : [ {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
}, {
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"Name" : "Name"
} ],
"CameraMake" : "CameraMake",
"Aperture" : 1.041444916118296,
"ChannelPrimaryImageTag" : "ChannelPrimaryImageTag",
"ExtraType" : "ExtraType",
"ParentBackdropItemId" : "ParentBackdropItemId",
"Etag" : "Etag",
"ParentLogoImageTag" : "ParentLogoImageTag",
"ExposureTime" : 6.628464275087742,
"IsoType" : "",
"MediaType" : "MediaType",
"Tags" : [ "Tags", "Tags" ],
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
},
"Status" : "Status",
"IndexNumberEnd" : 6,
"ArtistItems" : [ null, null ],
"MediaSources" : [ {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
}, {
"EncoderPath" : "EncoderPath",
"RequiredHttpHeaders" : {
"key" : "RequiredHttpHeaders"
},
"RunTimeTicks" : 5,
"MediaStreams" : [ {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
}, {
"VideoRange" : "VideoRange",
"CodecTimeBase" : "CodecTimeBase",
"ColorSpace" : "ColorSpace",
"Index" : 7,
"ColorRange" : "ColorRange",
"localizedForced" : "localizedForced",
"BitDepth" : 9,
"Channels" : 4,
"Profile" : "Profile",
"SupportsExternalStream" : true,
"localizedDefault" : "localizedDefault",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"ColorPrimaries" : "ColorPrimaries",
"SampleRate" : 7,
"Language" : "Language",
"IsTextSubtitleStream" : true,
"IsAnamorphic" : true,
"NalLengthSize" : "NalLengthSize",
"Height" : 1,
"PixelFormat" : "PixelFormat",
"RefFrames" : 3,
"IsAVC" : true,
"Width" : 1,
"TimeBase" : "TimeBase",
"ColorTransfer" : "ColorTransfer",
"CodecTag" : "CodecTag",
"IsDefault" : true,
"Path" : "Path",
"Comment" : "Comment",
"DeliveryMethod" : "",
"IsExternalUrl" : true,
"DisplayTitle" : "DisplayTitle",
"IsForced" : true,
"ChannelLayout" : "ChannelLayout",
"localizedUndefined" : "localizedUndefined",
"PacketLength" : 2,
"Title" : "Title",
"RealFrameRate" : 6.846853,
"AspectRatio" : "AspectRatio",
"AverageFrameRate" : 1.4894159,
"Type" : "",
"Score" : 1,
"IsExternal" : true,
"IsInterlaced" : true,
"Level" : 4.965218492984954,
"BitRate" : 7
} ],
"Size" : 5,
"Video3DFormat" : "",
"BufferMs" : 2,
"Timestamp" : "",
"Name" : "Name",
"RequiresOpening" : true,
"SupportsDirectStream" : true,
"VideoType" : "",
"RequiresClosing" : true,
"Container" : "Container",
"IsoType" : "",
"LiveStreamId" : "LiveStreamId",
"RequiresLooping" : true,
"Protocol" : "",
"DefaultSubtitleStreamIndex" : 8,
"GenPtsInput" : true,
"IsInfiniteStream" : true,
"Path" : "Path",
"IsRemote" : true,
"EncoderProtocol" : "",
"IgnoreIndex" : true,
"SupportsDirectPlay" : true,
"TranscodingSubProtocol" : "TranscodingSubProtocol",
"Formats" : [ "Formats", "Formats" ],
"AnalyzeDurationMs" : 9,
"Bitrate" : 9,
"OpenToken" : "OpenToken",
"SupportsProbing" : true,
"Type" : "",
"MediaAttachments" : [ {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
}, {
"CodecTag" : "CodecTag",
"Comment" : "Comment",
"DeliveryUrl" : "DeliveryUrl",
"Codec" : "Codec",
"FileName" : "FileName",
"Index" : 5,
"MimeType" : "MimeType"
} ],
"ReadAtNativeFramerate" : true,
"ETag" : "ETag",
"TranscodingContainer" : "TranscodingContainer",
"IgnoreDts" : true,
"TranscodingUrl" : "TranscodingUrl",
"Id" : "Id",
"SupportsTranscoding" : true,
"DefaultAudioStreamIndex" : 6
} ],
"GenreItems" : [ null, null ],
"OfficialRating" : "OfficialRating",
"ProgramCount" : 7,
"ProgramId" : "ProgramId",
"Longitude" : 9.132027271330688,
"LockData" : true,
"FocalLength" : 4.258773108174356,
"IsNews" : true,
"ShutterSpeed" : 4.678947989005849,
"Id" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"IsFolder" : true,
"SeriesTimerId" : "SeriesTimerId",
"SeriesId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MediaStreams" : [ null, null ],
"IsPlaceHolder" : true,
"CanDownload" : true,
"SeriesCount" : 8,
"IsMovie" : true,
"DateLastMediaAdded" : "2000-01-23T04:56:07.000+00:00",
"ParentArtImageTag" : "ParentArtImageTag",
"PlayAccess" : "",
"SeriesStudio" : "SeriesStudio",
"IsLive" : true,
"Width" : 4,
"ExternalUrls" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"RecursiveItemCount" : 6,
"Path" : "Path",
"ParentId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"MusicVideoCount" : 3,
"ScreenshotImageTags" : [ "ScreenshotImageTags", "ScreenshotImageTags" ],
"EpisodeCount" : 3,
"IsSeries" : true,
"ProductionLocations" : [ "ProductionLocations", "ProductionLocations" ],
"ParentPrimaryImageItemId" : "ParentPrimaryImageItemId",
"EndDate" : "2000-01-23T04:56:07.000+00:00",
"SeriesPrimaryImageTag" : "SeriesPrimaryImageTag",
"ParentThumbItemId" : "ParentThumbItemId",
"PreferredMetadataLanguage" : "PreferredMetadataLanguage",
"Type" : "Type",
"BackdropImageTags" : [ "BackdropImageTags", "BackdropImageTags" ],
"ParentBackdropImageTags" : [ "ParentBackdropImageTags", "ParentBackdropImageTags" ],
"AirsBeforeEpisodeNumber" : 1,
"ChildCount" : 3,
"Audio" : "",
"Artists" : [ "Artists", "Artists" ],
"ChannelType" : "",
"RunTimeTicks" : 6,
"AlbumPrimaryImageTag" : "AlbumPrimaryImageTag",
"Video3DFormat" : "",
"CumulativeRunTimeTicks" : 3,
"SourceType" : "SourceType",
"CanDelete" : true,
"PlaylistItemId" : "PlaylistItemId",
"DisplayPreferencesId" : "DisplayPreferencesId",
"Album" : "Album",
"Latitude" : 7.260521264802104,
"SortName" : "SortName",
"ArtistCount" : 5,
"Name" : "Name",
"StartDate" : "2000-01-23T04:56:07.000+00:00",
"Container" : "Container",
"ProductionYear" : 1,
"SeriesName" : "SeriesName",
"ParentArtItemId" : "ParentArtItemId",
"AlbumId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"SupportsSync" : true,
"LocalTrailerCount" : 5,
"IndexNumber" : 2,
"CompletionPercentage" : 0.5199002018724985,
"Genres" : [ "Genres", "Genres" ],
"SeasonId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"LockedFields" : [ "Cast", "Cast" ],
"ParentPrimaryImageTag" : "ParentPrimaryImageTag",
"ProviderIds" : {
"key" : "ProviderIds"
},
"RemoteTrailers" : [ {
"Url" : "Url",
"Name" : "Name"
}, {
"Url" : "Url",
"Name" : "Name"
} ],
"MediaSourceCount" : 7,
"CustomRating" : "CustomRating",
"AirsAfterSeasonNumber" : 6,
"AirDays" : [ "Sunday", "Sunday" ],
"ParentLogoItemId" : "ParentLogoItemId",
"PartCount" : 0,
"ChannelName" : "ChannelName",
"EpisodeTitle" : "EpisodeTitle",
"IsoSpeedRating" : 9,
"CommunityRating" : 6.4384236,
"Software" : "Software",
"Chapters" : [ {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
}, {
"StartPositionTicks" : 6,
"ImageTag" : "ImageTag",
"ImageDateModified" : "2000-01-23T04:56:07.000+00:00",
"ImagePath" : "ImagePath",
"Name" : "Name"
} ],
"SongCount" : 3,
"Taglines" : [ "Taglines", "Taglines" ],
"AirsBeforeSeasonNumber" : 0,
"PreferredMetadataCountryCode" : "PreferredMetadataCountryCode",
"CameraModel" : "CameraModel",
"ChannelNumber" : "ChannelNumber",
"UserData" : "",
"TimerId" : "TimerId",
"DateCreated" : "2000-01-23T04:56:07.000+00:00",
"HasSubtitles" : true,
"ParentThumbImageTag" : "ParentThumbImageTag",
"IsSports" : true,
"ChannelId" : "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"ParentIndexNumber" : 6,
"VideoType" : "",
"AlbumArtists" : [ null, null ],
"ServerId" : "ServerId",
"Number" : "Number",
"AlbumCount" : 7,
"IsRepeat" : true,
"CollectionType" : "CollectionType",
"PrimaryImageAspectRatio" : 7.143538047012306,
"Height" : 0,
"IsKids" : true,
"DisplayOrder" : "DisplayOrder",
"IsHD" : true,
"EnableMediaSourceDisplay" : true,
"SeriesThumbImageTag" : "SeriesThumbImageTag",
"MovieCount" : 4,
"People" : [ {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
}, {
"Role" : "Role",
"Type" : "Type",
"PrimaryImageTag" : "PrimaryImageTag",
"Id" : "Id",
"Name" : "Name",
"ImageBlurHashes" : {
"Art" : {
"key" : "Art"
},
"Banner" : {
"key" : "Banner"
},
"Thumb" : {
"key" : "Thumb"
},
"Chapter" : {
"key" : "Chapter"
},
"BoxRear" : {
"key" : "BoxRear"
},
"Box" : {
"key" : "Box"
},
"Profile" : {
"key" : "Profile"
},
"Logo" : {
"key" : "Logo"
},
"Disc" : {
"key" : "Disc"
},
"Primary" : {
"key" : "Primary"
},
"Screenshot" : {
"key" : "Screenshot"
},
"Backdrop" : {
"key" : "Backdrop"
},
"Menu" : {
"key" : "Menu"
}
}
} ],
"Overview" : "Overview",
"SpecialFeatureCount" : 3,
"ImageOrientation" : "",
"AlbumArtist" : "AlbumArtist",
"ImageTags" : {
"key" : "ImageTags"
},
"AspectRatio" : "AspectRatio",
"TrailerCount" : 0,
"OriginalTitle" : "OriginalTitle",
"ForcedSortName" : "ForcedSortName",
"CurrentProgram" : "",
"LocationType" : "",
"IsPremiere" : true,
"Altitude" : 0.8774076871421566
} ]
}}]
- parameter itemId: (path) The item id.
- parameter userId: (query) Optional. Filter by user id, and attach user data. (optional)
- parameter inheritFromParent: (query) Optional. Determines whether or not parent items should be searched for theme media. (optional, default to false)
- returns: RequestBuilder<ThemeMediaResult>
*/
open class func getThemeVideosWithRequestBuilder(itemId: UUID, userId: UUID? = nil, inheritFromParent: Bool? = nil) -> RequestBuilder<ThemeMediaResult> {
var path = "/Items/{itemId}/ThemeVideos"
let itemIdPreEscape = "\(itemId)"
let itemIdPostEscape = itemIdPreEscape.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) ?? ""
path = path.replacingOccurrences(of: "{itemId}", with: itemIdPostEscape, options: .literal, range: nil)
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"userId": userId,
"inheritFromParent": inheritFromParent
])
let requestBuilder: RequestBuilder<ThemeMediaResult>.Type = SwaggerClientAPI.requestBuilderFactory.getBuilder()
return requestBuilder.init(method: "GET", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Reports that new movies have been added by an external source.
- parameter tmdbId: (query) The tmdbId. (optional)
- parameter imdbId: (query) The imdbId. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func postAddedMovies(tmdbId: String? = nil, imdbId: String? = nil, completion: @escaping ((_ data: Void?,_ error: Error?) -> Void)) {
postAddedMoviesWithRequestBuilder(tmdbId: tmdbId, imdbId: imdbId).execute { (response, error) -> Void in
if error == nil {
completion((), error)
} else {
completion(nil, error)
}
}
}
/**
Reports that new movies have been added by an external source.
- POST /Library/Movies/Added
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- parameter tmdbId: (query) The tmdbId. (optional)
- parameter imdbId: (query) The imdbId. (optional)
- returns: RequestBuilder<Void>
*/
open class func postAddedMoviesWithRequestBuilder(tmdbId: String? = nil, imdbId: String? = nil) -> RequestBuilder<Void> {
let path = "/Library/Movies/Added"
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"tmdbId": tmdbId,
"imdbId": imdbId
])
let requestBuilder: RequestBuilder<Void>.Type = SwaggerClientAPI.requestBuilderFactory.getNonDecodableBuilder()
return requestBuilder.init(method: "POST", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Reports that new episodes of a series have been added by an external source.
- parameter tvdbId: (query) The tvdbId. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func postAddedSeries(tvdbId: String? = nil, completion: @escaping ((_ data: Void?,_ error: Error?) -> Void)) {
postAddedSeriesWithRequestBuilder(tvdbId: tvdbId).execute { (response, error) -> Void in
if error == nil {
completion((), error)
} else {
completion(nil, error)
}
}
}
/**
Reports that new episodes of a series have been added by an external source.
- POST /Library/Series/Added
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- parameter tvdbId: (query) The tvdbId. (optional)
- returns: RequestBuilder<Void>
*/
open class func postAddedSeriesWithRequestBuilder(tvdbId: String? = nil) -> RequestBuilder<Void> {
let path = "/Library/Series/Added"
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"tvdbId": tvdbId
])
let requestBuilder: RequestBuilder<Void>.Type = SwaggerClientAPI.requestBuilderFactory.getNonDecodableBuilder()
return requestBuilder.init(method: "POST", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Reports that new movies have been added by an external source.
- parameter body: (body) The update paths.
- parameter completion: completion handler to receive the data and the error objects
*/
open class func postUpdatedMedia(body: MediaUpdatedBody, completion: @escaping ((_ data: Void?,_ error: Error?) -> Void)) {
postUpdatedMediaWithRequestBuilder(body: body).execute { (response, error) -> Void in
if error == nil {
completion((), error)
} else {
completion(nil, error)
}
}
}
/**
Reports that new movies have been added by an external source.
- POST /Library/Media/Updated
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- parameter body: (body) The update paths.
- returns: RequestBuilder<Void>
*/
open class func postUpdatedMediaWithRequestBuilder(body: MediaUpdatedBody) -> RequestBuilder<Void> {
let path = "/Library/Media/Updated"
let URLString = SwaggerClientAPI.basePath + path
let parameters = JSONEncodingHelper.encodingParameters(forEncodableObject: body)
let url = URLComponents(string: URLString)
let requestBuilder: RequestBuilder<Void>.Type = SwaggerClientAPI.requestBuilderFactory.getNonDecodableBuilder()
return requestBuilder.init(method: "POST", URLString: (url?.string ?? URLString), parameters: parameters, isBody: true)
}
/**
Reports that new movies have been added by an external source.
- parameter tmdbId: (query) The tmdbId. (optional)
- parameter imdbId: (query) The imdbId. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func postUpdatedMovies(tmdbId: String? = nil, imdbId: String? = nil, completion: @escaping ((_ data: Void?,_ error: Error?) -> Void)) {
postUpdatedMoviesWithRequestBuilder(tmdbId: tmdbId, imdbId: imdbId).execute { (response, error) -> Void in
if error == nil {
completion((), error)
} else {
completion(nil, error)
}
}
}
/**
Reports that new movies have been added by an external source.
- POST /Library/Movies/Updated
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- parameter tmdbId: (query) The tmdbId. (optional)
- parameter imdbId: (query) The imdbId. (optional)
- returns: RequestBuilder<Void>
*/
open class func postUpdatedMoviesWithRequestBuilder(tmdbId: String? = nil, imdbId: String? = nil) -> RequestBuilder<Void> {
let path = "/Library/Movies/Updated"
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"tmdbId": tmdbId,
"imdbId": imdbId
])
let requestBuilder: RequestBuilder<Void>.Type = SwaggerClientAPI.requestBuilderFactory.getNonDecodableBuilder()
return requestBuilder.init(method: "POST", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Reports that new episodes of a series have been added by an external source.
- parameter tvdbId: (query) The tvdbId. (optional)
- parameter completion: completion handler to receive the data and the error objects
*/
open class func postUpdatedSeries(tvdbId: String? = nil, completion: @escaping ((_ data: Void?,_ error: Error?) -> Void)) {
postUpdatedSeriesWithRequestBuilder(tvdbId: tvdbId).execute { (response, error) -> Void in
if error == nil {
completion((), error)
} else {
completion(nil, error)
}
}
}
/**
Reports that new episodes of a series have been added by an external source.
- POST /Library/Series/Updated
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- parameter tvdbId: (query) The tvdbId. (optional)
- returns: RequestBuilder<Void>
*/
open class func postUpdatedSeriesWithRequestBuilder(tvdbId: String? = nil) -> RequestBuilder<Void> {
let path = "/Library/Series/Updated"
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
var url = URLComponents(string: URLString)
url?.queryItems = APIHelper.mapValuesToQueryItems([
"tvdbId": tvdbId
])
let requestBuilder: RequestBuilder<Void>.Type = SwaggerClientAPI.requestBuilderFactory.getNonDecodableBuilder()
return requestBuilder.init(method: "POST", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
/**
Starts a library scan.
- parameter completion: completion handler to receive the data and the error objects
*/
open class func refreshLibrary(completion: @escaping ((_ data: Void?,_ error: Error?) -> Void)) {
refreshLibraryWithRequestBuilder().execute { (response, error) -> Void in
if error == nil {
completion((), error)
} else {
completion(nil, error)
}
}
}
/**
Starts a library scan.
- POST /Library/Refresh
-
- API Key:
- type: apiKey X-Emby-Authorization
- name: CustomAuthentication
- returns: RequestBuilder<Void>
*/
open class func refreshLibraryWithRequestBuilder() -> RequestBuilder<Void> {
let path = "/Library/Refresh"
let URLString = SwaggerClientAPI.basePath + path
let parameters: [String:Any]? = nil
let url = URLComponents(string: URLString)
let requestBuilder: RequestBuilder<Void>.Type = SwaggerClientAPI.requestBuilderFactory.getNonDecodableBuilder()
return requestBuilder.init(method: "POST", URLString: (url?.string ?? URLString), parameters: parameters, isBody: false)
}
}