Jump to content

Session PlayState MediaSourceId != Session FullPlayingItem.GetMediaSources


bakes82

Recommended Posts

bakes82

The UI looks to have duplicated some DB entires and when I run the script it tells me the source doesnt exist but it was selected from the UI.

So some how the FullNowPlayingItem only has the reference for the one correct sourceID, but then this endpoint and the PlayState MediaSourceId are for the duplicate that dont exist?

 

image.png.eaefe615738d9e5a3b546ba596e94262.png

 

var mediaSourceItem =
    sessionManagerSession.FullNowPlayingItem.GetMediaSources(false, false, new LibraryOptions())
        .SingleOrDefault(x =>
            string.Equals(x.Id, sessionManagerSession.PlayState.MediaSourceId,
                StringComparison.OrdinalIgnoreCase));

End point data UI calls  (PlayBackInfo endpoint)

{
	"MediaSources": [
		{
			"Protocol": "File",
			"Id": "240f8fcb47ac4ef3a16847692cb1f299",
			"Path": "\\\\Tower\\Movies\\1917 (2019)\\1917 2019 WEBDL-2160p.mkv",
			"Type": "Grouping",
			"Container": "mkv",
			"Size": 19825428522,
			"Name": "1917 2019 WEBDL-2160p",
			"IsRemote": false,
			"RunTimeTicks": 71386240000,
			"SupportsTranscoding": true,
			"SupportsDirectStream": false,
			"SupportsDirectPlay": false,
			"IsInfiniteStream": false,
			"RequiresOpening": false,
			"RequiresClosing": false,
			"RequiresLooping": false,
			"SupportsProbing": false,
			"MediaStreams": [
				{
					"Codec": "hevc",
					"ColorTransfer": "bt709",
					"ColorPrimaries": "bt709",
					"ColorSpace": "bt709",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1001/24000",
					"VideoRange": "SDR",
					"DisplayTitle": "4K HEVC",
					"IsInterlaced": false,
					"BitRate": 22217647,
					"BitDepth": 10,
					"RefFrames": 1,
					"IsDefault": true,
					"IsForced": false,
					"Height": 2160,
					"Width": 3840,
					"AverageFrameRate": 23.976025,
					"RealFrameRate": 23.976025,
					"Profile": "Main 10",
					"Type": "Video",
					"AspectRatio": "16:9",
					"Index": 0,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File",
					"PixelFormat": "yuv420p10le",
					"Level": 150,
					"IsAnamorphic": false
				},
				{
					"Codec": "eac3",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1/48000",
					"DisplayTitle": "English EAC3 6 ch",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"Channels": 6,
					"SampleRate": 48000,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Audio",
					"Index": 1,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "subrip",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "0/1",
					"DisplayTitle": "English (SUBRIP)",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Subtitle",
					"Index": 2,
					"IsExternal": false,
					"DeliveryMethod": "Hls",
					"IsTextSubtitleStream": true,
					"SupportsExternalStream": true,
					"Protocol": "File"
				},
				{
					"Codec": "subrip",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "0/1",
					"Title": "SDH",
					"DisplayTitle": "English (SUBRIP)",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Subtitle",
					"Index": 3,
					"IsExternal": false,
					"DeliveryMethod": "Hls",
					"IsTextSubtitleStream": true,
					"SupportsExternalStream": true,
					"Protocol": "File"
				}
			],
			"Formats": [],
			"Bitrate": 22217647,
			"RequiredHttpHeaders": {},
			"DirectStreamUrl": "/videos/58234/master.m3u8?DeviceId=5f41ffa9-b227-4425-aa93-3974b12f4d75&MediaSourceId=240f8fcb47ac4ef3a16847692cb1f299&PlaySessionId=5f29907e2e39465e849d25574bef5418&api_key=a1b70696612f4481b8c3eefe79336d49&VideoCodec=h264&AudioCodec=aac&VideoBitrate=5616001&AudioBitrate=384000&AudioStreamIndex=1&SubtitleMethod=Encode&TranscodingMaxAudioChannels=2&SegmentContainer=ts&MinSegments=1&BreakOnNonKeyFrames=True&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline&h264-level=52&TranscodeReasons=ContainerBitrateExceedsLimit",
			"TranscodingUrl": "/videos/58234/master.m3u8?DeviceId=5f41ffa9-b227-4425-aa93-3974b12f4d75&MediaSourceId=240f8fcb47ac4ef3a16847692cb1f299&PlaySessionId=5f29907e2e39465e849d25574bef5418&api_key=a1b70696612f4481b8c3eefe79336d49&VideoCodec=h264&AudioCodec=aac&VideoBitrate=5616001&AudioBitrate=384000&AudioStreamIndex=1&SubtitleMethod=Encode&TranscodingMaxAudioChannels=2&SegmentContainer=ts&MinSegments=1&BreakOnNonKeyFrames=True&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline&h264-level=52&TranscodeReasons=ContainerBitrateExceedsLimit",
			"TranscodingSubProtocol": "hls",
			"TranscodingContainer": "ts",
			"ReadAtNativeFramerate": false,
			"DefaultAudioStreamIndex": 1,
			"DefaultSubtitleStreamIndex": -1
		},
		{
			"Protocol": "File",
			"Id": "e781f6f87df303da0a5943682f534a20",
			"Path": "\\\\Tower\\Movies\\1917 (2019)\\1917 2019 WEBDL-2160p.mkv",
			"Type": "Grouping",
			"Container": "mkv",
			"Size": 19825428522,
			"Name": "1917 2019 WEBDL-2160p",
			"IsRemote": false,
			"RunTimeTicks": 71386240000,
			"SupportsTranscoding": true,
			"SupportsDirectStream": false,
			"SupportsDirectPlay": false,
			"IsInfiniteStream": false,
			"RequiresOpening": false,
			"RequiresClosing": false,
			"RequiresLooping": false,
			"SupportsProbing": false,
			"MediaStreams": [
				{
					"Codec": "hevc",
					"ColorTransfer": "bt709",
					"ColorPrimaries": "bt709",
					"ColorSpace": "bt709",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1001/24000",
					"VideoRange": "SDR",
					"DisplayTitle": "4K HEVC",
					"IsInterlaced": false,
					"BitRate": 22217647,
					"BitDepth": 10,
					"RefFrames": 1,
					"IsDefault": true,
					"IsForced": false,
					"Height": 2160,
					"Width": 3840,
					"AverageFrameRate": 23.976025,
					"RealFrameRate": 23.976025,
					"Profile": "Main 10",
					"Type": "Video",
					"AspectRatio": "16:9",
					"Index": 0,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File",
					"PixelFormat": "yuv420p10le",
					"Level": 150,
					"IsAnamorphic": false
				},
				{
					"Codec": "eac3",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1/48000",
					"DisplayTitle": "English EAC3 6 ch",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"Channels": 6,
					"SampleRate": 48000,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Audio",
					"Index": 1,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "subrip",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "0/1",
					"DisplayTitle": "English (SUBRIP)",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Subtitle",
					"Index": 2,
					"IsExternal": false,
					"DeliveryMethod": "Hls",
					"IsTextSubtitleStream": true,
					"SupportsExternalStream": true,
					"Protocol": "File"
				},
				{
					"Codec": "subrip",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "0/1",
					"Title": "SDH",
					"DisplayTitle": "English (SUBRIP)",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Subtitle",
					"Index": 3,
					"IsExternal": false,
					"DeliveryMethod": "Hls",
					"IsTextSubtitleStream": true,
					"SupportsExternalStream": true,
					"Protocol": "File"
				}
			],
			"Formats": [],
			"Bitrate": 22217647,
			"RequiredHttpHeaders": {},
			"DirectStreamUrl": "/videos/58234/master.m3u8?DeviceId=5f41ffa9-b227-4425-aa93-3974b12f4d75&MediaSourceId=e781f6f87df303da0a5943682f534a20&PlaySessionId=5f29907e2e39465e849d25574bef5418&api_key=a1b70696612f4481b8c3eefe79336d49&VideoCodec=h264&AudioCodec=aac&VideoBitrate=5616001&AudioBitrate=384000&AudioStreamIndex=1&SubtitleMethod=Encode&TranscodingMaxAudioChannels=2&SegmentContainer=ts&MinSegments=1&BreakOnNonKeyFrames=True&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline&h264-level=52&TranscodeReasons=ContainerBitrateExceedsLimit",
			"TranscodingUrl": "/videos/58234/master.m3u8?DeviceId=5f41ffa9-b227-4425-aa93-3974b12f4d75&MediaSourceId=e781f6f87df303da0a5943682f534a20&PlaySessionId=5f29907e2e39465e849d25574bef5418&api_key=a1b70696612f4481b8c3eefe79336d49&VideoCodec=h264&AudioCodec=aac&VideoBitrate=5616001&AudioBitrate=384000&AudioStreamIndex=1&SubtitleMethod=Encode&TranscodingMaxAudioChannels=2&SegmentContainer=ts&MinSegments=1&BreakOnNonKeyFrames=True&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline&h264-level=52&TranscodeReasons=ContainerBitrateExceedsLimit",
			"TranscodingSubProtocol": "hls",
			"TranscodingContainer": "ts",
			"ReadAtNativeFramerate": false,
			"DefaultAudioStreamIndex": 1,
			"DefaultSubtitleStreamIndex": -1
		},
		{
			"Protocol": "File",
			"Id": "e80fe04478e55d5f81f32237fb506903",
			"Path": "\\\\Tower\\Movies\\1917 (2019)\\1917 (2019) FraMeSToR Remux-1080p.mkv",
			"Type": "Default",
			"Container": "mkv",
			"Size": 33923884651,
			"Name": "FraMeSToR Remux-1080p",
			"IsRemote": false,
			"RunTimeTicks": 71381440000,
			"SupportsTranscoding": true,
			"SupportsDirectStream": false,
			"SupportsDirectPlay": false,
			"IsInfiniteStream": false,
			"RequiresOpening": false,
			"RequiresClosing": false,
			"RequiresLooping": false,
			"SupportsProbing": false,
			"MediaStreams": [
				{
					"Codec": "h264",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1001/48000",
					"VideoRange": "SDR",
					"DisplayTitle": "1080p H264",
					"NalLengthSize": "4",
					"IsInterlaced": false,
					"IsAVC": true,
					"BitRate": 38019837,
					"BitDepth": 8,
					"RefFrames": 1,
					"IsDefault": true,
					"IsForced": false,
					"Height": 1080,
					"Width": 1920,
					"AverageFrameRate": 23.976025,
					"RealFrameRate": 23.976025,
					"Profile": "High",
					"Type": "Video",
					"AspectRatio": "16:9",
					"Index": 0,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File",
					"PixelFormat": "yuv420p",
					"Level": 41,
					"IsAnamorphic": false
				},
				{
					"Codec": "truehd",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1/48000",
					"Title": "TrueHD Atmos 7.1",
					"DisplayTitle": "English TRUEHD 7.1 (Default)",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"ChannelLayout": "7.1",
					"BitDepth": 24,
					"Channels": 8,
					"SampleRate": 48000,
					"IsDefault": true,
					"IsForced": false,
					"Type": "Audio",
					"Index": 1,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "ac3",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1/48000",
					"Title": "AC3 5.1",
					"DisplayTitle": "English AC3 5.1",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"ChannelLayout": "5.1",
					"BitRate": 448000,
					"Channels": 6,
					"SampleRate": 48000,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Audio",
					"Index": 2,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "ac3",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1/48000",
					"Title": "Commentary by Director/Co-Writer Sam Mendes",
					"DisplayTitle": "English AC3 stereo",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"ChannelLayout": "stereo",
					"BitRate": 192000,
					"Channels": 2,
					"SampleRate": 48000,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Audio",
					"Index": 3,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "ac3",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1/48000",
					"Title": "Commentary by Director of Photography Roger Deakins",
					"DisplayTitle": "English AC3 stereo",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"ChannelLayout": "stereo",
					"BitRate": 192000,
					"Channels": 2,
					"SampleRate": 48000,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Audio",
					"Index": 4,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "PGSSUB",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "0/1",
					"Title": "English (SDH)",
					"DisplayTitle": "English (PGSSUB)",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Subtitle",
					"Index": 5,
					"IsExternal": false,
					"DeliveryMethod": "Encode",
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "PGSSUB",
					"Language": "fre",
					"TimeBase": "1/1000",
					"CodecTimeBase": "0/1",
					"Title": "French",
					"DisplayTitle": "French (PGSSUB)",
					"DisplayLanguage": "French",
					"IsInterlaced": false,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Subtitle",
					"Index": 6,
					"IsExternal": false,
					"DeliveryMethod": "Encode",
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "PGSSUB",
					"Language": "spa",
					"TimeBase": "1/1000",
					"CodecTimeBase": "0/1",
					"Title": "Spanish (Latin American)",
					"DisplayTitle": "Spanish (PGSSUB)",
					"DisplayLanguage": "Spanish",
					"IsInterlaced": false,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Subtitle",
					"Index": 7,
					"IsExternal": false,
					"DeliveryMethod": "Encode",
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				}
			],
			"Formats": [],
			"Bitrate": 38019837,
			"RequiredHttpHeaders": {},
			"DirectStreamUrl": "/videos/58234/master.m3u8?DeviceId=5f41ffa9-b227-4425-aa93-3974b12f4d75&MediaSourceId=e80fe04478e55d5f81f32237fb506903&PlaySessionId=5f29907e2e39465e849d25574bef5418&api_key=a1b70696612f4481b8c3eefe79336d49&VideoCodec=h264&AudioCodec=aac&VideoBitrate=5616001&AudioBitrate=384000&AudioStreamIndex=1&SubtitleMethod=Encode&TranscodingMaxAudioChannels=2&SegmentContainer=ts&MinSegments=1&BreakOnNonKeyFrames=True&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline&h264-level=52&TranscodeReasons=ContainerBitrateExceedsLimit",
			"TranscodingUrl": "/videos/58234/master.m3u8?DeviceId=5f41ffa9-b227-4425-aa93-3974b12f4d75&MediaSourceId=e80fe04478e55d5f81f32237fb506903&PlaySessionId=5f29907e2e39465e849d25574bef5418&api_key=a1b70696612f4481b8c3eefe79336d49&VideoCodec=h264&AudioCodec=aac&VideoBitrate=5616001&AudioBitrate=384000&AudioStreamIndex=1&SubtitleMethod=Encode&TranscodingMaxAudioChannels=2&SegmentContainer=ts&MinSegments=1&BreakOnNonKeyFrames=True&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline&h264-level=52&TranscodeReasons=ContainerBitrateExceedsLimit",
			"TranscodingSubProtocol": "hls",
			"TranscodingContainer": "ts",
			"ReadAtNativeFramerate": false,
			"DefaultAudioStreamIndex": 1,
			"DefaultSubtitleStreamIndex": -1
		},
		{
			"Protocol": "File",
			"Id": "b04376f2669143a3bd8b9edc16590ef3",
			"Path": "\\\\Tower\\Movies\\1917 (2019)\\1917 (2019) FraMeSToR Remux-1080p.mkv",
			"Type": "Grouping",
			"Container": "mkv",
			"Size": 33923884651,
			"Name": "FraMeSToR Remux-1080p",
			"IsRemote": false,
			"RunTimeTicks": 71381440000,
			"SupportsTranscoding": true,
			"SupportsDirectStream": false,
			"SupportsDirectPlay": false,
			"IsInfiniteStream": false,
			"RequiresOpening": false,
			"RequiresClosing": false,
			"RequiresLooping": false,
			"SupportsProbing": false,
			"MediaStreams": [
				{
					"Codec": "h264",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1001/48000",
					"VideoRange": "SDR",
					"DisplayTitle": "1080p H264",
					"NalLengthSize": "4",
					"IsInterlaced": false,
					"IsAVC": true,
					"BitRate": 38019837,
					"BitDepth": 8,
					"RefFrames": 1,
					"IsDefault": true,
					"IsForced": false,
					"Height": 1080,
					"Width": 1920,
					"AverageFrameRate": 23.976025,
					"RealFrameRate": 23.976025,
					"Profile": "High",
					"Type": "Video",
					"AspectRatio": "16:9",
					"Index": 0,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File",
					"PixelFormat": "yuv420p",
					"Level": 41,
					"IsAnamorphic": false
				},
				{
					"Codec": "truehd",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1/48000",
					"Title": "TrueHD Atmos 7.1",
					"DisplayTitle": "English TRUEHD 7.1 (Default)",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"ChannelLayout": "7.1",
					"BitDepth": 24,
					"Channels": 8,
					"SampleRate": 48000,
					"IsDefault": true,
					"IsForced": false,
					"Type": "Audio",
					"Index": 1,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "ac3",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1/48000",
					"Title": "AC3 5.1",
					"DisplayTitle": "English AC3 5.1",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"ChannelLayout": "5.1",
					"BitRate": 448000,
					"Channels": 6,
					"SampleRate": 48000,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Audio",
					"Index": 2,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "ac3",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1/48000",
					"Title": "Commentary by Director/Co-Writer Sam Mendes",
					"DisplayTitle": "English AC3 stereo",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"ChannelLayout": "stereo",
					"BitRate": 192000,
					"Channels": 2,
					"SampleRate": 48000,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Audio",
					"Index": 3,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "ac3",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "1/48000",
					"Title": "Commentary by Director of Photography Roger Deakins",
					"DisplayTitle": "English AC3 stereo",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"ChannelLayout": "stereo",
					"BitRate": 192000,
					"Channels": 2,
					"SampleRate": 48000,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Audio",
					"Index": 4,
					"IsExternal": false,
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "PGSSUB",
					"Language": "eng",
					"TimeBase": "1/1000",
					"CodecTimeBase": "0/1",
					"Title": "English (SDH)",
					"DisplayTitle": "English (PGSSUB)",
					"DisplayLanguage": "English",
					"IsInterlaced": false,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Subtitle",
					"Index": 5,
					"IsExternal": false,
					"DeliveryMethod": "Encode",
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "PGSSUB",
					"Language": "fre",
					"TimeBase": "1/1000",
					"CodecTimeBase": "0/1",
					"Title": "French",
					"DisplayTitle": "French (PGSSUB)",
					"DisplayLanguage": "French",
					"IsInterlaced": false,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Subtitle",
					"Index": 6,
					"IsExternal": false,
					"DeliveryMethod": "Encode",
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				},
				{
					"Codec": "PGSSUB",
					"Language": "spa",
					"TimeBase": "1/1000",
					"CodecTimeBase": "0/1",
					"Title": "Spanish (Latin American)",
					"DisplayTitle": "Spanish (PGSSUB)",
					"DisplayLanguage": "Spanish",
					"IsInterlaced": false,
					"IsDefault": false,
					"IsForced": false,
					"Type": "Subtitle",
					"Index": 7,
					"IsExternal": false,
					"DeliveryMethod": "Encode",
					"IsTextSubtitleStream": false,
					"SupportsExternalStream": false,
					"Protocol": "File"
				}
			],
			"Formats": [],
			"Bitrate": 38019837,
			"RequiredHttpHeaders": {},
			"DirectStreamUrl": "/videos/58234/master.m3u8?DeviceId=5f41ffa9-b227-4425-aa93-3974b12f4d75&MediaSourceId=b04376f2669143a3bd8b9edc16590ef3&PlaySessionId=5f29907e2e39465e849d25574bef5418&api_key=a1b70696612f4481b8c3eefe79336d49&VideoCodec=h264&AudioCodec=aac&VideoBitrate=5616001&AudioBitrate=384000&AudioStreamIndex=1&SubtitleMethod=Encode&TranscodingMaxAudioChannels=2&SegmentContainer=ts&MinSegments=1&BreakOnNonKeyFrames=True&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline&h264-level=52&TranscodeReasons=ContainerBitrateExceedsLimit",
			"TranscodingUrl": "/videos/58234/master.m3u8?DeviceId=5f41ffa9-b227-4425-aa93-3974b12f4d75&MediaSourceId=b04376f2669143a3bd8b9edc16590ef3&PlaySessionId=5f29907e2e39465e849d25574bef5418&api_key=a1b70696612f4481b8c3eefe79336d49&VideoCodec=h264&AudioCodec=aac&VideoBitrate=5616001&AudioBitrate=384000&AudioStreamIndex=1&SubtitleMethod=Encode&TranscodingMaxAudioChannels=2&SegmentContainer=ts&MinSegments=1&BreakOnNonKeyFrames=True&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline&h264-level=52&TranscodeReasons=ContainerBitrateExceedsLimit",
			"TranscodingSubProtocol": "hls",
			"TranscodingContainer": "ts",
			"ReadAtNativeFramerate": false,
			"DefaultAudioStreamIndex": 1,
			"DefaultSubtitleStreamIndex": -1
		}
	],
	"PlaySessionId": "5f29907e2e39465e849d25574bef5418"
}

 

2020-11-30 00:29:31.154 Info App: Device Id 5f41ffa9-b227-4425-aa93-3974b12f4d75 - UserName test - ID 8d37030bac2e0d62abd483f17200916a PlayState Method Transcode AudioDirect False Video Direct False MediaSourceId 240f8fcb47ac4ef3a16847692cb1f299
2020-11-30 00:29:31.161 Info App: Not found Id 240f8fcb47ac4ef3a16847692cb1f299 in IDs (e80fe04478e55d5f81f32237fb506903)

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...