I want to use the n8n workflow to transcribe the youtube. I have tried to use the provided template
Transcribe YouTube Videos with AI Enhancement via Chat Interface
I have made all the modules, entry point, validation-URL, HTTP Request working. There is a transcription getting into the openAI module. However, the openAI has an error ‘Bad Request - please check my parameters’
I have checked the openAI parameters and I could not spot out any issue. I would be appreciated if anyone can give me the advice on this issue. Thanks.
So I need to extract all the Json items into a text string. But I am new to n8n. Have anyone had the experience to convert the multi-array items aggregating to a text string ?
Hey @Simon_Poon! The “Bad Request” error with OpenAI transcription usually happens because of file format or size issues — OpenAI Whisper only accepts audio files (mp3, wav, etc.) under 25MB, so if you’re sending it a video file directly, it will reject it.
If you’re looking for a simpler approach to YouTube transcription in n8n, I recently published a community node called ReelScribe that handles this. You just paste a YouTube URL and it returns the transcription — no need to extract audio or deal with file format conversion.
Install it by searching “reelscribe” in Community Nodes, or npm install n8n-nodes-reelscribe.
It also has built-in polling, so it waits until the transcription is done before passing the result to the next node. Works with TikTok and Instagram too.