Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In this case, for stream named "user1#room1" only "user1" will be displayed (without room name and special character).

Custom stream lable displaying

Since build 5.2.816 it is possible to display custom stream label in mixer instead of stream and room name. In fact, almost any name can be assigned including national characters.

A label should be set in stream name while publishing, for example

Code Block
languagejs
themeRDark
session.createStream({
    streamName: "test1#m1?label=John Doe",
    display: localDisplay,
    ...
}).publish();

Image Added

In this case the label will be displayed in mixer, including audio only streams

Image Added

National characters are supported along with the following special characters

Code Block
themeRDark
~!@#№$%^*()-_,.;:[]{}<>/|\

Character '+' will be replaced by whitespace, i.e. in the example aboc=ve stream can be published with label

Code Block
themeRDark
test1#m1?label=John+Doe

Speech indicator management

...