Compare commits
3 Commits
c28027c5ce
...
7f47b65521
Author | SHA1 | Date | |
---|---|---|---|
7f47b65521 | |||
716ef2a009 | |||
c904e90f6d |
15
plex-media-converter/main.py
Normal file
15
plex-media-converter/main.py
Normal file
@ -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()
|
@ -1,2 +1,10 @@
|
|||||||
|
click==8.1.7
|
||||||
ffmpeg-python==0.2.0
|
ffmpeg-python==0.2.0
|
||||||
future==1.0.0
|
future==1.0.0
|
||||||
|
markdown-it-py==3.0.0
|
||||||
|
mdurl==0.1.2
|
||||||
|
Pygments==2.18.0
|
||||||
|
rich==13.7.1
|
||||||
|
shellingham==1.5.4
|
||||||
|
typer==0.12.3
|
||||||
|
typing_extensions==4.12.2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user