ffmpeg-encoding-benchmark/encode_all.py
RealStickman 5a9f765281
Some checks failed
ci/woodpecker/push/linting Pipeline failed
Find all video files and encode them
2022-11-10 14:17:32 +01:00

19 lines
438 B
Python
Executable File

#!/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)