rubedo/convert.py
Mike Abbott d3edd36d8e Checking in today's work.
The code is basically functional.  I wouldn't call it robust, but it does return generally correct results.
2023-02-04 21:30:38 -07:00

5 lines
167 B
Python

from glob import glob
import os
from pathlib import Path
for file_name in glob("sample_data/*"):
os.system(f"ffmpeg -i {file_name} gif/{Path(file_name).stem}.gif")