커버

DEVELOPER HUB

Explore our guides and examples to integrate TwelveLabs

Easily build features like semantic search, anomaly detection, content recommenders and capabilities tailored to you. Our API unlocks your video’s full potential.

Cover

DEVELOPER HUB

Explore our guides and examples to integrate TwelveLabs

Easily build features like semantic search, anomaly detection, content recommenders and capabilities tailored to you. Our API unlocks your video’s full potential.

Try our API.

Analyze (분석)
임베드
Search

Get your API keys from the dashboard page and ensure the TwelveLabs SDK is installed on your computer:

PYTHON
NODE

$

pip install twelvelabs

You can copy and paste the code below to analyze videos and generate text based on their content. Replace the placeholders surrounded by <> with your values.

PYTHON
NODE

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

from twelvelabs import TwelveLabs

from twelvelabs.indexes import IndexesCreateRequestModelsItem

from twelvelabs.tasks import TasksRetrieveResponse

 

client = TwelveLabs(api_key="<YOUR_API_KEY>")

 

index = client.indexes.create(

index_name="<YOUR_INDEX_NAME>",

models=[

IndexesCreateRequestModelsItem(

model_name="pegasus1.2", model_options=["visual", "audio"]

)

]

)

print(f"Created index: id={index.id}")

 

task = client.tasks.create(

index_id=index.id, video_url="<YOUR_VIDEO_URL>")

print(f"Created task: id={task.id}")

 

def on_task_update(task: TasksRetrieveResponse):

print(f" Status={task.status}")

 

task = client.tasks.wait_for_done(task_id=task.id, callback=on_task_update)

if task.status != "ready":

raise RuntimeError(f"Indexing failed with status {task.status}")

print(

f"Upload complete. The unique identifier of your video is {task.video_id}.")

 

text_stream = client.analyze_stream(video_id=task.video_id, prompt="<YOUR_PROMPT>")

for text in text_stream:

if text.event_type == "text_generation":

print(text.text)

트웰브랩스의 모델

Learn more about TwelveLabs’ world-leading video foundation models.

Cover
Logo animated
Pegasus

영상 중심으로 설계된 강력한 언어 모델. 영상·음성·오디오 정보를 통합 분석해 자연스러운 텍스트를 생성합니다.

Cover
Logo animated
Pegasus

영상 중심으로 설계된 강력한 언어 모델. 영상·음성·오디오 정보를 통합 분석해 자연스러운 텍스트를 생성합니다.

Support and guidance

Contact

Have a question? Get in touch with a member of the TwelveLabs team for help.

커뮤니티

Connect with the TwelveLabs community for ideas, tips, and knowledge sharing.

Support and guidance

Contact

Have a question? Get in touch with a member of the TwelveLabs team for help.

커뮤니티

Connect with the TwelveLabs community for ideas, tips, and knowledge sharing.