-
Notifications
You must be signed in to change notification settings - Fork 534
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PhotoBooth] mode with image persistence along side audio file. Also, streaming capabilities, setup script, readme updates, and narrator prompt update #39
Open
rsmets
wants to merge
14
commits into
cbh123:main
Choose a base branch
from
rsmets:imagesave
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
b1f9236
[Setup] script. (#1)
rsmets 4ab05a4
[Narrator] prompt to describe the image like David Attenborough for i…
rsmets 1bb728a
[Narrator] fix
rsmets a4847a8
[Narrator] streaming (#3)
rsmets 0a65b08
[PhotoBooth] mode (#4)
rsmets e074efb
[REAME] updated with photo booth mode information.
rsmets 604c2b5
[dotenv] module added and README updated with information on how to u…
rsmets d3d5405
[Narrator] small refactor for clarity.
rsmets 5cedbec
[Image] file saved along side the corresponding audio file.
rsmets ac703e9
[shutil] used thanks to trunk calling out security implication of the…
rsmets b0770fd
readme
rsmets c3e86d8
readme
rsmets cee2b62
Fix/imagesave (#7)
rsmets d571849
Fix/imagesave (#9)
rsmets File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Required variables: | ||
export OPENAI_API_KEY= | ||
export ELEVENLABS_API_KEY= | ||
export ELEVENLABS_VOICE_ID= | ||
|
||
# Optional variables: | ||
export ELEVENLABS_STREAMING= | ||
export PHOTOBOOTH_MODE= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
/venv | ||
/narration | ||
/frames/* | ||
!/frames/.gitkeep | ||
!/frames/.gitkeep | ||
.trunk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# create a virtual environment | ||
python3 -m pip install virtualenv | ||
python3 -m virtualenv venv | ||
|
||
# source the virtual environment to install dependencies | ||
source venv/bin/activate | ||
|
||
# install the dependencies | ||
pip install -r requirements.txt | ||
|
||
echo -e "\n\n\nSetup complete. Run $(source venv/bin/activate) to activate the virtual environment.\n\nAlso, please ensure your environment variables are set correctly in the .env file." |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo: source is there twice