7 lines
167 B
Python
7 lines
167 B
Python
from svd import convert_avi_to_npy
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# Convert from avi to npy
|
|
filename: str = "example_data_crop"
|
|
convert_avi_to_npy(filename)
|