We have recorded audio in browser using Angular 9 app and pass it to nodejs API with expressjs.
app.use(bodyParser.json());
app.use(cookieParser());
app.use(cors());
Whenever I send an audio record(blob) more than an 8min record. It starts requesting after 1min, I got CORS failed in XHR Transferred.
if the audio length is less than 8min, there is no error it requested API and saved the audio.
Please help me out with this.
Thanks