add convert scan output
This commit is contained in:
parent
f3ac6cd344
commit
2ed003a11b
@ -1,6 +1,8 @@
|
|||||||
import typer
|
import typer
|
||||||
from rich import print
|
from rich import print
|
||||||
from utils.directory import is_mounted_directory
|
from utils.directory import is_mounted_directory, recursive_scan
|
||||||
|
import time
|
||||||
|
import os
|
||||||
|
|
||||||
app = typer.Typer()
|
app = typer.Typer()
|
||||||
|
|
||||||
@ -14,6 +16,16 @@ def scan(directory: str):
|
|||||||
if is_mounted_directory(directory):
|
if is_mounted_directory(directory):
|
||||||
print("Directory is detected as mounted. To improve file I/O performance, when performing conversions the mkv file will be copied locally during video encoding.")
|
print("Directory is detected as mounted. To improve file I/O performance, when performing conversions the mkv file will be copied locally during video encoding.")
|
||||||
|
|
||||||
|
time_start = time.time()
|
||||||
|
matches = recursive_scan(directory)
|
||||||
|
duration = time.time() - time_start
|
||||||
|
|
||||||
|
[print(os.path.basename(match)) for match in matches]
|
||||||
|
print("\n\n")
|
||||||
|
print("Found", len(matches), "files in", round(duration, 2), "seconds.")
|
||||||
|
print("Use the 'convert' command to convert these files.")
|
||||||
|
|
||||||
|
|
||||||
@app.command()
|
@app.command()
|
||||||
def convert(directory: str):
|
def convert(directory: str):
|
||||||
"""
|
"""
|
||||||
|
@ -6,3 +6,16 @@ def is_mounted_directory(path: str) -> bool:
|
|||||||
Check if a directory is a mounted directory.
|
Check if a directory is a mounted directory.
|
||||||
"""
|
"""
|
||||||
return os.path.ismount(path)
|
return os.path.ismount(path)
|
||||||
|
|
||||||
|
def recursive_scan(path: str):
|
||||||
|
"""
|
||||||
|
Recursively scan a directory for mkv files.
|
||||||
|
"""
|
||||||
|
inputs = []
|
||||||
|
|
||||||
|
for root, _, files in os.walk(path):
|
||||||
|
for file in files:
|
||||||
|
if file.endswith('.mkv'):
|
||||||
|
inputs.append(os.path.join(root, file))
|
||||||
|
|
||||||
|
return inputs
|
Loading…
x
Reference in New Issue
Block a user