|
| 1 | +@elizaos/plugin-udio |
| 2 | + |
| 3 | +A Udio AI music generation plugin for ElizaOS that enables AI-powered music creation and audio manipulation. |
| 4 | + |
| 5 | +OVERVIEW |
| 6 | + |
| 7 | +The Udio plugin integrates Udio AI's powerful music generation capabilities into ElizaOS, providing a seamless way to: |
| 8 | +- Generate music from text prompts with fine-tuned parameters |
| 9 | +- Create custom music with advanced control over style and lyrics |
| 10 | +- Extend existing audio tracks with AI-powered continuation |
| 11 | + |
| 12 | +INSTALLATION |
| 13 | + |
| 14 | + npm install @elizaos/plugin-udio |
| 15 | + |
| 16 | +QUICK START |
| 17 | + |
| 18 | +1. Register the plugin with ElizaOS: |
| 19 | + |
| 20 | + import { udioPlugin } from '@elizaos/plugin-udio'; |
| 21 | + import { Eliza } from '@elizaos/core'; |
| 22 | + |
| 23 | + const eliza = new Eliza(); |
| 24 | + eliza.registerPlugin(udioPlugin); |
| 25 | + |
| 26 | +2. Configure your Udio authentication token in your environment: |
| 27 | + |
| 28 | + UDIO_AUTH_TOKEN=your-udio-auth-token |
| 29 | + |
| 30 | +FEATURES |
| 31 | + |
| 32 | +1. Generate Music (udio.generate) |
| 33 | + Generate music using a text prompt with basic control parameters. This is ideal for quick music generation: |
| 34 | + |
| 35 | + - Simple text-to-music generation |
| 36 | + - Optional seed for reproducible results |
| 37 | + - Support for custom lyrics |
| 38 | + |
| 39 | + await eliza.execute('udio.generate', { |
| 40 | + prompt: "An upbeat electronic dance track with energetic beats", |
| 41 | + seed: 12345, |
| 42 | + customLyrics: "Your custom lyrics here" |
| 43 | + }); |
| 44 | + |
| 45 | +2. Extend Audio (udio.extend) |
| 46 | + Extend existing audio tracks to create longer compositions. Useful for: |
| 47 | + |
| 48 | + - Lengthening existing music pieces |
| 49 | + - Creating variations of existing tracks |
| 50 | + - Seamless continuation of melodies |
| 51 | + |
| 52 | + await eliza.execute('udio.extend', { |
| 53 | + prompt: "Continue with similar style", |
| 54 | + audioConditioningPath: "path/to/audio.mp3", |
| 55 | + audioConditioningSongId: "original-song-id", |
| 56 | + cropStartTime: 30, |
| 57 | + seed: 12345, |
| 58 | + customLyrics: "Additional lyrics for the extension" |
| 59 | + }); |
| 60 | + |
| 61 | +Generation Parameters Explained: |
| 62 | + |
| 63 | +- seed: Controls the randomness of generation |
| 64 | + * Same seed will produce similar results |
| 65 | + * Different seeds create variations |
| 66 | + * Defaults to -1 if not specified |
| 67 | + |
| 68 | +- cropStartTime: Controls where the extension begins (for extend action) |
| 69 | + * Specified in seconds |
| 70 | + * Optional parameter for precise control over continuation point |
| 71 | + |
| 72 | +API REFERENCE |
| 73 | + |
| 74 | +Action Parameters: |
| 75 | + |
| 76 | +1. Generate Music (udio.generate) |
| 77 | + interface UdioGenerateOptions { |
| 78 | + prompt: string; // Required: Text description of desired music |
| 79 | + seed?: number; // Optional: Seed for reproducibility |
| 80 | + customLyrics?: string; // Optional: Custom lyrics |
| 81 | + } |
| 82 | + |
| 83 | +2. Extend Audio (udio.extend) |
| 84 | + interface UdioExtendOptions { |
| 85 | + prompt: string; // Required: Description for continuation |
| 86 | + audioConditioningPath: string; // Required: Path to original audio |
| 87 | + audioConditioningSongId: string; // Required: ID of original song |
| 88 | + cropStartTime?: number; // Optional: Start time in seconds |
| 89 | + seed?: number; // Optional: Seed for reproducibility |
| 90 | + customLyrics?: string; // Optional: Lyrics for extension |
| 91 | + } |
| 92 | + |
| 93 | +Response Types: |
| 94 | + interface UdioSong { |
| 95 | + id: string; // Generated song ID |
| 96 | + title: string; // Song title |
| 97 | + song_path: string; // Path to download the song |
| 98 | + finished: boolean; // Generation status |
| 99 | + } |
| 100 | + |
| 101 | + interface UdioResponse { |
| 102 | + songs: UdioSong[]; // Array of generated songs |
| 103 | + } |
| 104 | + |
| 105 | +ERROR HANDLING |
| 106 | + |
| 107 | +The plugin includes built-in error handling for common scenarios: |
| 108 | + |
| 109 | + try { |
| 110 | + await eliza.execute('udio.generate', params); |
| 111 | + } catch (error) { |
| 112 | + // Handle errors |
| 113 | + console.error(error.message); |
| 114 | + } |
| 115 | + |
| 116 | +EXAMPLES |
| 117 | + |
| 118 | +Creating a Pop Song: |
| 119 | + |
| 120 | + const result = await eliza.execute('udio.generate', { |
| 121 | + prompt: "Create a pop song with vocals, drums, and guitar", |
| 122 | + seed: 12345, |
| 123 | + customLyrics: "Verse 1: Your custom lyrics here..." |
| 124 | + }); |
| 125 | + |
| 126 | +Extending an Existing Track: |
| 127 | + |
| 128 | + const extended = await eliza.execute('udio.extend', { |
| 129 | + prompt: "Continue with the same energy and mood", |
| 130 | + audioConditioningPath: "/path/to/original.mp3", |
| 131 | + audioConditioningSongId: "original-123", |
| 132 | + cropStartTime: 60, // Start continuation from 1 minute mark |
| 133 | + customLyrics: "Verse 2: Continuing the story..." |
| 134 | + }); |
| 135 | + |
| 136 | +LICENSE |
| 137 | + |
| 138 | +MIT |
| 139 | + |
| 140 | +SUPPORT |
| 141 | + |
| 142 | +For issues and feature requests, please open an issue on our GitHub repository. |
| 143 | + |
| 144 | +--- |
| 145 | +Built with ❤️ for ElizaOS |
0 commit comments