-
Notifications
You must be signed in to change notification settings - Fork 752
/
utils.py
36 lines (27 loc) · 1017 Bytes
/
utils.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
import base64
from pathlib import Path
from gymnasium.wrappers import RecordVideo
from IPython import display as ipythondisplay
from pyvirtualdisplay import Display
display = Display(visible=0, size=(1400, 900))
display.start()
def record_videos(env, video_folder="videos"):
wrapped = RecordVideo(
env, video_folder=video_folder, episode_trigger=lambda e: True
)
# Capture intermediate frames
env.unwrapped.set_record_video_wrapper(wrapped)
return wrapped
def show_videos(path="videos"):
html = []
for mp4 in Path(path).glob("*.mp4"):
video_b64 = base64.b64encode(mp4.read_bytes())
html.append(
"""<video alt="{}" autoplay
loop controls style="height: 400px;">
<source src="data:video/mp4;base64,{}" type="video/mp4" />
</video>""".format(
mp4, video_b64.decode("ascii")
)
)
ipythondisplay.display(ipythondisplay.HTML(data="<br>".join(html)))