https://youtube.com/shorts/NP7pmuWsCb0?is=EcA3r8wukX9pyT2o
https://youtube.com/shorts/q-5XkUNuXJ8?is=S33qtshOYFaxqmPO
Subscribers
import os from groq import Groq client = Groq() filename = os.path.dirname(__file__) + "/audio.m4a" with open(filename, "rb") as file: transcription = client.audio.transcriptions.create( file=(filename, file.read()), model="whisper-large-v3", language="en", response_format="verbose_json", ) print(transcription.text)
No comments:
Post a Comment