{"id":20424076,"url":"https://github.com/spm999/audio-transcriber","last_synced_at":"2026-04-14T04:31:16.611Z","repository":{"id":246092381,"uuid":"820060403","full_name":"spm999/Audio-Transcriber","owner":"spm999","description":"Audio transcriber using deepgram. It allows users to record audio, upload it, and retrieve transcriptions for the recordings. It is built using React for the frontend and Node.js/Express for the backend, with MongoDB for storage.","archived":false,"fork":false,"pushed_at":"2024-06-25T19:16:42.000Z","size":128,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-05T04:42:50.795Z","etag":null,"topics":["api","audiototext","cloudinary","component","cors","deepgram","mern-stack","mongoose","nodejs","react","transcription","vite"],"latest_commit_sha":null,"homepage":"https://audio-transcriber-fawn.vercel.app","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/spm999.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-25T18:05:48.000Z","updated_at":"2024-07-14T16:23:58.000Z","dependencies_parsed_at":"2024-06-25T20:41:03.144Z","dependency_job_id":null,"html_url":"https://github.com/spm999/Audio-Transcriber","commit_stats":null,"previous_names":["spm999/audio-transcriber"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/spm999/Audio-Transcriber","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spm999%2FAudio-Transcriber","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spm999%2FAudio-Transcriber/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spm999%2FAudio-Transcriber/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spm999%2FAudio-Transcriber/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/spm999","download_url":"https://codeload.github.com/spm999/Audio-Transcriber/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spm999%2FAudio-Transcriber/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31782736,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","audiototext","cloudinary","component","cors","deepgram","mern-stack","mongoose","nodejs","react","transcription","vite"],"created_at":"2024-11-15T07:08:36.043Z","updated_at":"2026-04-14T04:31:16.595Z","avatar_url":"https://github.com/spm999.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Audio Recorder and Transcription App\n\nThis is a full-stack application that allows users to record audio, upload it, and retrieve transcriptions for the recordings. It is built using React for the frontend and Node.js/Express for the backend, with MongoDB for storage.\n\n## Features\n\n* Record audio directly from the browser.\n* Upload audio files to the server.\n* Fetch a list of recorded audio files.\n* Retrieve and display transcriptions of recorded audio.\n* Delete audio recordings.\n\n## Installation\n\n### Prerequisites\n\n* Node.js (v12 or later)\n* MongoDB\n\n### Backend Setup\n\n1. Clone the repository:\n\n```\n  git clone https://github.com/spm999/Audio-Transcriber.git\n  cd server\n\n```\n\n2. Install backend dependencies:\n\n```\n  npm install\n\n```\n\n3. Create a `.env` file in the `backend` directory with the following content:\n\n   ```\n   CLOUDINARY_CLOUD_NAME=\n   CLOUDINARY_API_KEY=\n   CLOUDINARY_API_SECRET=\n   DEEPGRAM_API_KEY=\n   MONGODB_URI=\n   ```\n\n   For the above, get cloudinary api and deepgram api by visiting their sites.\n4. Start the backend server:\n\n   ```\n   npm start\n   ```\n\n### Frontend Setup\n\n1. Open a new terminal window and navigate to the `frontend` directory:\n\n```\n   cd app\n```\n\n2. Install frontend dependencies:\n\n   ```\n   npm install\n   ```\n3. Start the frontend development server:\n\n```\n    npm run dev\n```\n\n## Usage\n\n1. **Recording Audio:**\n   * Enter a title for the recording.\n   * Click the \"Start Recording\" button to start recording audio.\n   * Click the \"Stop Recording\" button to stop recording.\n   * Click the \"Upload\" button to upload the recorded audio.\n2. **Viewing Recordings:**\n   * The recordings will be listed in the \"Recordings List\" section.\n   * Click on the \"Get Transcription\" button to retrieve the transcription.\n   * Click on the \"Delete\" button to remove the recording.\n\n## API Endpoints\n\n### Recording Endpoints\n\n* **GET /api/recordings**\n  * Fetch all recordings.\n* **POST /api/recordings/upload**\n  * Upload a new recording. Requires `title` and `audio` in the form-data.\n* **DELETE /api/recordings/:recordingId**\n  * Delete a recording by ID.\n\n### Transcription Endpoints\n\n* **POST /api/transcription/:recordingId**\n  Transcribe an audio\n\n## Project Structure\n\n```\nproject/\n│\n├── backend/                   # Backend server code\n│   │\n│   ├── config/                # Configuration files\n│   │   ├── cloudinary.js      # Configuration for Cloudinary\n│   │   └── config.js          # General project configuration\n│   │\n│   ├── models/                # Database models\n│   │   └── Recording.js       # Model definition for recordings\n│   │\n│   ├── routes/                # Express routes\n│   │   ├── recording.js       # Routes for handling recordings\n│   │   ├── transcription.js   # Routes for transcription handling\n│   │\n│   ├── utils/                 # Utility functions\n│   │   └── db.js              # Database utility functions\n│   │\n│   ├── server.js              # Entry point for backend server\n│   ├── package.json           # Node.js dependencies and scripts\n│   └── package-lock.json      # Lock file for Node.js dependencies\n│\n└── frontend/                  # Frontend application code\n |  │\n |  ├── public/                # Public assets (index.html, images, etc.)\n |  ├── src/                   # Source code directory\n |   │   │\n |   │   ├── components/        # React components\n |   │   │   ├── Record.jsx     # Component for recording audio\n |   │   │   ├── RecordingsList.jsx  # Component for listing recordings\n |   │   │   └── ...            # Other components\n |   │   │\n |   │   ├── App.jsx            # Main component or app entry point\n |   │   ├── index.css          # Global styles\n |   │   └── main.jsx           # Main entry file for ReactDOM\n│\n├── .gitignore\n├── README.md\n└── LICENSE\n```\n\n## Contributing\n\nContributions are welcome!\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE]() file for details.\n\n## Acknowledgements\n\n* Thanks to [Deepgram](https://deepgram.com/) and [Cloudinary](https://cloudinary.com/) for providing resources and tools.\n\n### Backend API: https://audio-transcriber-zkvx.onrender.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspm999%2Faudio-transcriber","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspm999%2Faudio-transcriber","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspm999%2Faudio-transcriber/lists"}