It is a Deep Learning Model
A full-stack web application for managing, organizing, and showcasing multimedia content such as videos and related metadata. Built using Flask, HTML, CSS, JavaScript, and MySQL, this platform enables content creators to streamline their workflow, track uploads, and offer a polished user experience.
- π User authentication and session management
- π Upload and organize multimedia content
- π§Ύ Metadata tagging and categorization
- π₯ Video preview and playback functionality
- π Admin dashboard to monitor and manage content
- π MySQL database for efficient data storage and queries
- π¨ Responsive front-end with custom UI
- Backend: Flask (Python)
- Database: MySQL
- Python
- Deep learning Algorithms
# Clone the repository
git clone https://github.com/your-username/multimedia-platform.git
cd multimedia-platform
# Create a virtual environment (optional)
python -m venv venv
source venv/bin/activate # On Windows use venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Set up environment variables (e.g., SECRET_KEY, DB credentials)
cp .env.example .env
# Then edit the .env file with your configuration
# Initialize the database
python app.py db init
python app.py db migrate
python app.py db upgrade
# Run the app
python app.py