Initial commit

This commit is contained in:
2023-08-29 19:55:48 +02:00
commit 7c2eec4446
473 changed files with 40947 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
exports.__esModule = true;
var Integration = {
name: 'Wirecast',
description: 'Control your Wirecast via our Wirecast-Bridge application.',
main: require('./wirecast'),
actions: [
{
id: 'go',
name: 'Go'
},
{
id: 'setLiveByName',
name: 'Set shot live'
},
{
id: 'clearIfLive',
name: 'Clear shot if live'
},
{
id: 'transitionSpeed',
name: 'Set transition speed'
},
{
id: 'clearLayer',
name: 'Clear a layer'
},
{
id: 'multiShot',
name: 'Multi shot'
},
{
id: 'setBroadcasting',
name: 'Set broadcasting state'
},
{
id: 'setRecording',
name: 'Set recording state'
},
{
id: 'setAutoLive',
name: 'Set autolive state'
}
],
connections: [
{
name: 'Wirecast-Bridge',
type: 'wirecast-bridge',
message: "This connection requires the 'Undecked Wirecast Bridge' tool to be running on the same machine as Wirecast. This tool allows Undecked to control various Wirecast features over the network.",
link: {
address: 'http://www.morphix.productions',
title: 'Get the Wirecast Bridge'
},
fields: [
{ id: 'ip', name: 'IP Address', type: 'text' },
{ id: 'port', name: 'Port', type: 'number', value: 6060 }
]
}
]
};
module.exports = Integration;
//# sourceMappingURL=integration.js.map