Skip to content

Commit

Permalink
Introduce transcription protocol (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
keepingitneil authored Apr 27, 2024
1 parent 333e99d commit c275775
Show file tree
Hide file tree
Showing 24 changed files with 874 additions and 704 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-rtc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,12 @@ jobs:
- uses: actions/setup-python@v4

- name: Install cibuildwheel
if: runner.os != 'macOS'
run: python3 -m pip install cibuildwheel==2.15.0

- name: Install cibuildwheel on macOS
if: runner.os == 'macOS'
run: python3 -m pip install --break-system-packages cibuildwheel==2.15.0

- name: Build wheels
run: python3 -m cibuildwheel --output-dir dist
Expand Down
3 changes: 3 additions & 0 deletions livekit-rtc/livekit/rtc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
RemoteTrackPublication,
TrackPublication,
)
from .transcription import Transcription, TranscriptionSegment
from .version import __version__
from .video_frame import (
VideoFrame,
Expand Down Expand Up @@ -109,6 +110,8 @@
"LocalTrackPublication",
"RemoteTrackPublication",
"TrackPublication",
"Transcription",
"TranscriptionSegment",
"VideoFrame",
"VideoSource",
"VideoStream",
Expand Down
6 changes: 3 additions & 3 deletions livekit-rtc/livekit/rtc/_proto/audio_frame_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

129 changes: 64 additions & 65 deletions livekit-rtc/livekit/rtc/_proto/audio_frame_pb2.pyi

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions livekit-rtc/livekit/rtc/_proto/e2ee_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

119 changes: 59 additions & 60 deletions livekit-rtc/livekit/rtc/_proto/e2ee_pb2.pyi

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions livekit-rtc/livekit/rtc/_proto/ffi_pb2.py

Large diffs are not rendered by default.

81 changes: 42 additions & 39 deletions livekit-rtc/livekit/rtc/_proto/ffi_pb2.pyi

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions livekit-rtc/livekit/rtc/_proto/handle_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions livekit-rtc/livekit/rtc/_proto/handle_pb2.pyi

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions livekit-rtc/livekit/rtc/_proto/participant_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 11 additions & 7 deletions livekit-rtc/livekit/rtc/_proto/participant_pb2.pyi

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

232 changes: 120 additions & 112 deletions livekit-rtc/livekit/rtc/_proto/room_pb2.py

Large diffs are not rendered by default.

Loading

0 comments on commit c275775

Please sign in to comment.