Skip to content

Commit

Permalink
VFRSplice: fix error with combination of clips with same fps
Browse files Browse the repository at this point in the history
  • Loading branch information
breakertt committed Jul 19, 2019
1 parent 413e23f commit faceef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mvsfunc.py
Expand Up @@ -1157,8 +1157,8 @@ def frac2str(num, den, precision=6):
tc_list[index - 1] = (tc_list[index - 1][0], cur_frame + clip.num_frames - 1, clip.fps_num, clip.fps_den)
else:
tc_list.append((cur_frame, cur_frame + clip.num_frames - 1, clip.fps_num, clip.fps_den))
index += 1
cur_frame += clip.num_frames
index += 1

# Write to timecode file
ofile = open(tcfile, 'w')
Expand Down

0 comments on commit faceef4

Please sign in to comment.