Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aadeshkulkarni/sanchay-ai
Takes your video and generates video title, description, hashtags, transcription, subtitles and more.
https://github.com/aadeshkulkarni/sanchay-ai
generative-ai javascript object-store python rabbitmq whisper
Last synced: 7 days ago
JSON representation
Takes your video and generates video title, description, hashtags, transcription, subtitles and more.
- Host: GitHub
- URL: https://github.com/aadeshkulkarni/sanchay-ai
- Owner: aadeshkulkarni
- Created: 2023-12-13T03:42:06.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-05-16T11:55:17.000Z (6 months ago)
- Last Synced: 2024-10-25T10:43:26.062Z (13 days ago)
- Topics: generative-ai, javascript, object-store, python, rabbitmq, whisper
- Language: Python
- Homepage:
- Size: 37.8 MB
- Stars: 87
- Watchers: 3
- Forks: 17
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sanchay AI (A Generative AI app)
Upload your video and SanchayAI will generate key elements (video transcription, video subtitles, and video chapters) in an organized and easily accessible manner.
### Project Status and Contribution Potential
This project is in its infancy and has just been scaffolded with a new architecture. It's at a crucial stage where contributions can significantly shape its future and scalability. With the right environment and collaborative effort, it has the potential to evolve into something truly remarkable.
### System (In a nutshell)
![System](/docs/system.png)### Requirements:
- MongoDB
- RabbitMQ
- LocalstackThere are 2 apps:
1. web-app
- This is a fullstack NextJS app.
- The project depends on 3 services:
- RabbitMQ
- Localstack
- MongoDB2. worker
- This is a Python based RabbitMQ worker that listens to request from web-app and processes them in the background.
- The project also depends on 3 services:
- RabbitMQ
- Localstack
- MongoDB### Setup
Before setting up the codebase, it's important to setup the services the codebase depends on.
### Setup RabbitMQ locally
- If you have docker installed on your system, you can setup RabbitMQ using the command
- `docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.13-management`
- This will spinup RabbitMQ on localhost:15672 (default username/password = guest/guest)
> OR- If you don't want to setup using docker, you can setup RabbitMQ by following steps [here](https://www.rabbitmq.com/docs/download)
### Setup MongoDB
- Recommended: Create a database cluster on https://cloud.mongodb.com/ for free and use the connection string### Localstack
- Follow the guide mentioned here- https://app.localstack.cloud/getting-started
- Create a new bucket by running the command `aws s3 mb s3://sanchayai --endpoint-url=http://localhost:4566`Once the above services are up, clone the sanchay-ai repository
### Worker setup
- cd into apps/worker folder
- follow readme instructions
- pip install
- python consumer.py### Web-app setup
- cd into apps/web-app folder
- follow readme instructions
- npm install
- npm run devIf all is working well,
- Your Web-app should be listening on `localhost:3000`
- Your Rabbit-MQ should be working on `http://localhost:15672/`
- Your localstack should be working on `http://localhost:4566` (nothing to display on chrome here)You can run the app and upload a test video which is available in the codebase here - ./docs/video.mp4
![Home](/docs/app-1.png)
![Videos](/docs/app-2.png)