Overtune Logo

Voice Changer Widget Implementation
Documentation

Introduction

The Voice Changer Widget is an easy-to-use, responsive widget that allows users to record and alter their voice. It can be conveniently integrated into your webpage using an `iframe`. This guide will walk you through the process of setting up the widget.

Prerequisites

Implementation

1. Embed the Widget

Embed the Voice Changer Widget into your webpage by adding the following `iframe` code at the location in your HTML where you want the widget to appear

copy/paste icon

<iframe
src="https://overtune-service.com/ai-voice-widget/" allow="microphone" frameborder="0" style="min-width: 300px; min-height: 200px; width: 100%; height: 100%;">
</iframe>

This "iframe"

2. Ensure Microphone Access

Your webpage needs to be served over HTTPS, as modern browsers only enable microphone access over secure connections. Inform your users that they need to grant microphone access for the widget to operate correctly.

3. Responsive Design

The Voice Changer Widget is designed to be responsive and will adapt its size to the container element that the `iframe` is placed within. It will respect the width and height of its container, scaling within the given space while maintaining the minimum width and height settings (`min-width: 300px; min-height: 200px;`).

This responsive behavior allows the widget to fit seamlessly into different layouts and screen sizes, improving the overall user experience. You can adjust the container size to achieve the desired appearance on your webpage.

Conclusion

With these steps, you should be able to integrate the Voice Changer Widget into your webpage seamlessly. The widget is designed to be responsive and user-friendly, enhancing the interactive features of your webpage. Always remember to inform your users about allowing microphone access to ensure the widget functions properly. Enjoy exploring this addition to your webpage!