mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
This commit is contained in:
parent
37e90e3dfe
commit
214f5d9fc3
4949 changed files with 1393320 additions and 29 deletions
42
node_modules/videojs-contrib-quality-levels/test/test-helpers.js
generated
vendored
Normal file
42
node_modules/videojs-contrib-quality-levels/test/test-helpers.js
generated
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue