This called on the class, so got the `property`, whereas we need to call on the instance. Without this, get `TypeError: expected str, bytes or os.PathLike object, not property`.
···4141 seconds = int(diff % 60)
4242 ffmpeg_cmd = [
4343- "/usr/lib/ffmpeg/7.0/bin/ffmpeg", # hardcode path for exports thumbnail due to missing libwebp support
4444-+ FfmpegConfig.ffmpeg_path, # hardcode path for exports thumbnail due to missing libwebp support
4444++ self.config.ffmpeg.ffmpeg_path, # hardcode path for exports thumbnail due to missing libwebp support
4545 "-hide_banner",
4646 "-loglevel",
4747 "warning",