?
extractAudioFromVideo
Extract audio MP3 from a video file
mindstudio.extractAudioFromVideo({ videoUrl }) → Result
Pulls the audio track out of a video as an MP3 — the first step before transcription, or when you only need the sound.
Parameters
videoUrl
string
RequiredURL of the source video to extract audio from
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.extractAudioFromVideo({ videoUrl: /* ... */ });