Av1an/main.py

140 lines
4.5 KiB
Python

#!/usr/bin/python3
"""
mkvmerge required (python-pymkv)
ffmpeg required
TODO:
DONE make encoding queue with limiting by workers
DONE make concatenating videos after encoding
DONE make passing your arguments for encoding,
make separate audio and encode it separately,
"""
import os
from os.path import join
import subprocess
import argparse
import time
import shutil
from math import ceil
from multiprocessing import Pool
try:
import scenedetect
except:
print('ERROR: No PyScenedetect installed, try: sudo pip install scenedetect')
def arg_parsing():
"""
Command line parser
"""
parser = argparse.ArgumentParser()
parser.add_argument('--encoding_params', type=str,
default=' -an -c:v libaom-av1 -strict -2 -row-mt 1 -tiles 2x2 -cpu-used 8 -crf 60 ',
help='FFmpeg settings')
parser.add_argument('--input_file', '-i', type=str, default='bruh.mp4', help='input video file')
parser.add_argument('--num_worker', '-t', type=int, default=8, help='number of encode running at a time')
return parser.parse_args()
def determine_resources():
cpu = os.cpu_count()
ram = round((os.sysconf('SC_PAGE_SIZE') * os.sysconf('SC_PHYS_PAGES')) / (1024. ** 3), 1)
return ceil(min(cpu, ram/2))
def extract_audio(input_vid):
"""
Extracting audio from video file
"""
cmd = f'ffmpeg -i {join(os.getcwd(),input_vid)} -vn -acodec libopus {join(os.getcwd(),"temp","audio.opus")}'
subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).wait()
def split_video(input_vid):
cmd2 = f'scenedetect -i {input_vid} --output temp/split detect-content split-video -c'
subprocess.call(cmd2, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
print(f'Video {input_vid} splitted')
def get_video_queue(source_path):
videos = []
for root, dirs, files in os.walk(source_path):
for file in files:
f = os.path.getsize(os.path.join(root, file))
videos.append([file, f])
videos = sorted(videos, key=lambda x: -x[1])
return videos
def encode(commands):
"""
Passing encoding params to ffmpeg for encoding
TODO:
Replace ffmpeg with aomenc because ffmpeg libaom doen't work with parameters properly
"""
cmd = f'ffmpeg {commands}'
subprocess.Popen(cmd, shell=True).wait()
def concat():
"""
Using FFMPEG to concatenate all encoded videos to 1 file.
Reading all files in A-Z order and saving it to concat.txt
"""
with open(f'{os.getcwd()}/temp/concat.txt', 'w') as f:
for root, firs, files in os.walk(join(os.getcwd(), 'temp', 'encode')):
for file in sorted(files):
f.write(f"file '{join(root, file)}'\n")
cmd = f'ffmpeg -f concat -safe 0 -i {join(os.getcwd(), "temp", "concat.txt")} -i {join(os.getcwd(), "temp", "audio.opus")} -c copy output.webm'
subprocess.Popen(cmd, shell=True).wait()
def main(input_video, encoding_params, num_worker):
# Make temporal directories, and remove them if already presented
if os.path.isdir(join(os.getcwd(), "temp")):
shutil.rmtree(join(os.getcwd(), "temp"))
os.makedirs(join(os.getcwd(), 'temp', 'split'))
os.makedirs(join(os.getcwd(), 'temp', 'encode'))
# Extracting audio
extract_audio(input_video)
# Spliting video and sorting big-first
split_video(input_video)
vid_queue = get_video_queue('temp')
files = [i[0] for i in vid_queue[:-1]]
# Making list of commands for encoding
commands = [f'-i {join(os.getcwd(), "temp", "split", file)} {encoding_params} {join(os.getcwd(), "temp", "encode", file)}' for file in files]
# Creating threading pool to encode fixed amount of files at the same time
pool = Pool(num_worker)
pool.map(encode, commands)
# Merging all encoded videos to 1
concat()
if __name__ == '__main__':
# Command line parser
parser = argparse.ArgumentParser()
parser.add_argument('--encoding_params', type=str, default=' -an -c:v libaom-av1 -strict -2 -cpu-used 8 -crf 63', help='FFmpeg settings')
parser.add_argument('--input_file', '-i', type=str, default='bruh.mp4', help='input video file')
parser.add_argument('--num_worker', '-t', type=int, default=determine_resources(), help='number of encode running at a time')
args = arg_parsing()
# Main thread
start = time.time()
main(args.input_file, args.encoding_params, args.num_worker)
print(f'Encoding completed in {round(time.time()-start)}ces')
# Delete temp folders
shutil.rmtree(join(os.getcwd(), "temp"))