mirror of
https://github.com/Myzel394/time_domain_scrambling.git
synced 2025-06-18 07:25:29 +02:00
fix: Fix length
This commit is contained in:
parent
6758f34e1b
commit
1c058e8f0b
2
main.py
2
main.py
@ -33,7 +33,7 @@ def main() -> None:
|
|||||||
|
|
||||||
|
|
||||||
# Iterate over seconds
|
# Iterate over seconds
|
||||||
for i in range(0, int(metadata.nframes / 2), metadata.framerate):
|
for i in range(0, metadata.nframes, metadata.framerate):
|
||||||
second = frames[i:i + metadata.framerate]
|
second = frames[i:i + metadata.framerate]
|
||||||
|
|
||||||
# Split the second into parts
|
# Split the second into parts
|
||||||
|
Loading…
x
Reference in New Issue
Block a user