We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My steps so far:
env = runner.env._envs env = gym.wrappers.Monitor(env, '/tmp/policy.mp4') rec = VideoRecorder(env, enabled=True)
env = runner.env._envs
env = gym.wrappers.Monitor(env, '/tmp/policy.mp4')
rec = VideoRecorder(env, enabled=True)
then I highjack runner.run(test_mode=True, rec=rec) in EpisodeRunner by adding rec.capture_frame() in the while not terminated loop
runner.run(test_mode=True, rec=rec)
rec.capture_frame()
afterwards I close the VideoRecorder.
My expectation would be a .mp4 Video. Instead I just get the .json files, which are empty.
Has anybody managed to get a Video out of epymarl?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My steps so far:
env = runner.env._envs
env = gym.wrappers.Monitor(env, '/tmp/policy.mp4')
rec = VideoRecorder(env, enabled=True)
then I highjack
runner.run(test_mode=True, rec=rec)
in EpisodeRunnerby adding
rec.capture_frame()
in the while not terminated loop
afterwards I close the VideoRecorder.
My expectation would be a .mp4 Video. Instead I just get the .json files, which are empty.
Has anybody managed to get a Video out of epymarl?
The text was updated successfully, but these errors were encountered: