-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
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
如何制作长的视频 #30
Comments
If you take a look at infer.py, this line limits the video duration: args.L = min(args.L, int(audio_clip.duration * final_fps), len(os.listdir(inputs_dict['pose']))) There are 336 pose files, which corresponds to 14s of video (336 / fps) if fps = 24 Two resolution methods:
Maybe like this: num_pose_files = len(os.listdir(inputs_dict['pose']) # Total number of pose files (indices 0 to 335) for index in range(start_idx, start_idx + args.L):
|
assets中的pose文件有限,稍后我更新一个外围脚本制作自定义pose |
视频长度设置为2400,不起作用,只录了14S。
语音长度有两分钟。
The text was updated successfully, but these errors were encountered: