Skip to content

Timecode/Timestamp big chunks. #133

Closed Answered by scottstephenson
kawhianthony asked this question in General help
Discussion options

You must be logged in to vote

Have you seen the utterances feature?

It doesn’t break it out every minute, but breaks out transcripts and times on meaningful chunks of spoken words (think sentences, pauses, turn taking).

Check out more here:
https://developers.deepgram.com/documentation/features/utterances/

If that built in feature doesn’t quite solve it, you could make a simple script to group transcripts into approximately minute based chunks. Here is an example in Python:

import requests
import json

# Replace with your Deepgram API Key
api_key = "YOUR_DEEPGRAM_API_KEY"

# Endpoint for Deepgram's transcription service
url = "https://api.deepgram.com/v1/listen"

# Headers for the request
headers = {
    "Authorization"

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by jpvajda
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants