{"id":23140901,"url":"https://github.com/mtwn105/audio-intel","last_synced_at":"2025-04-04T11:18:45.261Z","repository":{"id":263541888,"uuid":"889883086","full_name":"mtwn105/audio-intel","owner":"mtwn105","description":"AudioIntel - Audio/Video Intelligence, Transcripts, Summary, and much more ","archived":false,"fork":false,"pushed_at":"2024-11-24T17:47:35.000Z","size":676,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-02T05:11:47.656Z","etag":null,"topics":["ai","assemblyai","audio","audio-processing","diarization","lemur","sonet","speaker-diarization","speaker-recognition","speech-recognition","speech-to-text","transcript"],"latest_commit_sha":null,"homepage":"https://audiointel.amitwani.dev","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mtwn105.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-11-17T13:43:13.000Z","updated_at":"2024-11-24T17:47:39.000Z","dependencies_parsed_at":"2024-12-17T14:12:00.983Z","dependency_job_id":null,"html_url":"https://github.com/mtwn105/audio-intel","commit_stats":null,"previous_names":["mtwn105/audio-intel"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtwn105%2Faudio-intel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtwn105%2Faudio-intel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtwn105%2Faudio-intel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtwn105%2Faudio-intel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mtwn105","download_url":"https://codeload.github.com/mtwn105/audio-intel/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247166171,"owners_count":20894654,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["ai","assemblyai","audio","audio-processing","diarization","lemur","sonet","speaker-diarization","speaker-recognition","speech-recognition","speech-to-text","transcript"],"created_at":"2024-12-17T14:11:57.722Z","updated_at":"2025-04-04T11:18:45.246Z","avatar_url":"https://github.com/mtwn105.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🎙️ AudioIntel\n\nTransform audio into actionable intelligence with our powerful AI platform. AudioIntel helps you extract valuable insights from audio content through transcription, analysis, and AI-powered features.\n\n## [Live Demo](https://audiointel.amitwani.dev)\n\n## ✨ Features\n\n- 🎵 **Multiple Input Methods**\n\n  - Upload audio files (MP3, WAV)\n  - Record directly in browser\n  - Analyze YouTube videos\n\n- 🤖 **AI-Powered Analysis**\n\n  - Smart summaries and key takeaways\n  - Sentiment analysis\n  - Speaker identification\n  - Actionable insights generation\n\n- 📝 **Content Generation**\n\n  - Automatic blog post creation\n  - Interactive chat with transcripts\n  - Key sections identification\n\n- 🔍 **Advanced Features**\n  - Timeline view with precise timestamps\n  - Multi-speaker detection\n  - Searchable transcripts\n  - Real-time sentiment tracking\n\n## 🚀 Getting Started\n\n### Prerequisites\n\n- Node.js 18+\n- npm or yarn\n- AssemblyAI API key\n\n### Installation\n\n1. Clone the repository\n\n```\ngit clone https://github.com/yourusername/audio-intel.git\ncd audio-intel\n```\n\n2. Install dependencies\n\n```bash\nnpm install\n# or\nyarn install\n```\n\n3. Set up environment variables\n\n```bash\ncp .env.example .env\n```\n\nRequired environment variables:\n\n```\nASSEMBLYAI_API_KEY=your_api_key\nNEXT_PUBLIC_APP_URL=http://localhost:3000\nUPLOADTHING_TOKEN=your_uploadthing_token\nGOOGLE_GENERATIVE_AI_API_KEY=your_google_generative_ai_api_key\nGOOGLE_TRANSLATE_API_KEY=your_google_translate_api_key\nBETTER_AUTH_SECRET=your_better_auth_secret\nBETTER_AUTH_BASE_URL=http://localhost:3000\nDATABASE_URL=your_database_url\n```\n\n4. Run the development server\n\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) to see the application.\n\n## 🛠️ Tech Stack\n\n- **Framework**: [Next.js 14](https://nextjs.org/) with App Router\n- **Language**: [TypeScript](https://www.typescriptlang.org/)\n- **Database**: [Neon](https://neon.tech/)\n- **Styling**: [Tailwind CSS](https://tailwindcss.com/)\n- **UI Components**: [shadcn/ui](https://ui.shadcn.com/)\n- **Audio Processing**: [AssemblyAI](https://www.assemblyai.com/)\n- **File Upload**: [Uploadthing](https://uploadthing.com/)\n- **Analytics**: [OpenPanel](https://openpanel.dev/)\n\n## 📁 Project Structure\n\n```\nsrc/\n├── app/                    # Next.js app router pages\n│   ├── actions/           # Server actions\n│   ├── api/               # API routes\n│   └── intels/           # Intel pages\n├── components/            # React components\n├── lib/                   # Utility functions\n├── hooks/                # Custom React hooks\n├── public/               # Public assets\n└── types/                # TypeScript types\n\n```\n\n## 🔑 Key Features Implementation\n\n### Audio Processing\n\n- Uses AssemblyAI for advanced audio transcription and analysis\n- Supports multiple audio formats and YouTube URLs\n- Real-time processing status updates\n\n### Transcript Analysis\n\n- Speaker diarization\n- Sentiment analysis\n- Key points extraction\n- Blog post generation\n\n### Interactive Features\n\n- Real-time chat with transcript context\n- Searchable transcript interface\n- Timeline-based navigation\n\n## 🤝 Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the project\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 👨‍💻 Author\n\nMade with ❤️ by [Amit Wani](https://x.com/mtwn105)\n\n## 🙏 Acknowledgments\n\n- [AssemblyAI](https://www.assemblyai.com/) for their powerful audio intelligence API\n- [shadcn/ui](https://ui.shadcn.com/) for the beautiful UI components\n- The open-source community for their amazing tools and libraries\n\n## 📱 Screenshots\n\n### Multiple Sources - Audio file, Record file \u0026 YouTube\n![audioFile](https://github.com/user-attachments/assets/344fa7e9-e8e6-4e25-a2e7-11c679fec424)\n![recordAudio](https://github.com/user-attachments/assets/e0eece14-0d9c-4d1b-aa99-319c1f2a42e7)\n![youtube](https://github.com/user-attachments/assets/a7880a4e-0921-4c8b-ab9d-929ac88eaac1)\n\n### Overview\n![overview](https://github.com/user-attachments/assets/edc25e89-1ce0-4bb9-8da6-ac459efa966e)\n\n### Summary\n\n![summary](https://github.com/user-attachments/assets/1cccdce4-dd43-4211-b999-fe5be8e6144e)\n\n### Transcript\n![transcript](https://github.com/user-attachments/assets/fc3818e5-3711-490c-828a-1fac855523f9)\n\n### Chat\n![chat](https://github.com/user-attachments/assets/01a1c14c-9f54-4320-bd8b-3d2e59d43c5a)\n\n### Blog\n![blog](https://github.com/user-attachments/assets/59fc4eee-7396-41b1-8c9d-12d1f1d9944d)\n\n### History\n![history](https://github.com/user-attachments/assets/4f512d1a-39f1-41c5-911f-8b6ee0ff1432)\n\n\n## 🔗 Links\n\n- [Live Demo](https://audiointel.amitwani.dev)\n- [Twitter](https://twitter.com/mtwn105)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmtwn105%2Faudio-intel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmtwn105%2Faudio-intel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmtwn105%2Faudio-intel/lists"}