Compare commits

...

3 Commits

Author SHA1 Message Date
5a9f765281 Find all video files and encode them
Some checks failed
ci/woodpecker/push/linting Pipeline failed
2022-11-10 14:17:32 +01:00
533f4f01fb Make executable 2022-11-10 14:17:26 +01:00
38192db5ca Ignore pycache 2022-11-10 14:17:16 +01:00
3 changed files with 19 additions and 0 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@ vmaf.json
*.csv *.csv
encodes/ encodes/
*.log *.log
__pycache__

0
chart_bubble.py Normal file → Executable file
View File

18
encode_all.py Executable file
View File

@ -0,0 +1,18 @@
#!/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)