| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Odoo Apps Dependencies |
•
eLearning (website_slides)
• Website (website) • Discuss (mail) |
| Lines of code | 734 |
| Technical Name |
ainnovatex_slide_minio |
| License | OPL-1 |
| Website | https://www.ainnovatex.com/ |
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Odoo Apps Dependencies |
•
eLearning (website_slides)
• Website (website) • Discuss (mail) |
| Lines of code | 734 |
| Technical Name |
ainnovatex_slide_minio |
| License | OPL-1 |
| Website | https://www.ainnovatex.com/ |
MinIO Storage for Courses
The MinIO Storage for Courses module integrates MinIO as a scalable and secure backend for video storage within your course modules. It enables seamless uploading, management, and delivery of video content, taking full advantage of MinIO's S3-compatible object storage system. This module provides efficient video storage management, reduces database load, and offers better performance for large video files in your eLearning platform.
Key Features
S3-Compatible Storage
Leverage MinIO's powerful S3-compatible object storage for scalable video management.
Easy Video Upload
Simple interface for uploading videos directly to MinIO with file size validation.
HTML5 Video Player
Custom video player with download protection and fullscreen support.
Configurable Settings
Easy configuration of MinIO endpoints, credentials, and storage options.
Benefits
Reduced Database Load
Store large video files externally, keeping your Odoo database lean and fast.
Scalable Storage
MinIO provides unlimited scalability for your growing video content library.
Secure Access
Presigned URLs and access control ensure secure video delivery to authorized users.
Installation & Setup
Quick Start: MinIO with Docker
For development and testing, quickly set up MinIO using Docker:
Single Command Setup:
docker run -p 9000:9000 -p 9001:9001 --name minio \
-e "MINIO_ROOT_USER=minioadmin" \
-e "MINIO_ROOT_PASSWORD=minioadmin" \
-v ~/minio/data:/data \
quay.io/minio/minio server /data --console-address ":9001"
Docker Compose (Recommended):
version: '3.8'
services:
minio:
image: quay.io/minio/minio
container_name: minio
ports:
- "9000:9000"
- "9001:9001"
environment:
MINIO_ROOT_USER: minioadmin
MINIO_ROOT_PASSWORD: minioadmin
volumes:
- ./minio_data:/data
command: server /data --console-address ":9001"
restart: unless-stopped
Then run: docker-compose up -d
MinIO Console: http://localhost:9001
API Endpoint:
localhost:9000Default Credentials:
minioadmin / minioadmin
Module Configuration Steps
-
1. Install Python Dependencies
pip install minio -
2. Install Module
Install the module from Odoo Apps menu -
3. Configure MinIO Settings
Go to Settings > eLearning > MinIO Configuration -
4. Set Connection Details
Endpoint: localhost:9000, Credentials: minioadmin/minioadmin -
5. Configure Storage Options
Set default bucket name and file size limits -
6. Start Using
Create courses and upload videos using MinIO storage
Production Deployment Notes:
- Change default credentials for security
- Use persistent volumes for data storage
- Configure SSL/TLS for secure connections
- Set up proper backup strategies
- Consider MinIO distributed mode for high availability
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module