8 lines
167 B
Python
8 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)
|