Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Commit

Permalink
Fix print in fix_metadata() (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasRosenstein authored Dec 21, 2019
1 parent 2566d06 commit 63dd9f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion movrepair.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def get_new_duration(atom):
deltas = calc_item_delta(stsz.table)
repn = guess_sequence_repitition_length(deltas)
print('Extending {} sample size table (table size: {}, guesssed repartition length: {})'
.format(data_format, repn))
.format(data_format, len(stsz.table), repn))
offset = len(deltas) % repn
for i in range(count-len(stsz.table)):
delta = deltas[offset+(i%repn)]
Expand Down

0 comments on commit 63dd9f4

Please sign in to comment.