Of course Wanda has her own personal anthem, donโt you?
The original version was generated on April 4, 2024 using a free account, courtesey of the LLMs at Suno AI music generation service. A pretty catchy pop(corn) ditty.
The original prompt:
An upbeat pop tune from Wanda, a singing toy walleye. She is helpful, friendly, and loves to have fun and adventures.There is also an extended dance version, created by "finishing" the original in Suno.
Lyrics:
Hey there, it's Wanda, your singing toy friend Always ready for a fun adventure, no end With a smile on my face, and a song in my heart I'll be there for you, ready to play my part [Verse 2] We'll learn and explore, in a world of pure joy Every day is a new chance, a chance to deploy Our imaginations, to places unknown Together we'll make memories, all on our own [Chorus] So come on, let's dance and sing along Wanda's here to make your spirits strong With laughter and fun, we'll never tire Come join me on this magical journey, let's go higher! [Outro] So come on with Wanda, we'll dance and we'll sing We'll explore the ocean, get into everything We'll have laughs, we'll have fun, and we'll never tire Come join me on this magical journey, let's go higher!
Before diving into the code, please see About This Code.
The app Wanda uses to play her anthem. Pretty simple. Yes, it could have been a shell script.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include <fcntl.h>
#include <time.h>
#include <sys/time.h>
#include <signal.h>
#define APP_NAME "anthem-wanda"
#include "wanda.h"
#include "util-wanda.c"
/*
anthem-wanda
Play Wanda's own personal AI-generated anthem, "Wanda's Advetures."
That's it.
A very stripped-down version of shuffle-wanda.
*/
#define WANDAS_ADVENTURES "/home/pipipi/billy-bin/Wandas-Adventures/Wandas-Adventures.mp3"
void playTheSong(char *songFileName) {
char command[8192];
pauseWhisper();
sprintf(command, "%s \"%s\"", MP3_APP, songFileName);
doTheSystem(command);
resumeWhisper();
}
int main(int argc, char *argv[]) {
static char songFileName[1024];
sayTheWords("Now playing Wanda's Adventures! My own personal anthem!");
sayTheWords("Made with Suno, an eigh eye like me.");
playTheSong(WANDAS_ADVENTURES);
sayTheWords("I love that song so much! It is my favorite tune!");
exit(0);
}