The dataset contains metadata of 96K podcasts (after being filtered) and is from Listen Notes.
This demo uses extendable-media-recorder to record WAV audio and hark for silence detection.
├── scripts/
│ ├── data/
│ │ └── podcasts-1000-samples.jsonl
│ └── indexTypesense.ts # script that index data from podcasts-1000-samples.jsonl into typesense server
└── src/
├── components/
│ └── UI components...
├── hooks/
│ └── useSearch.tsx
├── lib/
│ └── typesense.ts # typesense client config
└── App.tsx # podcasts search
To run this project locally, make sure you have docker and nodejs, install dependencies and start the dev server:
Start typesense server
npm run start:typesense # or: docker compose up
Index data into typesense
npm run index:typesense
Start the dev server
npm run dev
Open http://localhost:5173 to see the app ✌️
See .env.example for environment variables.