Skip to main content
OpenAI느림울트라

OpenAI Sora 2

사실적인 물리 시뮬레이션과 오디오 생성 기능을 갖춘 OpenAI의 비디오 생성 모델로, 높은 일관성의 비디오를 생성합니다.

600 크레딧
비디오당
사실적인 물리 시뮬레이션
오디오 생성 지원
최대 20초 비디오
다양한 해상도 옵션 (480p-1080p)
시작 프레임을 활용한 이미지-비디오 변환

AI 어시스턴트에서 사용하기

이 모델의 사용법을 Claude, ChatGPT 등에 복사

llms.txt

빠른 시작

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "openai/sora-2",
  "input": {
    "prompt": "A glass marble rolls down a wooden ramp, bounces off the table edge, and splashes into a glass of water, slow motion, photorealistic",
    "duration": "10",
    "aspect_ratio": "16:9",
    "resolution": "1080p"
  }
}'

파라미터

파라미터타입필수기본값설명
promptstringYes-생성할 비디오에 대한 텍스트 설명
image_urlstringNo-시작 프레임 이미지 URL
durationintegerNo5비디오 길이 초 (5, 10, 15 또는 20)
5101520
aspect_ratiostringNo16:9출력 화면 비율
16:99:161:1
resolutionstringNo720p출력 해상도
480p720p1080p

파일 입력 방법

이 모델의 image_url 파라미터에 파일을 전달하는 방법은 3가지입니다.

추천

간편 업로드 (Multipart)

POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 필요 없습니다.

curl -X POST "https://api.core.today/v1/predictions/upload" \
  -H "X-API-Key: cdt_your_api_key" \
  -F "model=openai/sora-2" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:image_url=@your_file.png"

이미지 URL 전달

공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.

{
  "model": "openai/sora-2",
  "input": {
    "prompt": "your prompt here",
    "image_url": "https://example.com/image.jpg"
  }
}
File Upload 문서에서 Presigned URL 방식 등 더 자세한 업로드 방법을 확인하세요.

공통 파라미터

POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.

파라미터타입필수기본값설명
modelstringYes-모델 식별자
inputobjectYes-위 테이블의 모델별 파라미터를 포함하는 객체
output_folderstringNo-결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가)
webhook_urlstringNo-완료 시 호출할 Webhook URL
is_publicbooleanNofalsetrue 시 결과물을 영구 공개 URL로도 제공

예제

물리 시뮬레이션

사실적인 물리 기반 비디오

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "openai/sora-2",
  "input": {
    "prompt": "A glass marble rolls down a wooden ramp, bounces off the table edge, and splashes into a glass of water, slow motion, photorealistic",
    "duration": "10",
    "aspect_ratio": "16:9",
    "resolution": "1080p"
  }
}'

도시 타임랩스

다이나믹한 도시 타임랩스 비디오

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "openai/sora-2",
  "input": {
    "prompt": "Timelapse of a busy city intersection from sunset to night, car light trails, pedestrians moving quickly, cinematic wide angle",
    "duration": "15",
    "aspect_ratio": "16:9",
    "resolution": "720p"
  }
}'

팁 & 모범 사례

1Sora는 물체 간 사실적인 물리 상호작용에 뛰어납니다
2복잡한 장면 전환에는 더 긴 길이를 사용하세요
3더 높은 해상도는 비례적으로 더 많은 크레딧이 필요합니다
4최상의 결과를 위해 물리적 상호작용을 명시적으로 설명하세요

사용 사례

사실적인 장면 생성
물리 기반 애니메이션
장편 비디오 콘텐츠
고해상도 비디오 프로덕션
창의적 시각 스토리텔링