-
Notifications
You must be signed in to change notification settings - Fork 3k
/
Copy pathvideo_player.py
69 lines (54 loc) · 2.4 KB
/
video_player.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import json
import dash
from dash import dcc, html, Input, Output, ALL, MATCH
from dash.exceptions import PreventUpdate
from .card import create_card, card_callback
from server import Server
def create_video_player(stream):
"""
Create a video player card from a stream
TODO: scale the card dimensions based on stream aspect ratio (default is 1280x720)
grid row height is 30px (different than column width)
"""
stream_config = Server.request(f"/streams/{stream}").json()
stream_config['video_player'] = f"video_player_element_{stream}"
"""
# https://stackoverflow.com/questions/23248441/resizing-video-element-to-parent-div
# https://stackoverflow.com/questions/4000818/scale-html5-video-and-break-aspect-ratio-to-fill-whole-site
video_player_style={
'position': 'absolute',
'right': 0,
'bottom': 0,
'minWidth': '50%',
'minHeight': '50%',
'width': 'auto',
'height': 'auto',
'zIndex': -100,
'backgroundSize': 'cover',
'overflow': 'hidden',
}
"""
video_player_style={
'width': '100%',
#'objectFit': 'cover',
}
children = [
html.Video(id=stream_config['video_player'], controls=True, autoPlay=True, muted=True, style=video_player_style),
html.Div(id={'type': 'hidden_div_video_player', 'index': stream}, style={'display':'none'}),
dcc.Store(id={'type': 'video_player_config', 'index': stream}, data=json.dumps(stream_config)),
]
return create_card(children, title=stream, id=stream, width=6, height=15) #, settings_button='card-settings-stream')
@card_callback(Input({'type': 'navbar_stream', 'index': ALL}, 'n_clicks'))
def play_stream(n_clicks):
#print(f"play stream {dash.ctx.triggered_id['index']} n_clicks={n_clicks}")
#print(f"n_clicks: {n_clicks}")
#print(dash.ctx.triggered)
if dash.ctx.triggered[0]['value'] > 0:
return create_video_player(dash.ctx.triggered_id['index'])
return None
dash.clientside_callback(
dash.ClientsideFunction('webrtc', 'playStream'),
Output({'type': 'hidden_div_video_player', 'index': MATCH}, 'children'), # script has no output, but dash callbacks must have outputs
Input({'type': 'video_player_config', 'index': MATCH}, 'data'),
#prevent_initial_call=True
)