Skip to content

Releases: livekit/python-sdks

rtc-v0.9.1

14 Feb 22:27
5eb5001
Compare
Choose a tag to compare

What's Changed

Full Changelog: rtc-v0.9.0...rtc-v0.9.1

rtc-v0.9.0

14 Feb 20:42
818aa98
Compare
Choose a tag to compare

Breaking changes from rtc-v0.8.0

  • Video buffers has been reworked. The new VideoFrame implementation can now contains any VideoFormat type:
source = rtc.VideoSource(track)
my_frame = rtc.VideoFrame(1920, 1080, rtc.VideoBufferType.RGBA, data)
source.capture_frame(my_frame)
  • Use the convert method to convert a VideoFrame to another format:
i420_frame = my_frame.convert(rtc.VideoBufferType.I420)
  • You can now directly select the video format when constructing a VideoStream
stream = rtc.VideoStream(track, format=rtc.VideoBufferType.RGBA)
  • VideoStream and AudioStream now receive events instead of directly receiving a frame:
stream = rtc.AudioStream(track)
async for event in stream:
      frame = event.frame

What's Changed

Full Changelog: rtc-v0.8.0...rtc-v0.9.0

api-v0.4.2

14 Feb 21:01
3533993
Compare
Choose a tag to compare

What's Changed

Full Changelog: api-v0.4.1...api-v0.4.2

rtc-v0.8.0

14 Feb 20:43
3c65d74
Compare
Choose a tag to compare

Breaking changes from rtc-v0.7.0

  • rtc.VideoFrame constructor changed

What's Changed

Full Changelog: rtc-v0.7.1...rtc-v0.8.0

protocol-v0.3.1

14 Jan 17:01
66e0c4b
Compare
Choose a tag to compare

What's Changed

Full Changelog: api-v0.4.0...protocol-v0.3.1

api-v0.4.1

14 Jan 17:01
66e0c4b
Compare
Choose a tag to compare

What's Changed

Full Changelog: api-v0.4.0...api-v0.4.1

proto-v0.3.0

13 Jan 00:56
9b7d0de
Compare
Choose a tag to compare
Pin versions for protocol (#141)

api-v0.4.0

13 Jan 00:56
9b7d0de
Compare
Choose a tag to compare
Pin versions for protocol (#141)

rtc-v0.7.1

12 Jan 14:21
62cbed0
Compare
Choose a tag to compare

What's Changed

Full Changelog: rtc-v0.7.0...rtc-v0.7.1

rtc-v0.7.0

11 Jan 11:07
8eea946
Compare
Choose a tag to compare

Breaking changes from rtc-v0.6.0

  • arguments inside the data_received event changed: See #111

Ffi/Rust Changes

What's Changed

Full Changelog: rtc-v0.6.0...rtc-v0.7.0