ffmpeg-encoding-benchmark/encode_all.py

19 lines
438 B
Python
Raw Normal View History

2022-11-10 14:17:32 +01:00
#!/usr/bin/env python3
import encode_single_video
import os
# tuple of video file extensions
videofileextensions = (".webm", ".mp4")
videofiles: list[str] = []
for root, dirs, files in os.walk("source"):
for file in files:
if file.endswith(videofileextensions):
filepath = os.path.join(root, file)
videofiles.append(filepath)
for video in videofiles:
encode_single_video.main(inputfile=video)