A secure, modern and mobile friendly web application for IT MSP (Managed Service Provider) companies to collect audio recordings and text submissions from customers for their managed VoIP solutions. This portal allows customers to easily submit voice recordings, audio files, or text content related to their VoIP service requests.
- Multiple input methods (audio recording, file upload, text)
- Configurable max recording duration with user warnings
- Secure file handling and validation
- Email notifications
- Multi-language support
- User-friendly interface
- Mobile-responsive design
- Configurable security settings
- Rate limiting protection
- CSRF protection
- Comprehensive error handling
- Easy theming or styling to the MSP needs (e.g., logo, colors)
- Installation
- Supported File Types
- Customer Usage
- Contributing
- Multi-language Support
- Changelog
- TODO List
- Author
- License
For detailed installation instructions, please refer to the INSTALL.md guide.
The application supports the following audio file formats:
- WAV - Waveform Audio File Format
- MIME types:
audio/wav
,audio/wave
,audio/x-wav
,audio/x-pn-wav
,audio/vnd.wave
- File header validation (RIFF header)
- MIME types:
- MP3 - MPEG Audio Layer III
- MIME types:
audio/mpeg
,application/octet-stream
- MIME types:
- MP4 - MPEG-4 Audio
- MIME types:
audio/mp4
- MIME types:
- WebM - Web Media Audio
- MIME types:
audio/webm
,video/webm
- MIME types:
- OGG - Ogg Vorbis Audio
- MIME types:
audio/ogg
- File header validation (OggS header)
- MIME types:
- AAC - Advanced Audio Coding
- MIME types:
audio/aac
,audio/aacp
- File header validation (ADTS header)
- MIME types:
- M4A - MPEG-4 Audio (standalone)
- MIME types:
audio/x-m4a
,audio/mp4a-latm
- File header validation (ftyp header)
- MIME types:
- MIME type verification using PHP's
finfo
- File header validation for WAV, OGG, M4A, and AAC files
- File extension fallback validation
- Size limit enforcement
- Secure file naming with random prefixes
- Access the web interface
- Choose input method:
- Record audio directly
- Upload audio file
- Enter text
- Fill in required information:
- Company name
- Contact email
- Contact phone
- Notes
- Select severity level
- Submit the form
We welcome contributions from the community! Feel free to contribute to this project in any of the following ways:
Found a bug or have a suggestion? Please open an issue and let us know! We appreciate detailed bug reports and feature requests.
Have an idea for a new feature or improvement? We'd love to hear about it! Open an issue with the "enhancement" label and describe your suggestion.
Documentation improvements are always welcome! Whether it's fixing typos, clarifying instructions, or adding examples, every bit helps.
See here
Currently supported languages:
- English (🇬🇧)
- Dutch (🇳🇱)
To add a new language:
- Add translations to
assets/js/languages.js
- Add language flag to the language switcher in
index.php
- Add translations for error messages in
process.php
Example language addition:
// In assets/js/languages.js
const translations = {
'fr': {
'submit': 'Soumettre',
'recordAudio': 'Enregistrer l'audio',
// ... more translations
}
};
<!-- In index.php language switcher -->
<button type="button" data-lang="fr">
<img src="https://flagcdn.com/24x18/fr.png" alt="Français" title="Français">
</button>
- Get a demo up and running
- Multiple file/recording upload support
- Additional file format support (OGG, M4A, etc.)
- Contact support integration in error messages
- Clickable mailto link for support contact in disclaimer
- Drag & drop upload
- Configurable primary color accent in the config file
- Remember company name/email from previous submissions
- Play back recordings before submission
- ElevenLabs integration
- Custom style audio playback
- Configurable max recording duration with warnings
- Add file format validation for new formats
- Implement multi-file upload handling (split in multiple e-mails)
- Add MSP support contact configuration in config.php
- File compression
- iOS Chrome/Safari testing
- macOS Chrome/Safari testing
- Edge browser testing
- Cross-browser compatibility verification
Monstertov
MIT License
Copyright (c) Monstertov
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall 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.