-
Notifications
You must be signed in to change notification settings - Fork 0
Getting_Started.md
Title: Getting Started
Content:
Welcome to the YouTube Audio Processor project! This guide will help you set up the project on your local machine and get started with processing YouTube audio.
Before you begin, ensure you have the following:
- Python 3.8 or later: You need Python installed on your system.
- Git: For cloning the repository.
- Virtual Environment: Recommended for managing dependencies.
Follow these steps to set up and run the YouTube Audio Processor:
Open a terminal or command prompt and run:
git clone https://github.com/nathanrish/youtube_audio_processor.git
Navigate into the project directory:
cd youtube_audio_processor
Create a virtual environment to isolate project dependencies:
python -m venv venv
Activate the virtual environment:
-
Linux/macOS:
source venv/bin/activate
-
Windows:
venv\Scripts\activate
Install the required Python packages using pip
:
pip install -r requirements.txt
Create a .env
file in the root directory with the following content:
DOWNLOAD_PATH="./downloads"
OUTPUT_DIR="./chunks"
This file specifies where the downloaded audio and processed chunks will be saved.
Execute the main script to start processing:
python main.py
The application will prompt you to enter the YouTube video URL you wish to process. Provide the URL when asked.
Once the application starts, it will:
- Download the audio from the specified YouTube video.
- Process the audio and save it in the directories specified in the
.env
file.
For more details on usage, configuration, and troubleshooting, refer to the following documents:
Feel free to contribute to the project or seek help if needed.
If you encounter issues or have questions, you can:
- Check the Troubleshooting Guide: For common issues and solutions.
- Open an Issue on GitHub: Report issues or ask for help.
We hope you find this project useful and easy to use!