13 lines
337 B
Python

from Week1.Week1 import Week1
import sys
import os
# Add bin directory to path for ffmpeg
bin_path = os.path.join(os.path.dirname(__file__), 'bin')
if bin_path not in sys.path:
sys.path.insert(0, bin_path)
if __name__ == "__main__":
course = Week1()
course.compress("./data/kodim19.png")
course.render("./data/kodim19")