Spaces:
Sleeping
Sleeping
File size: 3,884 Bytes
8b7d435 8c85576 8b7d435 8c85576 8b7d435 f200c22 8c85576 f200c22 8c85576 f200c22 8c85576 f200c22 8c85576 f200c22 8c85576 f200c22 8c85576 f200c22 8c85576 f200c22 8c85576 f200c22 8c85576 f200c22 8c85576 f200c22 8c85576 f200c22 8c85576 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
---
title: AudioABTestPlatform
emoji: π’
colorFrom: gray
colorTo: red
sdk: docker
app_port: 3000
pinned: false
license: cc-by-nc-4.0
short_description: Convenient way of conducting AB test between audio files.
---
<div align="center">
<img src="public/banner.png" alt="Banner" width=20% />
<h1 align="center">Audio A/B Test Platform</h1>
<p align="center">
A modern, simple web application for conducting A/B tests on audio files.
<br />
<a href="https://huggingface.co/spaces/Luka512/AudioABTestPlatform">View Demo</a>
Β·
<a href="https://github.com/TimLukaHorstmann/AudioABTestPlatform/issues">Report Bug</a>
Β·
<a href="https://github.com/TimLukaHorstmann/AudioABTestPlatform/issues">Request Feature</a>
</p>
</div>
---
## About The Project
This tool allows users to compare pairs of audio samples (raw vs. improved versions) and provide ratings that are stored locally for analysis. It's designed for researchers, audio engineers, and developers who need a straightforward way to gather subjective feedback on audio quality.
### Features
- **Password-Protected Access**: Secure your audio files and testing environment.
- **Randomized A/B Testing**: Prevents order bias by randomizing which audio (A or B) is the `raw` or `improved` version.
- **Persistent Local Storage**: Ratings are saved in a local JSON file for easy access and analysis.
- **Admin Interface**: View and export test results as a CSV file.
- **Responsive Design**: Fully functional on both desktop and mobile devices.
- **Easy Deployment**: Deploy to Hugging Face Spaces with a single click.
## Installation
### Prerequisites
- Node.js 18 or higher
- npm (comes with Node.js)
### Setup
1. **Clone the repository**:
```bash
git clone https://github.com/TimLukaHorstmann/AudioABTestPlatform.git
cd AudioABTestPlatform
```
2. **Install dependencies**:
```bash
npm install
```
3. **Configure environment variables**:
Create a `.env.local` file in the project root and add the following:
```env
# User credentials
USER_PASSWORD=your_user_password
ADMIN_PASSWORD=your_admin_password
ADMIN_NAME=your_admin_name
ADMIN_EMAIL=your_admin_email
# Optional: SendGrid for email exports
SENDGRID_API_KEY=your_sendgrid_api_key
# Next.js settings
NEXT_PUBLIC_HOSTING_SERVICE=local
```
## Running Locally
Start the development server:
```bash
npm run dev
```
The application will be available at `http://localhost:9002`.
## Adding Audio Files
### Audio File Structure
1. Place your audio files in the `public/audio/` directory. Create a subfolder for each pair of audio files.
```
public/audio/
βββ VOICE_NAME_1/
β βββ improved.wav
β βββ raw.wav
βββ VOICE_NAME_2/
β βββ improved.wav
β βββ raw.wav
```
2. **Required Files**: Each subfolder must contain exactly two files:
- `improved.wav`: The enhanced or processed audio version.
- `raw.wav`: The original or unprocessed audio version.
3. **File Format**: Audio files must be in `.wav` format.
4. **For Hugging Face Spaces**: Make sure to commit these audio files to your repository so they are available when deployed.
### Testing Locally
Once you've added audio files, restart the development server. The app will automatically detect and load them for the A/B test.
## License
This project is licensed under the **Creative Commons Attribution-NonCommercial 4.0 International License**. See the `LICENSE` file for more details.
## Contact
Project Link: [https://github.com/TimLukaHorstmann/AudioABTestPlatform](https://github.com/TimLukaHorstmann/AudioABTestPlatform)
Once you've added audio files to `public/audio/`, restart your development server and the app should automatically detect and load them for the AB test.
|