```js const frame = beamcoder.frame({ channels: 1 }); console.log(frame.channels); // 0 frame.channels = 2; console.log(frame.channels); // 2 ```