Created
July 31, 2017 20:19
-
-
Save shbatm/f02569e21738eccc71a51a81775c66b8 to your computer and use it in GitHub Desktop.
MMM-RTSPStream Multi Camera Example Config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
module: "MMM-RTSPStream", | |
position: "middle_center", | |
header: "Camera Streams", | |
config: { | |
autoStart: false, | |
rotateStreams: false, | |
moduleWidth: 1120, | |
moduleHeight: 784, | |
stream1: { | |
name: 'Driveway Camera', | |
url: 'rtsp://user:password@cam1ip:25013//Streaming/Channels/2', | |
snapshotUrl: 'http://user:password@cam1ip//Streaming/Channels/2/picture', | |
snapshotType: 'url', | |
snapshotRefresh: 5, // Seconds | |
frameRate: "30", | |
port: 10000, | |
width: 528, | |
height: 360, | |
shutdownDelay: 10000, // Miliseconds | |
hideFfmpegOutput: true | |
}, | |
stream2: { | |
name: 'Front Door Camera', | |
url: 'rtsp://user:password@cam2ip:25015//Streaming/Channels/2', | |
snapshotUrl: 'http://user:password@cam2ip//Streaming/Channels/2/picture', | |
snapshotType: 'url', | |
snapshotRefresh: 5, // Seconds | |
frameRate: "30", | |
port: 10001, | |
width: 528, | |
height: 360, | |
shutdownDelay: 10000, // Miliseconds | |
hideFfmpegOutput: true | |
}, | |
stream3: { | |
name: 'Patio Camera', | |
url: 'rtsp://user:password@cam3ip:25010//Streaming/Channels/2', | |
snapshotUrl: 'http://user:password@[email protected]//Streaming/Channels/2/picture', | |
snapshotType: 'url', | |
snapshotRefresh: 5, // Seconds | |
frameRate: "30", | |
port: 10002, | |
width: 528, | |
height: 360, | |
shutdownDelay: 10000, // Miliseconds | |
hideFfmpegOutput: true | |
}, | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment