mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-24 18:18:06 +00:00
138 lines
4.3 KiB
Python
138 lines
4.3 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
|
|
from psutil import virtual_memory
|
|
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
|
|
Have default params
|
|
"""
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('--encoding_params', type=str,
|
|
default=' aomenc -q --passes=1 --tile-columns=2 --tile-rows=2 --cpu-used=3 --end-usage=q --cq-level=25 --aq-mode=1 -o',
|
|
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 encodes running at a time')
|
|
return parser.parse_args()
|
|
|
|
|
|
def determine_resources():
|
|
cpu = os.cpu_count()
|
|
ram = round(virtual_memory().total / 2**30)
|
|
return ceil(min(cpu, ram/2))
|
|
|
|
|
|
def extract_audio(input_vid):
|
|
"""
|
|
Extracting audio from video file
|
|
Encoding audio to opus.
|
|
Posible to -acodec copy to .mkv container without reencoding
|
|
"""
|
|
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 --threshold 50 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)} -pix_fmt yuv420p -f yuv4mpegpipe - | {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__':
|
|
|
|
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)} seconds')
|
|
|
|
# Delete temp folders
|
|
shutil.rmtree(join(os.getcwd(), "temp"))
|