From de8ead731f3ca6f71e5e18362d9c5acff93adf28 Mon Sep 17 00:00:00 2001 From: RayVentura Date: Fri, 4 Aug 2023 03:42:00 -0400 Subject: [PATCH] adding changelog --- .gitignore | 1 + CHANGES.txt | 6 ++++++ requirements.txt | 2 +- setup.py | 12 +++++++----- 4 files changed, 15 insertions(+), 6 deletions(-) create mode 100644 CHANGES.txt diff --git a/.gitignore b/.gitignore index f8bdbeb..12915f2 100644 --- a/.gitignore +++ b/.gitignore @@ -24,4 +24,5 @@ dist build setup.py test.ipynb +setup .venv/ \ No newline at end of file diff --git a/CHANGES.txt b/CHANGES.txt new file mode 100644 index 0000000..02d1ce3 --- /dev/null +++ b/CHANGES.txt @@ -0,0 +1,6 @@ +# CHANGES + +## Version 0.0.2 +- Implemented the content_translation_engine; a multilingual video dubbing content engine. The source can be found at shortGPT/engine/content_translation_engine.py. +- Implemented the new EdgeTTS voice module; it can be found at shortgpt/audio/edge_voice_module. +- Added documentation which can be found under docs/. \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 52c7e1e..d8ca483 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,7 +10,7 @@ yt-dlp torch torchaudio ### whisper timestamped -git+https://github.com/linto-ai/whisper-timestamped +whisper-timestamped protobuf==3.20.0 pillow==9.0.0 moviepy==1.0.3 diff --git a/setup.py b/setup.py index d613c64..3aef02b 100644 --- a/setup.py +++ b/setup.py @@ -7,11 +7,11 @@ with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh: long_description = "\n" + fh.read() -VERSION = '0.0.1' +VERSION = '0.0.2' DESCRIPTION = 'Automating video and short content creation with AI' LONG_DESCRIPTION = 'A powerful tool for automating content creation. It simplifies video creation, footage sourcing, voiceover synthesis, and editing tasks.' -# Setting up + setup( name="shortgpt", version=VERSION, @@ -31,11 +31,13 @@ 'tinymongo', 'proglog', 'yt-dlp', - 'torch', + 'torch', + 'whisper-timestamped', 'torchaudio', + 'pillow==9.0.0', 'protobuf==3.20.0', - 'langchain', - 'moviepy', + 'edge-tts', + 'moviepy==1.0.3', 'termcolor', 'progress', 'questionary',