Webm configuration

Nir Familier

New Member
Hi,

I need to send streaming videos as webm and not mp4.
How do i set the server/client to save stream and save as webm files.
 

Max

Administrator
Staff member
Good day.
To save the stream recording files in WebM container, you should publish a stream as VP8. This can be done by excluding H264 on client side, for example
Code:
publishStream = session.createStream({
    ...
    stripCodecs: "H264"
}).on(STREAM_STATUS.PUBLISHING, function (publishStream) {
    ...
});
publishStream.publish();
You can also disable H264 codec on server side
Code:
codecs_exclude_streaming=flv,telephone-event,h264
 
Top