diff --git a/README.md b/README.md new file mode 100644 index 0000000..211289e --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# Tavern Talk + +Install dependencies with `poetry install`. + +Create transcript `whisper AUDIO_FILE --language de --model large`. + +Update paths in `playback.py` and execute script to search and playback phrases. diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..5234cfd --- /dev/null +++ b/poetry.lock @@ -0,0 +1,17 @@ +# This file is automatically @generated by Poetry 1.8.4 and should not be changed by hand. + +[[package]] +name = "pydub" +version = "0.25.1" +description = "Manipulate audio with an simple and easy high level interface" +optional = false +python-versions = "*" +files = [ + {file = "pydub-0.25.1-py2.py3-none-any.whl", hash = "sha256:65617e33033874b59d87db603aa1ed450633288aefead953b30bded59cb599a6"}, + {file = "pydub-0.25.1.tar.gz", hash = "sha256:980a33ce9949cab2a569606b65674d748ecbca4f0796887fd6f46173a7b0d30f"}, +] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "2f03b13bb7a06894989a6922ca38de51da6367ba86937fefd0da29970805d73d" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..83400d9 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[tool.poetry] +name = "tavern-talk" +description = "" +authors = ["Maximilian Giller "] +readme = "README.md" +packages = [{include = "tavern_talk", from = ""}] +package-mode = false + +[tool.poetry.dependencies] +python = "^3.10" +pydub = "^0.25.1" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"