fix(capture-manager): default deltacast framerate to 60000/1001 (1080p59.94)
This commit is contained in:
parent
e4154ea83a
commit
1c068b470e
1 changed files with 1 additions and 1 deletions
|
|
@ -607,7 +607,7 @@ class CaptureManager {
|
|||
// DELTACAST_VIDEO_SIZE / DELTACAST_FRAMERATE: set by node-agent in the
|
||||
// sidecar env based on the bridge's per-port format JSON, if desired.
|
||||
const dcSize = process.env.DELTACAST_VIDEO_SIZE || '1920x1080';
|
||||
const dcFps = process.env.DELTACAST_FRAMERATE || '25';
|
||||
const dcFps = process.env.DELTACAST_FRAMERATE || '60000/1001';
|
||||
const dcInterlaced = process.env.DELTACAST_INTERLACED === '1';
|
||||
|
||||
return {
|
||||
|
|
|
|||
Loading…
Reference in a new issue