> For the complete documentation index, see [llms.txt](https://morphic.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://morphic.com/docs/kr/audio/transcription.md).

# 전사

전사 기능은 Morphic의 모든 오디오 또는 비디오 파일에서 음성을 읽어 자막 문서로 반환합니다. 각 줄은 말해진 시점의 타이밍과 함께 돌아오므로, 편집본에 자막을 입히거나, 인터뷰에서 인용문을 뽑거나, 대본의 기초로 사용할 수 있습니다.

Morphic에서 전사 기능을 사용하는 간단한 튜토리얼입니다:

1. Morphic에서 Canvas 또는 Copilot을 여세요
2. 전사할 오디오 또는 비디오 파일을 첨부하려면 종이클립 아이콘을 클릭하세요. 다음 중에서 선택할 수 있습니다:

* Canvas에서 선택 - 이미 Canvas에 배치된 파일을 선택
* Assets에서 선택 - Assets 라이브러리에서 선택
* 에셋 업로드 - 기기에서 파일 업로드

3. 전사를 요청하세요. 예를 들어 "이것을 전사해 주세요." 같은 식입니다. 같은 메시지에 추가 지시도 넣을 수 있습니다: 음성 언어, 번역, 화자 표기, 또는 단어 수준 타이밍.
4. 파란색 화살표를 누르세요. 전사가 끝나면 .srt 파일이 채팅에 나타나 다운로드할 수 있습니다.

#### 요청할 수 있는 항목

이 항목들을 요청과 같은 메시지에 적으세요.

| 이렇게 요청    | 받게 되는 결과                                       |
| --------- | ---------------------------------------------- |
| 추가 없음     | 음성 언어가 자동으로 감지되어 자막 큐로 반환됩니다                   |
| 특정 언어     | 잡음이 있는 오디오나 중간에 언어가 바뀌는 녹음을 위한 힌트              |
| 번역        | 각 큐는 원문 줄을 유지하고 그 아래에 번역을 추가합니다                |
| 화자 표기     | 각 큐 앞에 말하는 사람이 표시됩니다                           |
| 단어 수준 타이밍 | 노래방 스타일 자막을 위해 각 단어마다 고유한 시작 및 종료 시간이 있는 큐 하나씩 |

#### 돌려받는 결과

단일 .srt 파일입니다. 각 큐에는 번호, 밀리초 단위의 시작 및 종료 타임스탬프, 그리고 말해진 문장이 포함됩니다.

```
1
00:00:00,000 --> 00:00:01,500
안녕, 세상.

2
00:00:01,500 --> 00:00:03,000
앨리스: Bonjour
안녕
```

#### 제한

| 입력     | 세부 정보                |
| ------ | -------------------- |
| 파일     | 전사당 오디오 또는 비디오 파일 1개 |
| 오디오 크기 | 최대 500 MB            |
| 비디오 크기 | 최대 200 MB            |

#### 더 나은 결과를 위한 팁

* 깨끗한 오디오를 입력하세요. 배경 음악과 겹치는 대화는 정확도를 떨어뜨립니다.
* 녹음이 조용하거나 화자가 문장 중간에 언어를 바꿀 때는 언어를 지정하세요.
* 두 명 이상이 말하는 경우에는 화자 표기를 요청하세요. 각 큐에 발화자가 표시되면 인터뷰나 패널 토론을 훨씬 읽기 쉬워집니다.

이것이 Morphic에서 전사 기능을 사용하는 방법입니다. .srt 파일을 받으면 대본으로 다운로드하거나, 비디오 자체에 자막을 입히는 데 사용할 수 있습니다. 보기 [자막](/docs/kr/tools/subtitles.md).

***

문제가 있거나 궁금한 점이 있으시면 언제든지 연락해 주세요. 기꺼이 도와드리겠습니다. 다음 주소로 문의해 주세요: [**support@morphic.com**](mailto:support@morphic.com)**.**


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://morphic.com/docs/kr/audio/transcription.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
