curl -X 'POST' \
'http://localhost:9000/asr?task=transcribe&output=json' \
-H 'accept: application/json' \
-H 'Content-Type: multipart/form-data' \
-F 'audio_file=@signal-2022-12-11-160613.ogg;type=video/ogg'
How can I turn this into a node red flow using the http request node? The file can come from a file node.
Just putting the binary buffer in payload does not solve the issue and in the response message it says that field audio_file is missing.
So I guess I somehow have to tell the http request node that this binary buffer from the file node is "audio_file"
My Use Case: I'm trying to get a transcription for an audio file via a whisper web service: GitHub - ahmetoner/whisper-asr-webservice: OpenAI Whisper ASR Webservice API