mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-07-19 11:41:04 +02:00
11 lines
427 B
Python
11 lines
427 B
Python
"""Exotel frame serializer.
|
|
|
|
Exotel streams audio over WebSocket using the same JSON envelope and μ-law
|
|
8 kHz encoding as Plivo. We re-export PlivoFrameSerializer directly so
|
|
transport.py can import from `.serializers` and we have an obvious place to
|
|
drop a custom subclass later if Exotel diverges.
|
|
"""
|
|
|
|
from pipecat.serializers.plivo import PlivoFrameSerializer as ExotelFrameSerializer
|
|
|
|
__all__ = ["ExotelFrameSerializer"]
|