Update cli_vae_demo.py

This commit is contained in:
Haiyi 2024-08-13 15:38:39 +08:00 committed by GitHub
parent 3801e3f246
commit d027706052
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -133,5 +133,6 @@ if __name__ == "__main__":
elif args.mode == "both":
assert args.video_path, "Video path must be provided for encoding."
encoded_output = encode_video(args.model_path, args.video_path, dtype, device)
torch.save(encoded_output, args.output_path + "/encoded.pt")
decoded_output = decode_video(args.model_path, args.output_path + "/encoded.pt", dtype, device)
save_video(decoded_output, args.output_path)