-
Notifications
You must be signed in to change notification settings - Fork 2.6k
initial commit of pptx to vo #979
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
Open
yuce-dincer
wants to merge
15
commits into
main
Choose a base branch
from
pptx_to_transcript
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
15 commits
Select commit
Hold shift + click to select a range
554a838
initial commit of pptx to vo
yuce-dincer 7a60d31
upgraded transcript continiuty
yuce-dincer 48c4136
Deleted old notebook
yuce-dincer 8b99e94
unified class update with use narrative flag
yuce-dincer 8fb7fb1
Delete end-to-end-use-cases/powerpoint-to-voiceover-transcript/narrat…
yuce-dincer 0a5fcae
added pptx example
yuce-dincer c088561
changed gitignore and added pptx file
yuce-dincer 09df393
output folder
yuce-dincer 22efac0
displaying example output + slide images
yuce-dincer 4da9023
small readme update
yuce-dincer 2e4e5b7
improved with knowledge grounding
yuce-dincer 72e4d84
updated readme files
yuce-dincer 5bc75ad
updated readme files
yuce-dincer fecc05e
updated readme
yuce-dincer 484ed1b
model update
yuce-dincer 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 hidden or 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 hidden or 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
20 changes: 20 additions & 0 deletions
20
end-to-end-use-cases/powerpoint-to-voiceover-transcript/.env.example
This file contains hidden or 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,20 @@ | ||
# Copy this file to .env and fill in your actual values | ||
# Usage: cp .env.example .env | ||
# ============================================================================= | ||
|
||
# ============================================================================= | ||
# REQUIRED API CONFIGURATION | ||
# ============================================================================= | ||
|
||
# GROQ API Key (REQUIRED) | ||
# This is essential for AI transcript generation | ||
# Required API Keys | ||
GROQ_API_KEY=your_groq_api_key_here | ||
|
||
# ============================================================================= | ||
# SETUP INSTRUCTIONS | ||
# ============================================================================= | ||
|
||
# 1. COPY THIS FILE: | ||
# cp .env.example .env | ||
# 2. Fill in your API key |
191 changes: 191 additions & 0 deletions
191
end-to-end-use-cases/powerpoint-to-voiceover-transcript/.gitignore
This file contains hidden or 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,191 @@ | ||
# Environment variables and secrets | ||
.env | ||
.env.local | ||
.env.development | ||
.env.test | ||
.env.production | ||
*.env | ||
|
||
# PowerPoint files | ||
# *.pptx | ||
# *.ppt | ||
# *.potx | ||
# *.pot | ||
|
||
# Output directories and generated files | ||
slide_images/ | ||
cache/ | ||
logs/ | ||
temp/ | ||
*.log | ||
|
||
# Progress and state files | ||
progress.json | ||
*.progress | ||
|
||
# Python | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
*.so | ||
.Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
share/python-wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
|
||
# PyInstaller | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.nox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*.cover | ||
*.py,cover | ||
.hypothesis/ | ||
.pytest_cache/ | ||
cover/ | ||
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints | ||
pptx_to_vo_workflow.ipynb | ||
|
||
# IPython | ||
profile_default/ | ||
ipython_config.py | ||
|
||
# pyenv | ||
.python-version | ||
|
||
# pipenv | ||
Pipfile.lock | ||
|
||
# poetry | ||
poetry.lock | ||
|
||
# pdm | ||
.pdm.toml | ||
|
||
# PEP 582 | ||
__pypackages__/ | ||
|
||
# Celery stuff | ||
celerybeat-schedule | ||
celerybeat.pid | ||
|
||
# SageMath parsed files | ||
*.sage.py | ||
|
||
# Environments | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
.spyproject | ||
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
# mkdocs documentation | ||
/site | ||
|
||
# mypy | ||
.mypy_cache/ | ||
.dmypy.json | ||
dmypy.json | ||
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# pytype static type analyzer | ||
.pytype/ | ||
|
||
# Cython debug symbols | ||
cython_debug/ | ||
|
||
# IDE and Editor files | ||
.vscode/ | ||
.idea/ | ||
*.swp | ||
*.swo | ||
*~ | ||
|
||
# OS generated files | ||
.DS_Store | ||
.DS_Store? | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
ehthumbs.db | ||
Thumbs.db | ||
|
||
# # Image files (generated from slides) | ||
# *.png | ||
# *.jpg | ||
# *.jpeg | ||
# *.gif | ||
# *.bmp | ||
# *.tiff | ||
# *.svg | ||
|
||
# # PDF files (intermediate conversion files) | ||
|
||
# # CSV and JSON output files | ||
# *.csv | ||
# *.json | ||
|
||
# Backup files | ||
*.bak | ||
*.backup | ||
*.old | ||
|
||
# Temporary files | ||
*.tmp | ||
*.temp | ||
|
||
# LibreOffice lock files | ||
.~lock.* | ||
|
||
# API keys and configuration with sensitive data | ||
api_keys.txt | ||
secrets.yaml | ||
credentials.json | ||
|
||
# Large model files or cached data | ||
*.model | ||
*.bin | ||
*.safetensors | ||
.DS_Store | ||
**/.DS_Store | ||
|
||
*narrative_ |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.