Hello everyone,
So, basically, I want to annotate some audio files in a custom recipe. Problem is, I need to annotate multiple audio files at the same time (we're annotating 4 files for each student). Annotation is done only through choice block.
I managed to have different choice blocks, with custom id/labels, and with a custom validation function (in order that each choice block can only have one valid input).
But I don't manage to load 4 different audio at the same time.
Problem is that, I can load multiple audio in the custom stream function ( get_stream() ) and put them in a dic through base64, but I can only """ feed """ one audio to all audio block at the same time ?
If that makes more sense, I have 4 {"view_id": "audio"}
in my block of my custom receipe, and I would like to give each of them a different audio file through the yield of the get_stream()
function. What would be the best way to do so ?
Kind regards,
Gautier