Outil pour ajouter des captions sur des reels Instagram
Find a file
2024-11-03 23:12:19 -05:00
.gitignore Ajout d'un .gitignore 2024-11-03 23:11:45 -05:00
app.py Changements de paramètres pour la performance 2024-11-03 23:12:05 -05:00
build-local.sh Ajout Docker 2024-10-14 13:17:17 -04:00
capture.png Ajout d'une capture d'écran 2024-10-14 13:57:17 -04:00
docker-run.sh Ajout Docker 2024-10-14 13:17:17 -04:00
Dockerfile Ajout Docker 2024-10-14 13:17:17 -04:00
exemple.png Ajout d'un exemple 2024-10-14 14:01:37 -04:00
LICENSE Ajustement README et licence 2024-10-14 13:45:29 -04:00
README.fr.md Mise à jour prérequis et workflow dans le README 2024-10-15 11:53:50 -04:00
README.md Mise à jour prérequis et workflow dans le README 2024-10-15 11:53:50 -04:00
requirements.txt version initiale. fonctionnelle 2024-10-14 01:30:28 -04:00
run_app.sh Script pour exécuter localement 2024-11-03 23:12:19 -05:00

Reel Caption Maker

Reel Caption Maker is a tool for adding captions to Instagram reels. This guide will help you set up and run the application, even if you're not a developer.

capture.png

Example

exemple.png

Prerequisites

Before you begin, make sure you have the following installed on your computer:

  1. Git: Download from git-scm.com
  2. Either Python (more performant) or Docker (easier to install, but heavier)
  1. Have at least 8 GB RAM, because the model needs 3.

Installation Steps

  1. Open your computer's terminal or command prompt.

  2. Clone the repository:

git clone https://git.jevalide.ca/partage/reel-caption-maker.git
cd reel-caption-maker

Option 1: Using Python locally (faster, but harder to setup)

  1. Create a virtual environment:
  • On Windows:
    python -m venv venv
    venv\Scripts\activate
    
  • On macOS and Linux:
    python3 -m venv venv
    source venv/bin/activate
    
  1. Install the required packages:
pip install -r requirements.txt

Running the Application

  1. Make sure you're in the project directory and your virtual environment is activated.

  2. Start the Streamlit app:

streamlit run app.py
  1. Your default web browser should open automatically. If it doesn't, copy the URL shown in the terminal (usually http://localhost:8501) and paste it into your browser.

Option 2: Using Docker (easier, but takes more resources)

To run the Reel Caption Maker using Docker, follow these steps:

  1. Ensure you have Docker installed on your system.

  2. If not, you can download and install it from Docker's official website.

  3. Build the Docker image:

    docker build -t reel-caption-maker .
    
  4. Run the Docker container:

    docker run -p 8501:8501 -v whisper_model:/root/.cache/huggingface reel-caption-maker
    

    This command does the following:

    • Maps port 8501 from the container to port 8501 on your host machine.
    • Creates a volume named whisper_model to persist the Whisper model data.
  5. Open your web browser and navigate to http://localhost:8501 to use the Reel Caption Maker.

    • Note: The first time you run the container, it may take a few minutes to download the Whisper model. Subsequent runs will be faster as the model will be cached in the Docker volume.
    • To stop the container, use Ctrl+C in the terminal where it's running.
    • For convenience, you can use the provided docker-run.sh script to start the container:
    chmod +x docker-run.sh
    ./docker-run.sh
    

Using Reel Caption Maker

  1. Click "Browse files" to upload your video.
  2. Select the video language (French or English).
  3. Click "Generate Captions" to transcribe the audio.
  4. Edit the generated captions if needed.
  5. Click "Burn Captions and Download" to add the captions to your video and download it.

Troubleshooting

  • If you encounter any errors, make sure you've followed all the steps correctly.
  • Ensure that your virtual environment is activated when running the application.
  • If you're still having issues, try closing the terminal, reopening it, and starting from step 3 of the Installation Steps.

Closing the Application

To stop the application, press Ctrl+C in the terminal where the app is running.

Remember to deactivate the virtual environment when you're done:

deactivate

Enjoy using Reel Caption Maker!