From 26c9828e69de798f3ce87e059b334223b9f8a445 Mon Sep 17 00:00:00 2001 From: Hayk Martiros Date: Tue, 13 Dec 2022 02:55:40 +0000 Subject: [PATCH] readme tweak --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7bf96ae..815ebd3 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,9 @@ Python backend for the Riffusion app that does the model inference and audio pro * a diffusers pipeline that performs prompt interpolation combined with image conditioning * a module for (approximately) converting between spectrograms and waveforms * a flask server to provide model inference via API to the next.js app - + The web app lives at https://github.com/hmartiro/riffusion-app +For details read https://www.riffusion.com/about ## Install Tested with Python 3.9 and diffusers 0.9.0 @@ -51,7 +52,7 @@ Example input (see [InferenceInput](https://github.com/hmartiro/riffusion-infere Example output (see [InferenceOutput](https://github.com/hmartiro/riffusion-inference/blob/main/riffusion/datatypes.py#L54) for the API): ``` { - image: "< base64 encoded PNG >", + image: "< base64 encoded JPEG image >", audio: "< base64 encoded MP3 clip >",, } ```