jf-roku/source/VideoPlayer.brs

188 lines
6.4 KiB
Plaintext
Raw Normal View History

function VideoPlayer(id)
2019-04-29 16:44:37 +00:00
' Get video controls and UI
video = CreateObject("roSGNode", "JFVideo")
2020-02-17 19:30:04 +00:00
video.id = id
video = VideoContent(video)
2020-03-04 02:46:26 +00:00
if video = invalid
return invalid
end if
jellyfin_blue = "#00a4dcFF"
video.retrievingBar.filledBarBlendColor = jellyfin_blue
video.bufferingBar.filledBarBlendColor = jellyfin_blue
video.trickPlayBar.filledBarBlendColor = jellyfin_blue
2019-03-05 04:59:31 +00:00
return video
2019-01-31 04:56:15 +00:00
end function
2020-02-17 19:30:04 +00:00
function VideoContent(video) as object
2019-04-29 16:44:37 +00:00
' Get video stream
2020-02-17 19:30:04 +00:00
video.content = createObject("RoSGNode", "ContentNode")
2020-02-29 03:13:12 +00:00
params = {}
2019-01-31 04:56:15 +00:00
2020-02-17 19:30:04 +00:00
meta = ItemMetaData(video.id)
video.content.title = meta.Name
2019-04-22 05:09:16 +00:00
container = getContainerType(meta)
' If there is a last playback positon, ask user if they want to resume
position = meta.json.UserData.PlaybackPositionTicks
2020-03-04 02:46:26 +00:00
if position > 0 then
dialogResult = startPlaybackOver(position)
'Dialog returns -1 when back pressed, 0 for resume, and 1 for start over
if dialogResult = -1 then
'User pressed back, return invalid and don't load video
return invalid
else if dialogResult = 1 then
'Start Over selected, change position to 0
position = 0
end if
end if
2020-03-04 04:15:02 +00:00
print "dialogResult: " dialogResult
video.content.BookmarkPosition = int(position/10000000)
video.PlaySessionId = ItemGetSession(video.id, position)
2020-02-29 03:13:12 +00:00
params.append({"PlaySessionId": video.PlaySessionId})
2020-02-15 15:34:29 +00:00
2020-02-29 03:13:12 +00:00
video.Subtitles = getSubtitles(meta.id,meta.json.MediaStreams)
if video.Subtitles.count() > 0 then
if video.Subtitles[0].IsTextSubtitleStream then
video.content.SubtitleTracks = video.Subtitles[0].track
2020-02-29 03:25:42 +00:00
else if getCaptionMode() = "On"
'Only transcode if subtitles are turned on
2020-02-29 03:13:12 +00:00
params.append({"SubtitleStreamIndex" : video.Subtitles[0].index })
end if
end if
if directPlaySupported(meta) and decodeAudioSupported(meta) and params.SubtitleStreamIndex = invalid then
params.append({
"Static": "true",
"Container": container
2020-02-15 15:26:36 +00:00
})
2020-02-29 03:13:12 +00:00
video.content.url = buildURL(Substitute("Videos/{0}/stream", video.id), params)
2020-02-17 19:30:04 +00:00
video.content.streamformat = container
video.content.switchingStrategy = ""
else
if decodeAudioSupported(meta) then
audioCodec = meta.json.MediaStreams[1].codec
2020-02-21 04:02:21 +00:00
audioChannels = meta.json.MediaStreams[1].channels
else
audioCodec = "aac"
audioChannels = 2
2020-02-21 04:02:21 +00:00
end if
2020-02-29 03:13:12 +00:00
params.append({
2020-02-17 19:30:04 +00:00
"VideoCodec": "h264",
"AudioCodec": audioCodec,
2020-02-21 04:02:21 +00:00
"MaxAudioChannels": audioChannels,
2020-02-17 19:30:04 +00:00
"MediaSourceId": video.id,
"SegmentContainer": "ts",
"MinSegments": 1,
"BreakOnNonKeyFrames": "True",
"h264-profile": "high,main,baseline,constrainedbaseline",
"RequireAvc": "false",
2020-02-15 15:26:36 +00:00
})
2020-02-29 03:13:12 +00:00
video.content.url = buildURL(Substitute("Videos/{0}/master.m3u8", video.id), params)
end if
2020-02-17 19:30:04 +00:00
video.content = authorize_request(video.content)
2019-01-31 04:56:15 +00:00
2019-04-22 05:09:16 +00:00
' todo - audioFormat is read only
2020-02-17 19:30:04 +00:00
video.content.audioFormat = getAudioFormat(meta)
video.content.setCertificatesFile("common:/certs/ca-bundle.crt")
2020-02-17 19:30:04 +00:00
return video
2019-01-31 04:56:15 +00:00
end function
2019-04-22 05:09:16 +00:00
2020-02-29 03:13:12 +00:00
'Checks available subtitle tracks and puts subtitles in preferred language at the top
function getSubtitles(id as string, MediaStreams)
tracks = []
devinfo = CreateObject("roDeviceInfo")
'Too many args for using substitute
dashedid = id.left(8) + "-" + id.mid(8,4) + "-" + id.mid(12,4) + "-" + id.mid(16,4) + "-" + id.right(12)
prefered_lang = devinfo.GetPreferredCaptionLanguage()
for each stream in MediaStreams
if stream.type = "Subtitle" then
'Documentation lists that srt, ttml, and dfxp can be sideloaded but only srt was working in my testing,
'forcing srt for all text subtitles
url = Substitute("{0}/Videos/{1}/{2}/Subtitles/{3}/0/", get_url(), dashedid, id, stream.index.tostr())
url = url + Substitute("Stream.js?api_key={0}&format=srt", get_setting("active_user"))
stream = { "Track": { "Language" : stream.language, "Description": stream.displaytitle , "TrackName": url }, "IsTextSubtitleStream": stream.IsTextSubtitleStream, "Index": stream.index }
if prefered_lang = stream.language then
tracks.unshift( stream )
else
tracks.push( stream )
end if
end if
end for
return tracks
end function
2020-02-29 03:25:42 +00:00
function getCaptionMode() as string
devinfo = CreateObject("roDeviceInfo")
return devinfo.GetCaptionsMode()
end function
'Opens dialog asking user if they want to resume video or start playback over
2020-03-04 04:15:02 +00:00
function startPlayBackOver(time as LongInteger) as integer
2020-03-04 04:15:37 +00:00
return option_dialog([ "Resume playing at " + ticksToHuman(time) + ".", "Start over from the beginning." ])
end function
function directPlaySupported(meta as object) as boolean
2020-02-21 04:02:21 +00:00
devinfo = CreateObject("roDeviceInfo")
return devinfo.CanDecodeVideo({ Codec: meta.json.MediaStreams[0].codec }).result
end function
function decodeAudioSupported(meta as object) as boolean
devinfo = CreateObject("roDeviceInfo")
return devinfo.CanDecodeAudio({ Codec: meta.json.MediaStreams[1].codec, ChCnt: meta.json.MediaStreams[1].channels }).result
end function
2019-04-22 05:09:16 +00:00
function getContainerType(meta as object) as string
2019-04-29 16:44:37 +00:00
' Determine the file type of the video file source
print type(meta)
2019-04-22 05:09:16 +00:00
if meta.json.mediaSources = invalid then return ""
container = meta.json.mediaSources[0].container
if container = invalid
container = ""
else if container = "m4v" or container = "mov"
container = "mp4"
end if
return container
end function
function getAudioFormat(meta as object) as string
2019-04-29 16:44:37 +00:00
' Determine the codec of the audio file source
2019-04-22 05:09:16 +00:00
if meta.json.mediaSources = invalid then return ""
audioInfo = getAudioInfo(meta)
if audioInfo.count() = 0 then return ""
return audioInfo[0].codec
end function
function getAudioInfo(meta as object) as object
2019-04-29 16:44:37 +00:00
' Return audio metadata for a given stream
2019-04-22 05:09:16 +00:00
results = []
for each source in meta.json.mediaSources[0].mediaStreams
if source["type"] = "Audio"
results.push(source)
end if
end for
return results
end function
2020-02-17 19:30:04 +00:00
function ReportPlayback(video, state = "update" as string)
params = {
"PlaySessionId": video.PlaySessionId,
2020-02-21 04:02:21 +00:00
"PositionTicks": str(int(video.position)) + "0000000",
2020-02-17 19:30:04 +00:00
"IsPaused": (video.state = "paused"),
}
PlaystateUpdate(video.id, state, params)
end function
function StopPlayback()
video = m.scene.focusedchild
video.findNode("playbackTimer").control = "stop"
video.control = "stop"
video.visible = "false"
if video.status = "finished" then MarkItemWatched(video.id)
2020-02-21 04:02:21 +00:00
ReportPlayback(video, "stop")
2020-02-17 19:30:04 +00:00
end function