You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
583 B
42 lines
583 B
export const representations = [
|
|
{
|
|
id: '0',
|
|
width: 100,
|
|
height: 100,
|
|
bandwidth: 100,
|
|
frameRate: 29.956,
|
|
enabled() {
|
|
return true;
|
|
}
|
|
},
|
|
{
|
|
id: '1',
|
|
width: 200,
|
|
height: 200,
|
|
bandwidth: 200,
|
|
frameRate: 29.956,
|
|
enabled() {
|
|
return true;
|
|
}
|
|
},
|
|
{
|
|
id: '2',
|
|
width: 300,
|
|
height: 300,
|
|
bandwidth: 300,
|
|
frameRate: 30,
|
|
enabled() {
|
|
return true;
|
|
}
|
|
},
|
|
{
|
|
id: '3',
|
|
width: 400,
|
|
height: 400,
|
|
bandwidth: 400,
|
|
frameRate: 60,
|
|
enabled() {
|
|
return true;
|
|
}
|
|
}
|
|
];
|
|
|