From da9328be38ef57d16957d2a317f0f80317950d21 Mon Sep 17 00:00:00 2001 From: fpagny Date: Fri, 14 Nov 2025 17:56:09 +0100 Subject: [PATCH 1/2] feat(genapi): add audio file conversion instructions to faq Added instructions for converting m4a audio files to supported formats using ffmpeg and VLC. --- pages/generative-apis/faq.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pages/generative-apis/faq.mdx b/pages/generative-apis/faq.mdx index 6fa8aee5f0..4ea28273c3 100644 --- a/pages/generative-apis/faq.mdx +++ b/pages/generative-apis/faq.mdx @@ -152,6 +152,15 @@ If you require higher maximum output tokens, you can use [Managed Inference](htt ### Can I use OpenAI libraries and APIs with Scaleway's Generative APIs? Yes, Scaleway's Generative APIs are designed to be compatible with OpenAI libraries and SDKs, including the OpenAI Python client library and LangChain SDKs. This allows for seamless integration with existing workflows. +### How can I convert audio files to a supported format? +For audio transcription, supported formats are: `flac`, `mp3`, `mpeg`, `mpga`, `oga`, `ogg`, `wav`. +For unsupported format such as `m4a`, we recommend to use third party librairies or tools to perform the conversion such as [ffmpeg](https://www.ffmpeg.org/) or [VLC](https://www.videolan.org/vlc/). +For example, you can convert an `m4a` file to `mp3` using `ffmpeg` with: +```bash +ffmpeg -i audio-file.m4a audio-file.mp3 +``` +where `audio-file.m4a` is your original file. + ## Usage and management ### Do model licenses apply when using Generative APIs? From 21d7931aeed1b450f2252ec8a88b37e9a4b05ebe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=A9da?= <87707325+nerda-codes@users.noreply.github.com> Date: Mon, 17 Nov 2025 14:00:38 +0100 Subject: [PATCH 2/2] Update pages/generative-apis/faq.mdx Co-authored-by: Rowena Jones <36301604+RoRoJ@users.noreply.github.com> --- pages/generative-apis/faq.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/generative-apis/faq.mdx b/pages/generative-apis/faq.mdx index 4ea28273c3..1924ba7e2b 100644 --- a/pages/generative-apis/faq.mdx +++ b/pages/generative-apis/faq.mdx @@ -154,7 +154,7 @@ Yes, Scaleway's Generative APIs are designed to be compatible with OpenAI librar ### How can I convert audio files to a supported format? For audio transcription, supported formats are: `flac`, `mp3`, `mpeg`, `mpga`, `oga`, `ogg`, `wav`. -For unsupported format such as `m4a`, we recommend to use third party librairies or tools to perform the conversion such as [ffmpeg](https://www.ffmpeg.org/) or [VLC](https://www.videolan.org/vlc/). +For unsupported formats such as `m4a`, we recommend using third-party libraries or tools to convert them to a supported format, such as [ffmpeg](https://www.ffmpeg.org/) or [VLC](https://www.videolan.org/vlc/). For example, you can convert an `m4a` file to `mp3` using `ffmpeg` with: ```bash ffmpeg -i audio-file.m4a audio-file.mp3