CasparCG Server Output Config for two decklinks

Hello how to edit config file to output screen consumer to 2 decklinks from one server ?

What exactly do you want? Two channels with a screen consumer and a Decklink each? Or what?

abillity to play two different videos on two different decklinks

You can try with something like that:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <paths>
        <media-path>media/</media-path>
        <log-path>log/</log-path>
        <data-path>data/</data-path>
        <template-path>template/</template-path>
    </paths>
	<log-level>debug</log-level>
    <lock-clear-phrase>secret</lock-clear-phrase>
	<flash>
		<enabled>true</enabled>
		<buffer-depth>auto</buffer-depth>
	</flash>
    <channels>
        <channel>
			<video-mode>1080i5000</video-mode>
			<straight-alpha-output>false</straight-alpha-output>
			<consumers>
				<decklink>
					<device>1</device>
					<embedded-audio>true</embedded-audio>
					<channel-layout>stereo</channel-layout>
					<latency>normal</latency>
					<keyer>external</keyer>
					<key-only>false</key-only>
					<buffer-depth>3</buffer-depth>
				</decklink>
            </consumers>
        </channel>
        <channel>
			<video-mode>1080i5000</video-mode>
			<straight-alpha-output>false</straight-alpha-output>
			<consumers>
				<decklink>
					<device>2</device>
					<embedded-audio>true</embedded-audio>
					<channel-layout>stereo</channel-layout>
					<latency>normal</latency>
					<keyer>external</keyer>
					<key-only>false</key-only>
					<buffer-depth>3</buffer-depth>
				</decklink>
            </consumers>
        </channel>
    </channels>
    <controllers>
        <tcp>
            <port>5250</port>
            <protocol>AMCP</protocol>
        </tcp>
    </controllers>
    <amcp>
        <media-server>
            <host>localhost</host>
            <port>8000</port>
        </media-server>
    </amcp>
</configuration>
1 Like