fixed yt, ts and save

This commit is contained in:
Jonathan Dunn 2024-03-14 10:43:52 -04:00
parent 3e5423abfe
commit ba163f02b2
8 changed files with 13 additions and 11 deletions

View File

@ -38,8 +38,7 @@ windows:
download instructions https://www.ffmpeg.org/download.html download instructions https://www.ffmpeg.org/download.html
``` ```
````bash
```bash
ts -h ts -h
usage: ts [-h] audio_file usage: ts [-h] audio_file
@ -75,7 +74,8 @@ options:
-t, TAG, --tag TAG add an additional frontmatter tag. Use this argument multiple timesfor multiple tags -t, TAG, --tag TAG add an additional frontmatter tag. Use this argument multiple timesfor multiple tags
-n, --nofabric don't use the fabric tags, only use tags from --tag -n, --nofabric don't use the fabric tags, only use tags from --tag
-s, --silent don't use STDOUT for output, only save to the file -s, --silent don't use STDOUT for output, only save to the file
``` ````
### example ### example
```bash ```bash
@ -89,4 +89,3 @@ tags: fabric-extraction stub-for-name extra-tag
--- ---
test test
``` ```

View File

@ -1,3 +1,3 @@
from .ts import main as main_ts from ..installer.client.cli.ts import main as main_ts
from .yt import main as main_yt from ..installer.client.cli.yt import main as main_yt
from .save import cli as main_save from ..installer.client.cli.save import cli as main_save

View File

@ -1,4 +1,4 @@
from .client.cli import main as cli from .client.cli import main as cli, main_save, main_ts, main_yt
from .server import ( from .server import (
run_api_server, run_api_server,
run_webui_server, run_webui_server,

View File

@ -1 +1,4 @@
from .fabric import main from .fabric import main
from .yt import main as main_yt
from .ts import main as main_ts
from .save import cli as main_save

View File

@ -67,6 +67,6 @@ build-backend = "poetry.core.masonry.api"
fabric = 'installer:cli' fabric = 'installer:cli'
fabric-api = 'installer:run_api_server' fabric-api = 'installer:run_api_server'
fabric-webui = 'installer:run_webui_server' fabric-webui = 'installer:run_webui_server'
ts = 'helper_files:main_ts' ts = 'installer:main_ts'
yt = 'helper_files:main_yt' yt = 'installer:main_yt'
save = 'helper_files:main_save' save = 'installer:main_save'