Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

Embed background video wihtout YouTube and the like.

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
videovideoswebsite_builderwebsite
1 Responder
3611 Vistas
Avatar
Parker D

ello there :)

I need to embed a background video on my website made with Odoo 14. If I upload the video to YouTube, the website visitor is asked whether or not the video from YT shall be loaded. As a background video, the visitor cannot even click that box. 

Naturally I've uploaded the video to my own server but i cannot get Odoo to accept that. Only YouTube, Dailymotion, Vimeo and Youku are accepted. Why not any other source?

How can I simply use the HTML video tag?

I am thankful for any hint.

0
Avatar
Descartar
HILBERT MAXWELL LLC

I have same problem!

Avatar
J.A. Daniel Göppner
Mejor respuesta

Hi Parker

try this approach, maybe it works:

Since you’ve already uploaded the video to your server, note the file path (e.g., /path/to/your/video.mp4). 

To use the HTML <video> tag, you'll need to edit the page's HTML directly. Here’s how to embed it as a background video:

  1. Navigate to the page where you want the background video.
  2. Switch to Edit mode, then add a new HTML block or open an existing HTML block if you already have one.
  3. Insert the following code to embed the video as a background:
<style>
    .background-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        overflow: hidden;
    }
</style>
<video class="background-video" autoplay loop muted playsinline>
    <source src="/path/to/your/video.mp4" type="video/mp4">
    Your browser does not support the video tag.
</video>

Replace "/path/to/your/video.mp4" with the actual path of your video file.


Explanation of the Code
  • autoplay: Starts the video automatically when the page loads.
  • loop: Replays the video in a loop.
  • muted: Ensures no sound plays by default, especially important for background videos.
  • playsinline: Allows the video to play inline on mobile devices.
  • CSS Styling:
    • .background-video CSS class ensures the video covers the entire page.
    • object-fit: cover; keeps the video properly scaled without stretching.

Fallback Image: Add a fallback background image for browsers or devices that don’t support the video tag:

<div style="background: url('/path/to/fallback-image.jpg') no-repeat center center; background-size: cover;">
    <video class="background-video" autoplay loop muted playsinline>
        <source src="/path/to/your/video.mp4" type="video/mp4">
    </video>
</div>


Let me know if that works for you


regards

Daniel

1
Avatar
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
How do i re-run the website builder to include the demo theme? Resuelto
website_builder website
Avatar
Avatar
Avatar
2
sept 25
4390
Adding an HTML element to existing website template
website_builder website
Avatar
Avatar
1
jul 25
1818
How to add lottie animation to odoo site
website_builder website
Avatar
Avatar
Avatar
2
jun 25
3306
Website - how to ask for email before allowing download of a pdf Resuelto
website_builder website
Avatar
Avatar
Avatar
3
abr 25
3261
Calculator on website
website_builder website
Avatar
Avatar
1
abr 25
4121
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now