from odoo import http class WebsiteLanguageController(http.Controller): @http.route('/', auth='public', website=True) def detect_language_and_redirect(self, **kwargs): # Vérifier si l'utilisateur est déjà sur une URL avec une langue current_url = http.request.httprequest.path if current_url.startswith(('/fr', '/en')): return http.request.render('website.homepage') # Remplacez par votre template d'accueil si nécessaire # Détection de la langue préférée à partir du navigateur browser_lang = http.request.httprequest.accept_languages.best_match(['fr', 'en']) # Si aucune langue détectée, utiliser la langue par défaut lang_code = browser_lang if browser_lang in ['fr', 'en'] else 'en' # Définir la langue active dans la session http.request.env['ir.http']._set_lang(lang_code) # Rediriger l'utilisateur vers la page d'accueil dans la langue correspondante return http.request.redirect('/%s' % lang_code)
Se rendre au contenu

Sebastien laroche



sound design & sound editor

 

Réseaux sociaux

Welcome to my portfolio!

Hi! I am Sébastien, a passionate audio professional specialising in editing and sound design for podcasts, video games, and animations. Whether it's creating immersive soundscapes for a game, bringing characters to life with dynamic audio in animations, or perfecting podcast episodes to a high standard, I love transforming ideas into engaging, professional-quality sound.

I am all about collaboration and ensuring that the final result not only meets but exceeds expectations. Good sound is not just heard; it is felt, and I am here to make sure your project resonates with your audience.

Take a look around, and if you like what you hear, let's discuss how I can help bring your vision to life!


​Frequently Asked Questions

​Here are some frequently asked questions.

I specialise in sound design as well as sound editing. In my projects, I am tasked with creating the soundscape and mixing to ensure the final result pleases the clients. I also offer audio cleaning on dialogues in French, English, and Spanish.

I adapt to the specific needs of clients from various sectors, in order to help them develop and succeed in their projects.

Contact our customer support team by sending an email to sebastien-lar@live.fr,or using the live chat on our website. I am available on weekdays from 8 am to 7 pm to answer all your questions.

I am committed to providing effective audio solutions to ensure your satisfaction.

I proceed by project. Each project has a different aim and a different medium (podcast, animation, video game, etc.).

from odoo import http class WebsiteLanguageController(http.Controller): @http.route('/', auth='public', website=True) def detect_language_and_redirect(self, **kwargs): # Vérifier si l'utilisateur est déjà sur une URL avec une langue current_url = http.request.httprequest.path if current_url.startswith(('/fr', '/en')): return http.request.render('website.homepage') # Remplacez par votre template d'accueil si nécessaire # Détection de la langue préférée à partir du navigateur browser_lang = http.request.httprequest.accept_languages.best_match(['fr', 'en']) # Si aucune langue détectée, utiliser la langue par défaut lang_code = browser_lang if browser_lang in ['fr', 'en'] else 'en' # Définir la langue active dans la session http.request.env['ir.http']._set_lang(lang_code) # Rediriger l'utilisateur vers la page d'accueil dans la langue correspondante return http.request.redirect('/%s' % lang_code)