File size: 2,519 Bytes
be9c115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import gym
import numpy as np

from gym.wrappers.monitoring.video_recorder import VideoRecorder
from typing import Tuple, Union

ObsType = Union[np.ndarray, dict]
ActType = Union[int, float, np.ndarray, dict]


class EpisodeRecordVideo(gym.Wrapper):
    def __init__(
        self,
        env: gym.Env,
        video_path_prefix: str,
        step_increment: int = 1,
        video_step_interval: int = 1_000_000,
        max_video_length: int = 3600,
    ) -> None:
        super().__init__(env)
        self.video_path_prefix = video_path_prefix
        self.step_increment = step_increment
        self.video_step_interval = video_step_interval
        self.max_video_length = max_video_length
        self.total_steps = 0
        self.next_record_video_step = 0
        self.video_recorder = None
        self.recorded_frames = 0

    def step(self, action: ActType) -> Tuple[ObsType, float, bool, dict]:
        obs, rew, done, info = self.env.step(action)
        self.total_steps += self.step_increment
        # Using first env to record episodes
        if self.video_recorder:
            self.video_recorder.capture_frame()
            self.recorded_frames += 1
            if info.get("episode"):
                episode_info = {
                    k: v.item() if hasattr(v, "item") else v
                    for k, v in info["episode"].items()
                }
                self.video_recorder.metadata["episode"] = episode_info
            if self.recorded_frames > self.max_video_length:
                self._close_video_recorder()
        return obs, rew, done, info

    def reset(self, **kwargs) -> ObsType:
        obs = self.env.reset(**kwargs)
        if self.video_recorder:
            self._close_video_recorder()
        elif self.total_steps >= self.next_record_video_step:
            self._start_video_recorder()
        return obs

    def _start_video_recorder(self) -> None:
        self._close_video_recorder()

        video_path = f"{self.video_path_prefix}-{self.next_record_video_step}"
        self.video_recorder = VideoRecorder(
            self.env,
            base_path=video_path,
            metadata={"step": self.total_steps},
        )

        self.video_recorder.capture_frame()
        self.recorded_frames = 1
        self.next_record_video_step += self.video_step_interval

    def _close_video_recorder(self) -> None:
        if self.video_recorder:
            self.video_recorder.close()
        self.video_recorder = None
        self.recorded_frames = 0