You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I went through the Video Combine node and in the function, it seems to save the first frame of the video and then sequentially saves the rest of the frames (as far as I understood).
I dont want to save the video, however I want to have the video stored in a variable lets say "final_video" .
As in, you want a variable that contains the binary data of the output video? The best you could do without making heavy handed changes to the VHS code is to save the output to a temporary location (save_output=False), then read the output file into a variable yourself.
Hey,
So I went through the Video Combine node and in the function, it seems to save the first frame of the video and then sequentially saves the rest of the frames (as far as I understood).
I dont want to save the video, however I want to have the video stored in a variable lets say "final_video" .
vhs_videocombine.combine_video( frame_rate=24, loop_count=0, filename_prefix="cosmos_video", format="video/h264-mp4", pix_fmt="yuv420p", crf=19, save_metadata=False, trim_to_audio=False, pingpong=False, save_output=True, images=get_value_at_index(vaedecode_8, 0), unique_id=2751779949773341927, )
How may I do that. Is it possible? Thank you
The text was updated successfully, but these errors were encountered: