Mercurial > codedump
comparison intro.py @ 41:37f231f85a67
add tabs to some c++ files and fix win95kg.cpp
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Wed, 30 Jun 2021 02:38:59 -0400 |
parents | 2aa9614cb39a |
children |
comparison
equal
deleted
inserted
replaced
40:2aa9614cb39a | 41:37f231f85a67 |
---|---|
5 for files in os.walk("./"): | 5 for files in os.walk("./"): |
6 for file in files: | 6 for file in files: |
7 ext = os.path.splitext(file)[-1].lower() | 7 ext = os.path.splitext(file)[-1].lower() |
8 if ext == ".mkv": | 8 if ext == ".mkv": |
9 stream = ffmpeg.input(file) | 9 stream = ffmpeg.input(file) |
10 os.system( | 10 os.system(f'ffmpeg -i "{file}" -t 30 -pix_fmt yuv420p "Clips\\intro_{amt}.mp4"') |
11 f'ffmpeg -i "{file}" -t 30 -pix_fmt yuv420p "Clips\intro_{amt}.mp4') | |
12 amt += 1 | 11 amt += 1 |