-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvideo.py
87 lines (73 loc) · 2.7 KB
/
video.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import imageio
import os
import numpy as np
import sys
import utils
class VideoRecorder(object):
def __init__(self, root_dir, height=256, width=256, camera_id=0, fps=30):
self.save_dir = utils.make_dir(root_dir, 'video') if root_dir else None
self.height = height
self.width = width
self.camera_id = camera_id
self.fps = fps
self.duration = int(1000 * 1 / self.fps)
self.frames = []
def init(self, enabled=True):
self.frames = []
self.enabled = self.save_dir is not None and enabled
def record(self, env):
if self.enabled:
frame = env.render(mode='rgb_array',
height=self.height,
width=self.width,
camera_id=self.camera_id)
self.frames.append(frame)
def save(self, file_name):
if self.enabled:
path = os.path.join(self.save_dir, file_name)
imageio.mimsave(path, self.frames, duration=self.duration, loop=0)
class MetaWorldVideoRecorder(object):
def __init__(self, root_dir, height=128, width=128, camera_id=0, fps=30):
self.save_dir = utils.make_dir(root_dir, 'video') if root_dir else None
self.height = height
self.width = width
self.camera_id = camera_id
self.fps = fps
self.frames = []
def init(self, enabled=True):
self.frames = []
self.enabled = self.save_dir is not None and enabled
def record(self, env):
if self.enabled:
"""frame = env.env.sim.render(
*(env.env._rgb_array_res),
mode='offscreen',
camera_name='corner'
)[:, :, ::-1]"""
frame = env.render(mode='rgb_array')
self.frames.append(frame)
def save(self, file_name):
if self.enabled:
path = os.path.join(self.save_dir, file_name)
imageio.mimsave(path, self.frames, fps=self.fps)
class ShortVideoRecorder(object):
def __init__(self, height=256, width=256, camera_id=0, fps=30):
self.height = height
self.width = width
self.camera_id = camera_id
self.fps = fps
self.frames = []
def init(self, enabled=True):
self.frames = []
def record(self, env):
frame = env.render(mode='rgb_array',
height=self.height,
width=self.width,
camera_id=self.camera_id)
self.frames.append(frame)
def get_record(self):
out = self.frames
self.frames = []
return out
def save(self, path):
imageio.mimsave(path, self.frames, fps=self.fps)