From 7f47b655219b8f0e6190951ca904d2d770bb2ba1 Mon Sep 17 00:00:00 2001 From: Brandon Egger Date: Sat, 8 Jun 2024 21:02:56 -0500 Subject: [PATCH] rename project, format --- main.py | 49 ------------------------------------ plex-media-converter/main.py | 15 +++++++++++ 2 files changed, 15 insertions(+), 49 deletions(-) delete mode 100644 main.py create mode 100644 plex-media-converter/main.py diff --git a/main.py b/main.py deleted file mode 100644 index 6f49dd7..0000000 --- a/main.py +++ /dev/null @@ -1,49 +0,0 @@ -import os -import ffmpeg - -def process_mkv_file(input_file): - output_file = input_file.replace('.mkv', '.mp4') - srt_output_file = input_file.replace('.mkv', '.srt') - - # Get file metadata - probe = ffmpeg.probe(input_file) - video_stream = next((stream for stream in probe['streams'] if stream['codec_type'] == 'video'), None) - subtitle_stream = next((stream for stream in probe['streams'] if stream['codec_type'] == 'subtitle' and 'tags' in stream and stream['tags'].get('language') == 'eng'), None) - - # Check if the video is HDR - is_hdr = 'color_transfer' in video_stream and video_stream['color_transfer'] == 'smpte2084' - - # Base ffmpeg command - ffmpeg_command = ffmpeg.input(input_file) - - # Video stream conversion - video = ffmpeg_command.output(output_file, vcodec='libx265', crf=18, preset='slow') - if is_hdr: - video = video.filter('scale', '1920x1080') - video = video.output(output_file, map='0:v') - - # Include all audio tracks - audio_streams = [stream for stream in probe['streams'] if stream['codec_type'] == 'audio'] - for i, audio_stream in enumerate(audio_streams): - video = video.output(output_file, map=f'0:a:{i}') - - # Remove all subtitle tracks from the video output - video = video.output(output_file, sn=0) - - # Run the ffmpeg command to create the mp4 file - ffmpeg.run(video) - - # Extract English subtitles if available - if subtitle_stream: - ffmpeg.input(input_file).output(srt_output_file, map=f'0:{subtitle_stream["index"]}', f='srt').run() - -def scan_directory(directory): - for root, _, files in os.walk(directory): - for file in files: - if file.endswith('.mkv'): - input_file = os.path.join(root, file) - process_mkv_file(input_file) - -if __name__ == '__main__': - directory = input('Enter the directory to scan: ') - scan_directory(directory) diff --git a/plex-media-converter/main.py b/plex-media-converter/main.py new file mode 100644 index 0000000..24e0f19 --- /dev/null +++ b/plex-media-converter/main.py @@ -0,0 +1,15 @@ +import typer +from rich import print + +app = typer.Typer() + +@app.command() +def scan(directory: str): + print("Scanning directory:", directory) + +@app.command() +def convert(directory: str): + pass + +if __name__ == "__main__": + app()