2020-05-31 10:57:41 +00:00
|
|
|
'Device Capabilities for Roku.
|
2020-07-11 07:52:52 +00:00
|
|
|
'This will likely need further tweaking
|
2020-05-31 10:57:41 +00:00
|
|
|
function getDeviceCapabilities() as object
|
|
|
|
|
|
|
|
return {
|
2021-07-09 20:08:32 +00:00
|
|
|
"PlayableMediaTypes": [
|
|
|
|
"Audio",
|
2023-06-01 03:19:03 +00:00
|
|
|
"Video",
|
|
|
|
"Photo"
|
2021-07-09 20:08:32 +00:00
|
|
|
],
|
|
|
|
"SupportedCommands": [],
|
2023-06-01 04:38:31 +00:00
|
|
|
"SupportsPersistentIdentifier": false,
|
2021-07-09 20:08:32 +00:00
|
|
|
"SupportsMediaControl": false,
|
|
|
|
"DeviceProfile": getDeviceProfile()
|
|
|
|
}
|
2020-05-31 10:57:41 +00:00
|
|
|
end function
|
|
|
|
|
2023-05-27 20:43:05 +00:00
|
|
|
' Send Device Profile information to server
|
|
|
|
sub PostDeviceProfile()
|
2023-06-01 03:19:03 +00:00
|
|
|
profile = getDeviceCapabilities()
|
2023-05-27 20:43:05 +00:00
|
|
|
req = APIRequest("/Sessions/Capabilities/Full")
|
|
|
|
req.SetRequest("POST")
|
2023-06-01 03:19:03 +00:00
|
|
|
print "profile =", profile
|
|
|
|
print "profile.DeviceProfile =", profile.DeviceProfile
|
|
|
|
print "profile.DeviceProfile.CodecProfiles ="
|
|
|
|
for each prof in profile.DeviceProfile.CodecProfiles
|
|
|
|
print prof
|
|
|
|
for each cond in prof.Conditions
|
|
|
|
print cond
|
|
|
|
end for
|
|
|
|
end for
|
|
|
|
print "profile.DeviceProfile.ContainerProfiles =", profile.DeviceProfile.ContainerProfiles
|
|
|
|
print "profile.DeviceProfile.DirectPlayProfiles ="
|
|
|
|
for each prof in profile.DeviceProfile.DirectPlayProfiles
|
|
|
|
print prof
|
|
|
|
end for
|
|
|
|
print "profile.DeviceProfile.SubtitleProfiles ="
|
|
|
|
for each prof in profile.DeviceProfile.SubtitleProfiles
|
|
|
|
print prof
|
|
|
|
end for
|
|
|
|
print "profile.DeviceProfile.TranscodingProfiles ="
|
|
|
|
for each prof in profile.DeviceProfile.TranscodingProfiles
|
|
|
|
print prof
|
|
|
|
end for
|
|
|
|
print "profile.PlayableMediaTypes =", profile.PlayableMediaTypes
|
|
|
|
print "profile.SupportedCommands =", profile.SupportedCommands
|
|
|
|
postJson(req, FormatJson(profile))
|
2023-05-27 20:43:05 +00:00
|
|
|
end sub
|
2020-05-31 10:57:41 +00:00
|
|
|
|
|
|
|
function getDeviceProfile() as object
|
2023-06-01 12:43:27 +00:00
|
|
|
playMpeg2 = m.global.session.user.settings["playback.mpeg2"]
|
|
|
|
playAv1 = m.global.session.user.settings["playback.av1"]
|
2023-06-01 03:19:03 +00:00
|
|
|
di = CreateObject("roDeviceInfo")
|
|
|
|
|
|
|
|
maxAudioChannels = "2" ' Currently Jellyfin server expects this as a string
|
|
|
|
tsVideoCodecs = "h264"
|
|
|
|
tsAudioCodecs = "aac"
|
2020-05-31 10:57:41 +00:00
|
|
|
|
|
|
|
'Check if 5.1 Audio Output connected
|
2021-06-26 13:52:16 +00:00
|
|
|
if di.GetAudioOutputChannel() = "5.1 surround"
|
2023-06-01 03:19:03 +00:00
|
|
|
maxAudioChannels = "6"
|
2020-05-31 10:57:41 +00:00
|
|
|
end if
|
|
|
|
|
2023-06-01 03:19:03 +00:00
|
|
|
' HEVC
|
2022-07-07 20:13:30 +00:00
|
|
|
addHevcProfile = false
|
2023-06-01 03:19:03 +00:00
|
|
|
hevcProfileString = ""
|
|
|
|
hevcHighestLevel = 4.1
|
|
|
|
|
|
|
|
if di.CanDecodeVideo({ Codec: "hevc", Container: "ts" }).Result = true
|
2022-12-01 08:23:32 +00:00
|
|
|
tsVideoCodecs = "h265,hevc," + tsVideoCodecs
|
2022-07-07 20:13:30 +00:00
|
|
|
addHevcProfile = true
|
2023-06-01 03:19:03 +00:00
|
|
|
|
|
|
|
hevcProfiles = ["main", "main 10"]
|
|
|
|
hevcLevels = ["4.1", "5.0", "5.1"]
|
|
|
|
supportArray = {}
|
|
|
|
|
|
|
|
for each profile in hevcProfiles
|
|
|
|
for each level in hevcLevels
|
|
|
|
if di.CanDecodeVideo({ Codec: "hevc", Container: "ts", Profile: profile, Level: level }).Result
|
|
|
|
if supportArray[profile] = invalid
|
|
|
|
supportArray[profile] = []
|
|
|
|
if hevcProfileString = ""
|
|
|
|
hevcProfileString = profile
|
|
|
|
else
|
|
|
|
hevcProfileString = hevcProfileString + "|" + profile
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
supportArray[profile].Push(level)
|
|
|
|
end if
|
|
|
|
end for
|
|
|
|
end for
|
|
|
|
|
|
|
|
for each prof in supportArray
|
|
|
|
highestLevelString = supportArray[prof].Pop()
|
|
|
|
if highestLevelString = "5"
|
|
|
|
hevcHighestLevel = 5
|
|
|
|
end if
|
|
|
|
if highestLevelString = "5.1"
|
|
|
|
hevcHighestLevel = 5.1
|
|
|
|
end if
|
|
|
|
end for
|
2022-03-29 01:21:02 +00:00
|
|
|
end if
|
|
|
|
|
2023-06-01 03:19:03 +00:00
|
|
|
' MPEG2
|
|
|
|
addMpeg2Profile = false
|
|
|
|
mpeg2LevelString = ""
|
|
|
|
if playMpeg2 and di.CanDecodeVideo({ Codec: "mpeg2", Container: "ts" }).Result = true
|
2022-12-01 08:23:32 +00:00
|
|
|
tsVideoCodecs = tsVideoCodecs + ",mpeg2video"
|
2023-06-01 03:19:03 +00:00
|
|
|
addMpeg2Profile = true
|
|
|
|
|
|
|
|
mpeg2Levels = ["main", "high"]
|
|
|
|
|
|
|
|
for each level in mpeg2Levels
|
|
|
|
if di.CanDecodeVideo({ Codec: "mpeg2", Container: "ts", Level: level }).Result
|
|
|
|
if mpeg2LevelString = ""
|
|
|
|
mpeg2LevelString = level
|
|
|
|
else
|
|
|
|
mpeg2LevelString = mpeg2LevelString + "|" + level
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
end for
|
2021-08-24 01:21:15 +00:00
|
|
|
end if
|
|
|
|
|
2023-06-01 03:19:03 +00:00
|
|
|
if di.CanDecodeAudio({ Codec: "mp3", Container: "ts" }).result
|
|
|
|
tsAudioCodecs = tsAudioCodecs + ",mp3"
|
|
|
|
end if
|
|
|
|
|
|
|
|
if di.CanDecodeAudio({ Codec: "dts", Container: "ts" }).result
|
|
|
|
tsAudioCodecs = "dts," + tsAudioCodecs
|
|
|
|
end if
|
|
|
|
|
|
|
|
if di.CanDecodeAudio({ Codec: "ac3", Container: "ts" }).result
|
|
|
|
tsAudioCodecs = "ac3," + tsAudioCodecs
|
|
|
|
end if
|
|
|
|
|
|
|
|
' prefer eac3 over all other audio codecs
|
|
|
|
if di.CanDecodeAudio({ Codec: "eac3", Container: "ts" }).result
|
|
|
|
tsAudioCodecs = "eac3," + tsAudioCodecs
|
2021-08-24 01:21:15 +00:00
|
|
|
end if
|
|
|
|
|
2022-07-07 19:58:01 +00:00
|
|
|
addAv1Profile = false
|
2023-06-01 03:19:03 +00:00
|
|
|
if playAv1 and di.CanDecodeVideo({ Codec: "av1", Container: "ts" }).result
|
2022-07-07 19:58:01 +00:00
|
|
|
tsVideoCodecs = tsVideoCodecs + ",av1"
|
|
|
|
addAv1Profile = true
|
|
|
|
end if
|
|
|
|
|
|
|
|
addVp9Profile = false
|
2023-06-01 03:19:03 +00:00
|
|
|
if di.CanDecodeVideo({ Codec: "vp9", Container: "ts" }).result
|
2022-07-07 19:58:01 +00:00
|
|
|
tsVideoCodecs = tsVideoCodecs + ",vp9"
|
|
|
|
addVp9Profile = true
|
|
|
|
end if
|
2021-08-24 01:21:15 +00:00
|
|
|
|
2022-07-07 19:58:01 +00:00
|
|
|
hevcVideoRangeTypes = "SDR"
|
|
|
|
vp9VideoRangeTypes = "SDR"
|
|
|
|
av1VideoRangeTypes = "SDR"
|
|
|
|
|
|
|
|
dp = di.GetDisplayProperties()
|
|
|
|
if dp.Hdr10 ' or dp.Hdr10Plus?
|
2022-10-16 10:45:53 +00:00
|
|
|
hevcVideoRangeTypes = hevcVideoRangeTypes + "|HDR10"
|
|
|
|
vp9VideoRangeTypes = vp9VideoRangeTypes + "|HDR10"
|
|
|
|
av1VideoRangeTypes = av1VideoRangeTypes + "|HDR10"
|
2022-07-07 19:58:01 +00:00
|
|
|
end if
|
|
|
|
if dp.HLG
|
2022-10-16 10:45:53 +00:00
|
|
|
hevcVideoRangeTypes = hevcVideoRangeTypes + "|HLG"
|
|
|
|
vp9VideoRangeTypes = vp9VideoRangeTypes + "|HLG"
|
|
|
|
av1VideoRangeTypes = av1VideoRangeTypes + "|HLG"
|
2022-07-07 19:58:01 +00:00
|
|
|
end if
|
|
|
|
if dp.DolbyVision
|
2022-10-16 10:45:53 +00:00
|
|
|
hevcVideoRangeTypes = hevcVideoRangeTypes + "|DOVI"
|
2022-07-07 19:58:01 +00:00
|
|
|
'vp9VideoRangeTypes = vp9VideoRangeTypes + ",DOVI" no evidence that vp9 can hold DOVI
|
2022-10-16 10:45:53 +00:00
|
|
|
av1VideoRangeTypes = av1VideoRangeTypes + "|DOVI"
|
2022-07-07 19:58:01 +00:00
|
|
|
end if
|
2022-10-16 10:45:53 +00:00
|
|
|
|
2021-10-12 07:13:25 +00:00
|
|
|
DirectPlayProfile = GetDirectPlayProfiles()
|
2021-08-24 01:21:15 +00:00
|
|
|
|
2022-10-16 10:45:53 +00:00
|
|
|
deviceProfile = {
|
2020-05-31 10:57:41 +00:00
|
|
|
"MaxStreamingBitrate": 120000000,
|
|
|
|
"MaxStaticBitrate": 100000000,
|
|
|
|
"MusicStreamingTranscodingBitrate": 192000,
|
2021-10-12 07:13:25 +00:00
|
|
|
"DirectPlayProfiles": DirectPlayProfile,
|
2020-05-31 10:57:41 +00:00
|
|
|
"TranscodingProfiles": [
|
|
|
|
{
|
|
|
|
"Container": "aac",
|
|
|
|
"Type": "Audio",
|
|
|
|
"AudioCodec": "aac",
|
|
|
|
"Context": "Streaming",
|
|
|
|
"Protocol": "http",
|
2023-06-01 03:19:03 +00:00
|
|
|
"MaxAudioChannels": maxAudioChannels
|
2020-05-31 10:57:41 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"Container": "mp3",
|
|
|
|
"Type": "Audio",
|
|
|
|
"AudioCodec": "mp3",
|
|
|
|
"Context": "Streaming",
|
|
|
|
"Protocol": "http",
|
2020-09-22 14:33:53 +00:00
|
|
|
"MaxAudioChannels": "2"
|
2020-05-31 10:57:41 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"Container": "mp3",
|
|
|
|
"Type": "Audio",
|
|
|
|
"AudioCodec": "mp3",
|
|
|
|
"Context": "Static",
|
|
|
|
"Protocol": "http",
|
2020-09-22 14:33:53 +00:00
|
|
|
"MaxAudioChannels": "2"
|
2020-05-31 10:57:41 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"Container": "aac",
|
|
|
|
"Type": "Audio",
|
|
|
|
"AudioCodec": "aac",
|
|
|
|
"Context": "Static",
|
|
|
|
"Protocol": "http",
|
2023-06-01 03:19:03 +00:00
|
|
|
"MaxAudioChannels": maxAudioChannels
|
2020-05-31 10:57:41 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"Container": "ts",
|
|
|
|
"Type": "Video",
|
2021-08-24 01:21:15 +00:00
|
|
|
"AudioCodec": tsAudioCodecs,
|
|
|
|
"VideoCodec": tsVideoCodecs,
|
2020-05-31 10:57:41 +00:00
|
|
|
"Context": "Streaming",
|
|
|
|
"Protocol": "hls",
|
2023-06-01 03:19:03 +00:00
|
|
|
"MaxAudioChannels": maxAudioChannels,
|
2020-05-31 10:57:41 +00:00
|
|
|
"MinSegments": "1",
|
|
|
|
"BreakOnNonKeyFrames": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Container": "mp4",
|
|
|
|
"Type": "Video",
|
|
|
|
"AudioCodec": "aac,opus,flac,vorbis",
|
|
|
|
"VideoCodec": "h264",
|
|
|
|
"Context": "Static",
|
|
|
|
"Protocol": "http"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"ContainerProfiles": [],
|
|
|
|
"CodecProfiles": [
|
2021-10-12 07:13:25 +00:00
|
|
|
{
|
|
|
|
"Type": "VideoAudio",
|
2021-10-12 07:21:31 +00:00
|
|
|
"Codec": DirectPlayProfile[1].AudioCodec, ' Use supported MKV Audio list
|
2021-10-12 07:13:25 +00:00
|
|
|
"Conditions": [
|
|
|
|
{
|
|
|
|
"Condition": "LessThanEqual",
|
|
|
|
"Property": "AudioChannels",
|
2023-06-01 03:19:03 +00:00
|
|
|
"Value": maxAudioChannels,
|
2021-10-12 07:13:25 +00:00
|
|
|
"IsRequired": false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-05-31 10:57:41 +00:00
|
|
|
{
|
|
|
|
"Type": "Video",
|
|
|
|
"Codec": "h264",
|
|
|
|
"Conditions": [
|
|
|
|
{
|
|
|
|
"Condition": "EqualsAny",
|
|
|
|
"Property": "VideoProfile",
|
2022-07-01 16:02:27 +00:00
|
|
|
"Value": "high|main",
|
2020-05-31 10:57:41 +00:00
|
|
|
"IsRequired": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Condition": "LessThanEqual",
|
|
|
|
"Property": "VideoLevel",
|
2022-07-01 16:02:27 +00:00
|
|
|
"Value": "41",
|
|
|
|
"IsRequired": false
|
2022-12-19 00:15:10 +00:00
|
|
|
},
|
2023-01-25 13:44:26 +00:00
|
|
|
GetBitRateLimit("H264")
|
2022-07-01 16:02:27 +00:00
|
|
|
]
|
2020-05-31 10:57:41 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"SubtitleProfiles": [
|
|
|
|
{
|
|
|
|
"Format": "vtt",
|
|
|
|
"Method": "External"
|
|
|
|
},
|
|
|
|
{
|
2020-07-11 07:52:52 +00:00
|
|
|
"Format": "srt",
|
2020-05-31 10:57:41 +00:00
|
|
|
"Method": "External"
|
|
|
|
},
|
|
|
|
{
|
2020-07-11 07:52:52 +00:00
|
|
|
"Format": "ttml",
|
2020-05-31 10:57:41 +00:00
|
|
|
"Method": "External"
|
2022-03-29 19:54:46 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"Format": "sub",
|
|
|
|
"Method": "External"
|
2020-05-31 10:57:41 +00:00
|
|
|
}
|
2020-07-11 07:52:52 +00:00
|
|
|
]
|
|
|
|
}
|
2023-06-01 03:19:03 +00:00
|
|
|
if addMpeg2Profile
|
|
|
|
deviceProfile.CodecProfiles.push({
|
|
|
|
"Type": "Video",
|
|
|
|
"Codec": "mpeg2",
|
|
|
|
"Conditions": [
|
|
|
|
{
|
|
|
|
"Condition": "EqualsAny",
|
|
|
|
"Property": "VideoLevel",
|
|
|
|
"Value": mpeg2LevelString,
|
|
|
|
"IsRequired": false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
end if
|
2022-07-07 19:58:01 +00:00
|
|
|
if addAv1Profile
|
|
|
|
deviceProfile.CodecProfiles.push({
|
2022-10-16 10:45:53 +00:00
|
|
|
"Type": "Video",
|
|
|
|
"Codec": "av1",
|
|
|
|
"Conditions": [
|
|
|
|
{
|
|
|
|
"Condition": "EqualsAny",
|
|
|
|
"Property": "VideoRangeType",
|
|
|
|
"Value": av1VideoRangeTypes,
|
|
|
|
"IsRequired": false
|
2022-12-19 00:15:10 +00:00
|
|
|
},
|
2023-01-25 13:44:26 +00:00
|
|
|
GetBitRateLimit("AV1")
|
2022-10-16 10:45:53 +00:00
|
|
|
]
|
|
|
|
})
|
2022-07-07 20:13:30 +00:00
|
|
|
end if
|
|
|
|
if addHevcProfile
|
|
|
|
deviceProfile.CodecProfiles.push({
|
2022-10-16 10:45:53 +00:00
|
|
|
"Type": "Video",
|
|
|
|
"Codec": "hevc",
|
|
|
|
"Conditions": [
|
|
|
|
{
|
|
|
|
"Condition": "EqualsAny",
|
|
|
|
"Property": "VideoProfile",
|
2023-06-01 03:19:03 +00:00
|
|
|
"Value": hevcProfileString,
|
2022-10-16 10:45:53 +00:00
|
|
|
"IsRequired": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Condition": "EqualsAny",
|
|
|
|
"Property": "VideoRangeType",
|
|
|
|
"Value": hevcVideoRangeTypes,
|
|
|
|
"IsRequired": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Condition": "LessThanEqual",
|
|
|
|
"Property": "VideoLevel",
|
2023-06-01 03:19:03 +00:00
|
|
|
"Value": (120 * hevcHighestLevel).ToStr(),
|
2022-10-16 10:45:53 +00:00
|
|
|
"IsRequired": false
|
2022-12-19 00:15:10 +00:00
|
|
|
},
|
2023-01-25 13:44:26 +00:00
|
|
|
GetBitRateLimit("H265")
|
2022-10-16 10:45:53 +00:00
|
|
|
]
|
|
|
|
})
|
2022-07-07 20:13:30 +00:00
|
|
|
end if
|
2022-07-07 19:58:01 +00:00
|
|
|
if addVp9Profile
|
|
|
|
deviceProfile.CodecProfiles.push({
|
2022-10-16 10:45:53 +00:00
|
|
|
"Type": "Video",
|
|
|
|
"Codec": "vp9",
|
|
|
|
"Conditions": [
|
|
|
|
{
|
|
|
|
"Condition": "EqualsAny",
|
|
|
|
"Property": "VideoRangeType",
|
|
|
|
"Value": vp9VideoRangeTypes,
|
|
|
|
"IsRequired": false
|
2022-12-19 00:15:10 +00:00
|
|
|
},
|
2023-01-25 13:44:26 +00:00
|
|
|
GetBitRateLimit("VP9")
|
2022-10-16 10:45:53 +00:00
|
|
|
]
|
|
|
|
})
|
2022-07-07 19:58:01 +00:00
|
|
|
end if
|
2022-10-16 10:45:53 +00:00
|
|
|
|
2022-07-07 19:58:01 +00:00
|
|
|
return deviceProfile
|
2020-07-11 07:52:52 +00:00
|
|
|
end function
|
|
|
|
|
|
|
|
|
|
|
|
function GetDirectPlayProfiles() as object
|
|
|
|
di = CreateObject("roDeviceInfo")
|
2023-06-01 04:35:08 +00:00
|
|
|
' all possible containers
|
|
|
|
supportedCodecs = {
|
|
|
|
mp4: {
|
|
|
|
audio: [],
|
|
|
|
video: []
|
|
|
|
},
|
|
|
|
m4v: {
|
|
|
|
audio: [],
|
|
|
|
video: []
|
|
|
|
},
|
|
|
|
mov: {
|
|
|
|
audio: [],
|
|
|
|
video: []
|
|
|
|
},
|
|
|
|
mkv: {
|
|
|
|
audio: [],
|
|
|
|
video: []
|
|
|
|
},
|
|
|
|
webm: {
|
|
|
|
audio: [],
|
|
|
|
video: []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
' all possible codecs
|
|
|
|
videoCodecs = ["h264", "vp8", "hevc", "vp9"]
|
|
|
|
audioCodecs = ["mp3", "pcm", "lpcm", "wav", "ac3", "wma", "flac", "alac", "aac", "opus", "dts", "wmapro", "vorbis", "eac3"]
|
|
|
|
' respect user settings
|
2023-06-01 13:42:50 +00:00
|
|
|
if m.global.session.user.settings["playback.mpeg4"]
|
2023-06-01 04:35:08 +00:00
|
|
|
videoCodecs.push("mpeg4")
|
2020-07-11 07:52:52 +00:00
|
|
|
end if
|
2023-06-01 13:42:50 +00:00
|
|
|
if m.global.session.user.settings["playback.mpeg2"]
|
2023-06-01 04:35:08 +00:00
|
|
|
videoCodecs.push("mpeg2")
|
2020-07-11 07:52:52 +00:00
|
|
|
end if
|
2023-06-01 04:35:08 +00:00
|
|
|
' check video codecs for each container
|
|
|
|
for each container in supportedCodecs
|
|
|
|
for each videoCodec in videoCodecs
|
|
|
|
if di.CanDecodeVideo({ Codec: videoCodec, Container: container }).Result
|
|
|
|
if videoCodec = "hevc"
|
|
|
|
supportedCodecs[container]["video"].push("hevc")
|
|
|
|
supportedCodecs[container]["video"].push("h265")
|
|
|
|
else if videoCodec = "mpeg2"
|
|
|
|
supportedCodecs[container]["video"].push("mpeg2video")
|
|
|
|
else
|
|
|
|
' device profile string matches codec string
|
|
|
|
supportedCodecs[container]["video"].push(videoCodec)
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
end for
|
|
|
|
end for
|
|
|
|
' check audio codecs for each container
|
|
|
|
for each container in supportedCodecs
|
|
|
|
for each audioCodec in audioCodecs
|
|
|
|
if di.CanDecodeAudio({ Codec: audioCodec, Container: container }).Result
|
|
|
|
supportedCodecs[container]["audio"].push(audioCodec)
|
|
|
|
end if
|
|
|
|
end for
|
|
|
|
end for
|
|
|
|
' check audio codecs with no container
|
|
|
|
supportedAudio = []
|
|
|
|
for each audioCodec in audioCodecs
|
|
|
|
if di.CanDecodeAudio({ Codec: audioCodec }).Result
|
|
|
|
supportedAudio.push(audioCodec)
|
|
|
|
end if
|
|
|
|
end for
|
2020-07-11 07:52:52 +00:00
|
|
|
|
2023-06-01 04:35:08 +00:00
|
|
|
returnArray = []
|
|
|
|
for each container in supportedCodecs
|
2023-06-01 04:37:04 +00:00
|
|
|
videoCodecString = supportedCodecs[container]["video"].Join(",")
|
|
|
|
if videoCodecString <> ""
|
2023-06-01 04:35:08 +00:00
|
|
|
returnArray.push({
|
|
|
|
"Container": container,
|
|
|
|
"Type": "Video",
|
2023-06-01 04:37:04 +00:00
|
|
|
"VideoCodec": videoCodecString,
|
2023-06-01 04:35:08 +00:00
|
|
|
"AudioCodec": supportedCodecs[container]["audio"].Join(",")
|
|
|
|
})
|
|
|
|
end if
|
|
|
|
end for
|
2020-07-11 07:52:52 +00:00
|
|
|
|
2023-06-01 04:35:08 +00:00
|
|
|
returnArray.push({
|
|
|
|
"Container": supportedAudio.Join(","),
|
|
|
|
"Type": "Audio"
|
|
|
|
})
|
|
|
|
return returnArray
|
2022-03-28 19:40:34 +00:00
|
|
|
end function
|
2023-01-25 13:44:26 +00:00
|
|
|
|
|
|
|
function GetBitRateLimit(codec as string)
|
2023-06-01 12:43:27 +00:00
|
|
|
if m.global.session.user.settings["playback.bitrate.maxlimited"] = true
|
|
|
|
userSetLimit = m.global.session.user.settings["playback.bitrate.limit"]
|
2023-02-04 13:54:39 +00:00
|
|
|
userSetLimit *= 1000000
|
|
|
|
|
|
|
|
if userSetLimit > 0
|
2023-01-26 03:25:22 +00:00
|
|
|
return {
|
|
|
|
"Condition": "LessThanEqual",
|
|
|
|
"Property": "VideoBitrate",
|
2023-02-04 13:54:39 +00:00
|
|
|
"Value": userSetLimit.ToStr(),
|
2023-06-01 03:19:03 +00:00
|
|
|
"IsRequired": true
|
2023-01-26 03:25:22 +00:00
|
|
|
}
|
2023-02-04 13:54:39 +00:00
|
|
|
else
|
|
|
|
' Some repeated values (e.g. same "40mbps" for several codecs)
|
|
|
|
' but this makes it easy to update in the future if the bitrates start to deviate.
|
|
|
|
if codec = "H264"
|
|
|
|
' Roku only supports h264 up to 10Mpbs
|
|
|
|
return {
|
|
|
|
"Condition": "LessThanEqual",
|
|
|
|
"Property": "VideoBitrate",
|
|
|
|
"Value": "10000000",
|
2023-06-01 03:19:03 +00:00
|
|
|
"IsRequired": true
|
2023-02-04 13:54:39 +00:00
|
|
|
}
|
|
|
|
else if codec = "AV1"
|
|
|
|
' Roku only supports AV1 up to 40Mpbs
|
|
|
|
return {
|
|
|
|
"Condition": "LessThanEqual",
|
|
|
|
"Property": "VideoBitrate",
|
|
|
|
"Value": "40000000",
|
2023-06-01 03:19:03 +00:00
|
|
|
"IsRequired": true
|
2023-02-04 13:54:39 +00:00
|
|
|
}
|
|
|
|
else if codec = "H265"
|
|
|
|
' Roku only supports h265 up to 40Mpbs
|
|
|
|
return {
|
|
|
|
"Condition": "LessThanEqual",
|
|
|
|
"Property": "VideoBitrate",
|
|
|
|
"Value": "40000000",
|
2023-06-01 03:19:03 +00:00
|
|
|
"IsRequired": true
|
2023-02-04 13:54:39 +00:00
|
|
|
}
|
|
|
|
else if codec = "VP9"
|
|
|
|
' Roku only supports VP9 up to 40Mpbs
|
|
|
|
return {
|
|
|
|
"Condition": "LessThanEqual",
|
|
|
|
"Property": "VideoBitrate",
|
|
|
|
"Value": "40000000",
|
2023-06-01 03:19:03 +00:00
|
|
|
"IsRequired": true
|
2023-02-04 13:54:39 +00:00
|
|
|
}
|
|
|
|
end if
|
2023-01-26 03:25:22 +00:00
|
|
|
end if
|
2023-01-25 13:44:26 +00:00
|
|
|
end if
|
|
|
|
return {}
|
|
|
|
end function
|