Hi, Is there a way to add mutagen package to toolkit as default?
I needed for example to run a python script ({
"code": "import requests\nfrom mutagen.mp3 import MP3\nfrom io import BytesIO\n\nurl = '{{$json.body.audio_url}}'\nresponse = requests.get(url)\naudio = MP3(BytesIO(response.content))\nduration = round(audio.info.length, 2)\noutput = {\"duration\": duration}" }
) to get a lenght of an audio file to do later in next step v1/image/transform/video from image to be the same lenght as audio.
PS: A just added a PR into github repo.