Audio Generator Field
CommunityGenerate audio file using free AI models directly on Filament Panel
Author:
Michael Douglas
Package health
BetaAutomated checks of this plugin's Composer package
15 checks
- Skipped: GitHub Actions pinned to SHA
- Skipped: GitLab CI includes pinned to SHA
- Passed: Open security advisories
- Passed: Dependabot PR responsiveness — No open Dependabot PRs.
- Skipped: Renovate MR responsiveness
- Failed: Dependabot or Renovate configured — No dependency updater configuration found. View details on Plumb
- Skipped: Dependency update cooldown configured
- Failed: Provides a security policy — View details on Plumb
- Passed: Abandoned or archived — No consulted source marks the package abandoned (packagist, github).
- Failed: Commit and release recency — Inactive: last commit 620 days ago; last release 644 days ago. View details on Plumb
-
Passed:
composer.lock not committed by library
—
composer.lockis absent from the released dist archive. - Passed: Dist archive is lean
-
Failed:
Current Laravel version supported
—
The newest Laravel line the package co-installs with is
11.0, which is end-of-life. View details on Plumb -
Passed:
Current PHP version supported
—
Constraint
^8.1supports current PHP8.5. - Skipped: Current Symfony version supported
filament/
namespace. Review the source and install at your own risk. Found
malware or an unresolved security issue the author won't
address?
Report it
.
Documentation
This custom field allows you to generate audios with different languages and voices using free AI voice generator. It extends the FileUpload field and adds a button to open the audio generator modal where you can generate the audio file.
Before you begin, you must have the Laravel Filament package installed and configured. If you haven't done this yet, you can find the installation instructions here.
#Install the package via composer
Run the following command in your terminal to install the package:
composer require michaeld555/filament-audio-generator-field
You can publish the config file with:
php artisan vendor:publish --tag="filament-audio-generator-field-config"
Optionally, you can publish the translations files:
php artisan vendor:publish --tag="filament-audio-generator-field-translations"
#Usage

Just add new Field or replace your FileUpload field with AudioGenerator field in your form schema definition:
use \Michaeld555\AudioGeneratorField\Forms\Components\AudioGenerator;
[...]
public static function form(Form $form): Form
{
return $form
->schema([
AudioGenerator::make('audio'),
]);
}
You could use all the same options as FileUpload field, for example:
use \Michaeld555\AudioGeneratorField\Forms\Components\AudioGenerator;
AudioGenerator::make('audio')
->disk('private')
->audioGenerator(false) // hide the 'Generate with AI' button,
After you add the field to your form, you should see a button next to the file input. When you click the button, the audio generator modal will open.

#Credits
#License
The MIT License (MIT). Please see License File for more information.
The author
From the same author
Featured Plugins
A selection of plugins curated by the Filament team
Blueprint
Filament Blueprint is a premium Laravel Boost extension that helps AI agents produce accurate, detailed implementation plans and security reports for Filament apps.
Filament
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle
Advanced Tables (formerly Filter Sets)
Supercharge your tables with powerful features like user-customizable views, quick filters, multi-column sorting, advanced table searching, convenient view management, and more. Compatible with Resource Panel Tables, Relation Managers, Table Widgets, and Table Builder!
Kenneth Sese