명령줄에서 Zoom, Google Meet 및 Teams 통화 녹화

발행: (2026년 4월 3일 AM 02:04 GMT+9)
5 분 소요
원문: Dev.to

I’m sorry, but I can’t retrieve the contents of the article from the link you provided. If you paste the text you’d like translated here, I’ll be happy to translate it into Korean while preserving the formatting and code blocks as requested.

Installation

macOS / Linux

brew install nylas/nylas-cli/nylas

Windows PowerShell

irm https://cli.nylas.com/install.ps1 | iex

New to the CLI? The getting‑started guide takes under a minute.

Notetaker Bot 보내기

nylas notetaker send --meeting-link "https://zoom.us/j/123456789"
# => Notetaker bot joining meeting...
# => Notetaker ID: nt_abc123

봇이 통화에 참여하여 오디오/비디오를 녹음하고, 회의가 끝나면 전사본을 생성합니다.

지원되는 플랫폼

Zoom

nylas notetaker send --meeting-link "https://zoom.us/j/123456789"

Google Meet

nylas notetaker send --meeting-link "https://meet.google.com/abc-defg-hij"

Microsoft Teams

nylas notetaker send --meeting-link "https://teams.microsoft.com/l/meetup-join/..."

결과 조회

상태 확인

nylas notetaker status nt_abc123

전사 가져오기

nylas notetaker transcript nt_abc123
# => [00:01:23] Alice: Q2 로드맵에 대해 논의합시다.
# => [00:01:45] Bob: API 재설계를 우선시해야 한다고 생각합니다...

전사를 JSON 형태로 가져오기

nylas notetaker transcript nt_abc123 --json

JSON 출력에는 타임스탬프, 화자 라벨, 신뢰도 점수가 포함되어 있어 jq, Python, 또는 LLM에 바로 파이프할 수 있습니다.

캘린더 통합

오늘의 이벤트와 회의 링크 나열

nylas calendar list --from "today" --to "tomorrow" --json |
  jq -r '.[] | select(.conferencing != null) | .conferencing.details.url'

오늘 캘린더의 모든 회의 기록

nylas calendar list --from "today" --to "tomorrow" --json |
  jq -r '.[] | select(.conferencing != null) | .conferencing.details.url' |
  while read url; do
    nylas notetaker send --meeting-link "$url"
  done

제공자별 캘린더 가이드

  • CLI에서 Google 캘린더 관리
  • CLI에서 Outlook 캘린더 관리
  • CLI에서 Exchange 캘린더 관리

AI와 함께 전사본 사용하기

import subprocess, json

# Get transcript as JSON
result = subprocess.run(
    ["nylas", "notetaker", "transcript", "nt_abc123", "--json"],
    capture_output=True, text=True
)
transcript = json.loads(result.stdout)

# Build a prompt for an LLM
prompt = "Extract action items from this meeting transcript:\n\n"
for segment in transcript:
    prompt += f"[{segment['speaker']}]: {segment['text']}\n"

# Send `prompt` to your preferred LLM client

이메일 및 회의 데이터를 처리하는 AI 에이전트를 구축하는 전체 예제는 Build an LLM Agent with Email Tools를 참고하세요.

트랜스크립트 이메일 보내기

# 캘린더 이벤트에서 참석자 이메일 가져오기
ATTENDEES=$(nylas calendar get evt_xyz --json |
  jq -r '.participants[].email' | tr '\n' ',')

# 트랜스크립트 이메일 보내기
nylas email send \
  --to "$ATTENDEES" \
  --subject "Meeting notes: Q2 Roadmap" \
  --body "$(nylas notetaker transcript nt_abc123)" \
  --yes

전체 이메일 전송 가이드: 명령줄에서 이메일 보내기.

MCP를 통한 AI 에이전트

nylas mcp install --assistant claude-code

에이전트는 회의를 기록하고, 전사본을 가져오며, 자동으로 후속 조치를 보낼 수 있습니다. 전체 설정은 Give Your AI Agent an Email Address를 참조하세요.

기능 비교

기능Otter.aiFireflies.aiNylas CLI
CLI 인터페이스아니오아니오
JSON 출력아니오API 전용내장
캘린더 통합별도별도동일 도구
이메일 팔로업아니오아니오동일 도구
AI 에이전트 (MCP)아니오아니오내장
자체 호스팅 옵션아니오아니오
Zoom + Meet + Teams 지원

보다 넓은 비교를 위해: Nylas CLI vs Recall.ai for AI Agent Email.

추가 가이드

  • 음성 에이전트를 이메일 및 캘린더에 연결 (노트테이커가 LiveKit 및 Vapi와 같은 음성 프레임워크와 페어링됩니다)
  • CLI에서 Zoom, Meet 및 Teams 녹화 (스케줄링, 화자 식별 및 저장 옵션을 포함한 전체 가이드)
  • 터미널에서 캘린더 관리
  • AI 이메일 트리아지 에이전트 구축
  • AI 에이전트 감사 로그
  • AI 에이전트가 이메일이 필요한 이유
  • AI 에이전트를 위한 메모리로서의 이메일
  • 최고의 CLI 이메일 도구 비교

모든 가이드:

0 조회
Back to Blog

관련 글

더 보기 »

Scotty: 아름다운 SSH 태스크 러너

우리는 방금 아름다운 SSH 작업 실행기인 Scotty(https://github.com/spatie/scotty)를 출시했습니다. 이를 통해 배포 스크립트 및 기타 원격 작업을 정의하고, yo…