b\site-packages\bvh.py in frame_joint_channel(self, frame_index, joint, channel, value)
148 if channel_index == -1 and value is not None:
149 return value
--> 150 return float(self.frames[frame_index][joint_index + channel_index])
151
152 def frame_joint_channels(self, frame_index, joint, channels, value=None):
When I convert the bvh file in the readme http://mocap.cs.sfu.ca/nusmocap/0005_Walking001.bvh, there is an error raises:
b\site-packages\bvh.py in frame_joint_channel(self, frame_index, joint, channel, value) 148 if channel_index == -1 and value is not None: 149 return value --> 150 return float(self.frames[frame_index][joint_index + channel_index]) 151 152 def frame_joint_channels(self, frame_index, joint, channels, value=None):
IndexError: list index out of range
how could I fix this?