NekoMelody is an audio streaming package designed to stream from YouTube and other sources. Whether you're building a Discord music bot or simply a standalone program. NekoMelody plans to includes search functionality to find songs using keywords, a queue system, and basic music player controls.
> [!CAUTION]
> This package is still in development, expect breaking changes, and may not be stable. Use with caution.
# Example
```ts
import NekoMelody, { Player } from "../src";
import Speaker from "speaker";
import ffmpeg from "fluent-ffmpeg";
import { YtDlpProvider } from "../src/providers";
const main = async () => {
const videoId = "oi8ArKYLwBY";
// Providers
const providers = [new YtDlpProvider()];
const player = NekoMelody.createPlayer(providers);