from mixpeek import Mixpeek
mix = Mixpeek(mixpeek_key="API_KEY")
# index our M4A file
mix.extract("file.m4a")
# now we have clean M4A data
[
{
"filename": "file.m4a",
"content": "This is the content of the m4a file".
"embedding": [0.1, 0.2, 0.3, ...]
"metadata": {
"author": "John Doe",
"date": "2022-01-01"
}
}
]
Read the Docs