Speaker diarization
Phonexia speaker-diarization is a tool for detecting individual speakers in an audio and creating a segmentation of the audio based on who of the detected speakers is speaking in the segment.
Phonexia speaker-diarization is a tool for labeling segments of the same voices in one mono-channel audio record based on the individual speaker´s voice. It is a language, domain and channel-independent technology. Phonexia speaker-diarization is useful for labeling the parts of the utterance according to the speakers, identifying how many speakers are speaking in the recording, or preprocessing for other speech recognition technologies. To learn more, visit the technology's home page.
Versioning
We use SemVer for versioning.
Quick reference
- Maintained by Phonexia
- Contact us via e-mail, or using Phonexia Service Desk
- File an issue
- See list of licenses
- See terms of use
How to use this image
Getting the image
You can easily obtain the docker image from docker hub. There are 2 variants of the image. One for CPU, one for GPU with suffix -gpu in a tag.
docker pull phonexia/speaker-diarization:latest
To get the latest GPU image, run:
docker pull phonexia/speaker-diarization:gpu
Running the image
You can start the microservice and list all the supported options by running:
docker run --rm -it phonexia/speaker-diarization:latest --help
The output should look like this:
Usage: speaker-diarization [OPTIONS]
Options:
-h,--help Print this help message and exit
-m,--model file/dir REQUIRED (Env:PHX_MODEL_PATH)
Path to model file or directory.
-k,--license_key string REQUIRED (Env:PHX_LICENSE_KEY)
License key.
-a,--listening_address address [[::]] (Env:PHX_LISTENING_ADDRESS)
Address on which the server will be listening. Address '[::]' also accepts IPv4 connections.
-p,--port number [8080] (Env:PHX_PORT)
Port on which the server will be listening.
-l,--log_level level [info] (Env:PHX_LOG_LEVEL)
Logging level. Possible values: error, warning, info, debug, trace.
--device TEXT:{cpu,cuda} [cpu] (Env:PHX_DEVICE)
Compute device used for inference.
Note that the model and license_key options are required. To obtain the model and license, contact Phonexia.
You can specify the options either via the parameters or environmental variables.
Run the container with the mandatory parameters:
docker run --rm -it -p 8080:8080 -v ${absolute-path-to-models}:/models phonexia/speaker-diarization:latest --model /models/${model} --license_key ${license-key}
Replace the absolute-path-to-models
, model
and license-key
with the corresponding values.
With this command, the container will start, and the microservice will be listening on port 8080 on localhost.
Performance optimization
The speaker-diarization
microservice supports GPU acceleration.
In the docker images with GPU support, the GPU acceleration is enabled by default. While GPU acceleration will be used primarily, certain processing tasks will still rely on CPU resources.
For better performance, multiple microservices can share a GPU unit. The number of microservice instances per GPU depends on the hardware used.
Microservice communication
gRPC API
For communication, our microservices use gRPC, which is a high-performance, open-source Remote
Procedure Call (RPC
) framework that enables efficient communication between distributed systems using a variety of programming languages. We use an interface definition language to specify a common interface and contracts between components. This is primarily achieved by specifying methods with parameters and return types.
Take a look at our gRPC API documentation. The speaker-diarization microservice defines a SpeakerDiarization
service with remote procedure called Diarize
. This procedure accepts an argument (also referred to as "message") called DiarizeRequest
, which contains the audio as an array of bytes, together with an optional config argument.
This DiarizeRequest
argument is streamed, meaning that it may be received in multiple requests, each containing a part of the audio. If specified, the optional config argument must be sent only with the first request. Once all the requests have been received and processed, the Diarize
procedure returns a message called DiarizeResponse
which consists of the number of detected speakers, processed audio length and array of detected segments in the audio. The segments than consist of speaker identifier, start time and end time of the segment.
Connecting to microservice
There are multiple ways how you can communicate with our microservices.
Using generated library
The most common way how to communicate with the microservices is via a programming language using a generated library.
Python library
If you use Python as your programming language, you can use our official gRPC Python library.
To install the package using pip
, run:
pip install phonexia-grpc
You can then import:
- specific libraries for each microservice that provide the message wrappers
- stubs for the
gRPC
clients.
# phx_core contains classes common for multiple microservices like `Audio`.
import phonexia.grpc.common.core_pb2 as phx_core
# speaker_diarization_pb2 contains `DiarizeRequest` and `DiarizeResponse`.
import phonexia.grpc.technologies.speaker_diarization.v1.speaker_diarization_pb2 as diarization
# speaker_diarization_pb2_grpc contains `SpeakerDiarizationStub` needed to make requests.
import phonexia.grpc.technologies.speaker_diarization.v1.speaker_diarization_pb2_grpc as diarization_grpc
Generate library for programming language of your choice
For the definition of microservice interfaces, we use the standard way of protocol buffers. The services
, together with the procedures
and messages
that they expose, are defined in the so-called proto
files.
The .proto
files can be used to generate client libraries in many programming languages. Take a look at protobuf tutorials for how to get started with generating the library in the languages of your choice using the protoc
tool.
You can find the proto
files developed by Phonexia in this repository.
Using existing clients
Phonexia python client
The easiest way to get started with testing is to use our simple Python client. To get it, run:
pip install phonexia-speaker-diarization-client
After the successful installation, run the following command to see the client options:
speaker_diarization_client --help
grpcurl client
If you need a simple tool for testing the microservice on the command line, you can use grpcurl. This tool can serialize and send a request for you, if you provide the request body in JSON format and specify the endpoint.
You need to make sure that the audio content in the body is encoded in Base64
. Unfortunately you need to do this manually as grpcurl
can't do this for you.
echo -n '{"audio": {"content": "'$(base64 -w0 < ${path_to_audio_file})'"}}' > ${path_to_body}
Replace path_to_audio_file
and path_to_body
with corresponding values.
Now we can make the request. The microservice supports reflection. That means that we don't need to know the API in advance to make a request.
grpcurl -plaintext -use-reflection -d @ localhost:8080 phonexia.grpc.technologies.speaker_diarization.v1.SpeakerDiarization/Diarize < ${path_to_body}
The grpcurl
automatically serializes the response to this request into JSON
including the diarized segments.
GUI clients
If you'd prefer to use a GUI client like Postman or Warthog to test the microservice, take a look at the GUI Client page in our documentation. Note that you will still need to convert the audio into the Base64 format manually as those tools do not support it by default either.