A Microsoft Functions app that allows you to upload an image and get back an mp3 audio file of a description of that image. Built to provide this skill to the Misty II robot.
- Upload an image in base64 encoding to the app
- The function will store the image in binary in Azure storgage.
- Azure Computer vision will describe what is seen in the picture.
- Azure Speech service will create a MP3, from the description which is returned as result.
- Make sure the Azure Functions Core tools is installed
npm install -g azure-functions-core-tools
- Clone the project
Git clone https://github.com/ariannasavant/sayWhatYouSee_functionsApp.git
cd sayWhatYouSee_functionsApp
- Install the dependencies with
npm install
- Run the app with
func start
ornpm start