Versions Compared

Key

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

...

/usr/local/FlashphonerWebCallServer/client2/examples/demo/streaming/stream_filter

stream_filter.css - файл стилейstyles file
stream_filter.html - страница клиентаclient page
stream_filter.js - скрипт, обеспечивающий работу примераmain script to work

The example can be tested by the following URL:

...

session.createStream(), publish() code

When stream is created, the following parameters are passed

  • streamName - name of the stream
  • localVideo - <div> element, in which video from camera will be displayed

To apply a filter, the video captured from web camera will be drawn on the canvas using the option useCanvasMediaStream: true

...

session.createStream(), play() code.

When stream is created, the following parameters are passed

  • streamName - name of the stream (including the stream published on step above)
  • remoteVideo - <div> element, in which video playback will be displayed
Code Block
languagejs
themeRDark
session.createStream({
    name: streamName,
    display: remoteVideo
    ...
}).play();

...