Chumby
April 18, 2019, 12:12pm
1
Hi all,
Have a config file working as I need need in NRK fork. Am upgrading to CasperCG 2.2.0, but can’t get the config file correct.
My NRK 2.1.0 is below. Any help appreciated in getting this working in 2.2.0 Stable.
Cheers,
Chumby.
<configuration>
<paths>
<media-path>media/</media-path>
<log-path>log/</log-path>
<data-path>data/</data-path>
<template-path>template/</template-path>
<thumbnail-path>thumbnail/</thumbnail-path>
<font-path>font/</font-path>
</paths>
<lock-clear-phrase>secret</lock-clear-phrase>
<mixer>
<straight-alpha>false</straight-alpha>
</mixer>
<thumbnails>
<generate-thumbnails>false</generate-thumbnails>
</thumbnails>
<accelerator>auto</accelerator>
<channels>
<!-- Channel 1 -->
<channel>
<video-mode>1080p5000</video-mode>
<straight-alpha-output>true</straight-alpha-output>
<channel-layout>8ch</channel-layout>
<consumers>
<decklink>
<device>1</device>
<embedded-audio>true</embedded-audio>
<channel-layout>8ch</channel-layout>
<latency>low</latency>
<keyer>external</keyer>
<key-only>false</key-only>
<buffer-depth>3</buffer-depth>
<custom-allocator>true</custom-allocator>
</decklink>
</consumers>
</channel>
<!-- Channel 2 -->
<channel>
<video-mode>1080p5000</video-mode>
<straight-alpha-output>true</straight-alpha-output>
<channel-layout>8ch</channel-layout>
<consumers>
<decklink>
<device>2</device>
<embedded-audio>true</embedded-audio>
<channel-layout>8ch</channel-layout>
<latency>low</latency>
<keyer>default</keyer>
<key-only>false</key-only>
<buffer-depth>3</buffer-depth>
<custom-allocator>true</custom-allocator>
</decklink>
</consumers>
</channel>
<!-- Channel 3 -->
<channel>
<video-mode>1080p5000</video-mode>
<straight-alpha-output>true</straight-alpha-output>
<channel-layout>8ch</channel-layout>
<consumers>
<decklink>
<device>4</device>
<embedded-audio>true</embedded-audio>
<channel-layout>8ch</channel-layout>
<latency>low</latency>
<keyer>default</keyer>
<key-only>false</key-only>
<buffer-depth>3</buffer-depth>
<custom-allocator>true</custom-allocator>
</decklink>
</consumers>
</channel>
</channels>
<audio>
<channel-layouts>
<channel-layout name="8ch" type="8ch" num-channels="8" />
</channel-layouts>
</audio>
<controllers>
<tcp>
<port>5250</port>
<protocol>AMCP</protocol>
</tcp>
<tcp>
<port>3250</port>
<protocol>LOG</protocol>
</tcp>
</controllers>
</configuration>
Chumby
April 19, 2019, 3:28am
2
Hi Guys,
This is what I have come up for the 2.2.0 config file. Still not outputting as per the NRK output file I posted above.
Can anyone see any issue here?
Cheers
Chumby,
<?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>
<font-path>font/</font-path>
</paths>
<lock-clear-phrase>secret</lock-clear-phrase>
<channels>
<!--Channel 1: Key and Fill. In Desktop Video Setup utility, set the duo to pair SDI 1 & 3 for the first channel -->
<channel>
<video-mode>1080p5000</video-mode>
<consumers>
<decklink>
<device>1</device>
<keyer>external</keyer>
</decklink>
<system-audio/>
</consumers>
</channel>
<!--Channel 2: Playout 1 -->
<channel>
<video-mode>1080p5000</video-mode>
<consumers>
<decklink>
<device>2</device>
<keyer>external</keyer>
</decklink>
<system-audio/>
</consumers>
</channel>
<!--Channel 3: Playout 2 -->
<channel>
<video-mode>1080p5000</video-mode>
<consumers>
<decklink><device>4</device>
<keyer>external</keyer>
</decklink>
<system-audio/>
</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>
I would set the keyer on channel 2 and 3 to “default” instead of “external” and would add the bunch of other settings:
<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>
<custom-allocator>true</custom-allocator>
But if that does it? I don’t know.
Chumby
April 19, 2019, 11:08pm
4
Really appreciate the help, Didikunz.
I changed the code as you suggested but I still can’t get anything to playout. I am using the new client for server 2.2.0.
Any ideas?
Cheers
Chumby
<?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>
<font-path>font/</font-path>
</paths>
<lock-clear-phrase>secret</lock-clear-phrase>
<channels>
<!--Channel 1: Key and Fill. In Desktop Video Setup utility, set the duo to pair SDI 1 & 3 for the first channel -->
<channel>
<video-mode>1080p5000</video-mode>
<consumers>
<decklink>
<device>1</device>
<keyer>external</keyer>
<embedded-audio>true</embedded-audio>
<channel-layout>stereo</channel-layout>
<latency>normal</latency>
<key-only>false</key-only>
<buffer-depth>3</buffer-depth>
<custom-allocator>true</custom-allocator>
</decklink>
<system-audio/>
</consumers>
</channel>
<!--Channel 2: Playout 1 -->
<channel>
<video-mode>1080p5000</video-mode>
<consumers>
<decklink>
<device>2</device>
<keyer>default</keyer>
<embedded-audio>true</embedded-audio>
<channel-layout>stereo</channel-layout>
<latency>normal</latency>
<key-only>false</key-only>
<buffer-depth>3</buffer-depth>
<custom-allocator>true</custom-allocator>
</decklink>
<system-audio/>
</consumers>
</channel>
<!--Channel 3: Playout 2 -->
<channel>
<video-mode>1080p5000</video-mode>
<consumers>
<decklink><device>4</device>
<keyer>default</keyer>
<embedded-audio>true</embedded-audio>
<channel-layout>stereo</channel-layout>
<latency>normal</latency>
<key-only>false</key-only>
<buffer-depth>3</buffer-depth>
<custom-allocator>true</custom-allocator>
</decklink>
<system-audio/>
</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>
Chumby
April 20, 2019, 12:54am
6
Thank you very much for your help, Hreinnbeck.
See my logs from today below:
[2019-04-20 09:01:09.785] [info] ############################################################################
[2019-04-20 09:01:09.785] [info] CasparCG Server is distributed by the Swedish Broadcasting Corporation (SVT)
[2019-04-20 09:01:09.785] [info] under the GNU General Public License GPLv3 or higher.
[2019-04-20 09:01:09.786] [info] Please see LICENSE.TXT for details.
[2019-04-20 09:01:09.786] [info] http://www.casparcg.com/
[2019-04-20 09:01:09.786] [info] ############################################################################
[2019-04-20 09:01:09.786] [info] Starting CasparCG Video and Graphics Playout Server 2.2.0 66a9e3e2 Stable
[2019-04-20 09:01:09.789] [info] Initialized ffmpeg module.
[2019-04-20 09:01:09.789] [info] Initialized oal module.
[2019-04-20 09:01:09.789] [info] Initialized decklink module.
[2019-04-20 09:01:09.789] [info] Initialized screen module.
[2019-04-20 09:01:09.872] [info] Initialized html module.
[2019-04-20 09:01:10.645] [info] Initialized flash module.
[2019-04-20 09:01:10.645] [info] Initialized newtek module.
[2019-04-20 09:01:10.646] [info] Initialized bluefish module.
[2019-04-20 09:01:10.646] [info] Initialized image module.
[2019-04-20 09:01:10.646] [info] "C:/caspercg\casparcg-server-2.2.0-stable-windows\casparcg.config":
[2019-04-20 09:01:10.646] [info] -----------------------------------------
[2019-04-20 09:01:10.646] [info] <?xml version="1.0" encoding="utf-8"?>
[2019-04-20 09:01:10.646] [info] <configuration>
[2019-04-20 09:01:10.646] [info] <paths>
[2019-04-20 09:01:10.646] [info] <media-path>media/</media-path>
[2019-04-20 09:01:10.646] [info] <log-path>log/</log-path>
[2019-04-20 09:01:10.646] [info] <data-path>data/</data-path>
[2019-04-20 09:01:10.646] [info] <template-path>template/</template-path>
[2019-04-20 09:01:10.646] [info] <font-path>font/</font-path>
[2019-04-20 09:01:10.646] [info] </paths>
[2019-04-20 09:01:10.646] [info] <lock-clear-phrase>secret</lock-clear-phrase>
[2019-04-20 09:01:10.646] [info] <channels>
[2019-04-20 09:01:10.646] [info] <channel>
[2019-04-20 09:01:10.646] [info] <video-mode>1080p5000</video-mode>
[2019-04-20 09:01:10.646] [info] <consumers>
[2019-04-20 09:01:10.646] [info] <decklink>
[2019-04-20 09:01:10.646] [info] <device>1</device>
[2019-04-20 09:01:10.646] [info] <keyer>external</keyer>
[2019-04-20 09:01:10.646] [info] <embedded-audio>true</embedded-audio>
[2019-04-20 09:01:10.646] [info] <channel-layout>stereo</channel-layout>
[2019-04-20 09:01:10.646] [info] <latency>normal</latency>
[2019-04-20 09:01:10.646] [info] <key-only>false</key-only>
[2019-04-20 09:01:10.646] [info] <buffer-depth>3</buffer-depth>
[2019-04-20 09:01:10.646] [info] <custom-allocator>true</custom-allocator>
[2019-04-20 09:01:10.646] [info] </decklink>
[2019-04-20 09:01:10.646] [info] <system-audio/>
[2019-04-20 09:01:10.646] [info] </consumers>
[2019-04-20 09:01:10.646] [info] </channel>
[2019-04-20 09:01:10.646] [info] <channel>
[2019-04-20 09:01:10.646] [info] <video-mode>1080p5000</video-mode>
[2019-04-20 09:01:10.646] [info] <consumers>
[2019-04-20 09:01:10.646] [info] <decklink>
[2019-04-20 09:01:10.646] [info] <device>2</device>
[2019-04-20 09:01:10.646] [info] <keyer>default</keyer>
[2019-04-20 09:01:10.646] [info] <embedded-audio>true</embedded-audio>
[2019-04-20 09:01:10.646] [info] <channel-layout>stereo</channel-layout>
[2019-04-20 09:01:10.646] [info] <latency>normal</latency>
[2019-04-20 09:01:10.646] [info] <key-only>false</key-only>
[2019-04-20 09:01:10.646] [info] <buffer-depth>3</buffer-depth>
[2019-04-20 09:01:10.646] [info] <custom-allocator>true</custom-allocator>
[2019-04-20 09:01:10.646] [info] </decklink>
[2019-04-20 09:01:10.646] [info] <system-audio/>
[2019-04-20 09:01:10.646] [info] </consumers>
[2019-04-20 09:01:10.646] [info] </channel>
[2019-04-20 09:01:10.646] [info] <channel>
[2019-04-20 09:01:10.646] [info] <video-mode>1080p5000</video-mode>
[2019-04-20 09:01:10.646] [info] <consumers>
[2019-04-20 09:01:10.646] [info] <decklink>
[2019-04-20 09:01:10.646] [info] <device>4</device>
[2019-04-20 09:01:10.646] [info] <keyer>default</keyer>
[2019-04-20 09:01:10.646] [info] <embedded-audio>true</embedded-audio>
[2019-04-20 09:01:10.646] [info] <channel-layout>stereo</channel-layout>
[2019-04-20 09:01:10.646] [info] <latency>normal</latency>
[2019-04-20 09:01:10.646] [info] <key-only>false</key-only>
[2019-04-20 09:01:10.646] [info] <buffer-depth>3</buffer-depth>
[2019-04-20 09:01:10.646] [info] <custom-allocator>true</custom-allocator>
[2019-04-20 09:01:10.646] [info] </decklink>
[2019-04-20 09:01:10.646] [info] <system-audio/>
[2019-04-20 09:01:10.646] [info] </consumers>
[2019-04-20 09:01:10.646] [info] </channel>
[2019-04-20 09:01:10.646] [info] </channels>
[2019-04-20 09:01:10.646] [info] <controllers>
[2019-04-20 09:01:10.646] [info] <tcp>
[2019-04-20 09:01:10.646] [info] <port>5250</port>
[2019-04-20 09:01:10.646] [info] <protocol>AMCP</protocol>
[2019-04-20 09:01:10.646] [info] </tcp>
[2019-04-20 09:01:10.646] [info] </controllers>
[2019-04-20 09:01:10.646] [info] <amcp>
[2019-04-20 09:01:10.646] [info] <media-server>
[2019-04-20 09:01:10.646] [info] <host>localhost</host>
[2019-04-20 09:01:10.646] [info] <port>8000</port>
[2019-04-20 09:01:10.646] [info] </media-server>
[2019-04-20 09:01:10.646] [info] </amcp>
[2019-04-20 09:01:10.646] [info] </configuration>
[2019-04-20 09:01:10.646] [info] -----------------------------------------
[2019-04-20 09:01:11.432] [info] Initializing OpenGL Device.
[2019-04-20 09:01:11.437] [info] Initialized OpenGL 4.5.0 NVIDIA 425.31 NVIDIA Corporation
[2019-04-20 09:01:11.482] [info] Initialized OpenGL Accelerated GPU Image Mixer for channel 1
[2019-04-20 09:01:11.482] [info] video_channel[1|1080p5000] Successfully Initialized.
[2019-04-20 09:01:11.483] [info] Initialized OpenGL Accelerated GPU Image Mixer for channel 2
[2019-04-20 09:01:11.483] [info] video_channel[2|1080p5000] Successfully Initialized.
[2019-04-20 09:01:11.484] [info] Initialized OpenGL Accelerated GPU Image Mixer for channel 3
[2019-04-20 09:01:11.484] [info] video_channel[3|1080p5000] Successfully Initialized.
[2019-04-20 09:01:11.529] [warning] Device does not support video-format: 1080p50
[2019-04-20 09:01:11.530] [info] DeckLink Duo 2 [1-1|1080p5000] Enabled embedded-audio.
[2019-04-20 09:01:11.530] [info] DeckLink Duo 2 [1-1|1080p5000] Disabled low-latency mode.
[2019-04-20 09:01:11.530] [info] DeckLink Duo 2 [1-1|1080p5000] Enabled external keyer.
[2019-04-20 09:01:11.535] [info] DeckLink Duo 2 [1-1|1080p5000] Initialized.
[2019-04-20 09:01:11.604] [info] oal[1|1080p5000] Initialized.
[2019-04-20 09:01:11.632] [warning] Device does not support video-format: 1080p50
[2019-04-20 09:01:11.633] [info] DeckLink Duo 2 [2-2|1080p5000] Enabled embedded-audio.
[2019-04-20 09:01:11.633] [info] DeckLink Duo 2 [2-2|1080p5000] Disabled low-latency mode.
[2019-04-20 09:01:11.633] [error] DeckLink Duo 2 [2-2|1080p5000] Failed to enable external keyer.
[2019-04-20 09:01:11.649] [info] DeckLink Duo 2 [2-2|1080p5000] Initialized.
[2019-04-20 09:01:11.650] [info] oal[2|1080p5000] Initialized.
[2019-04-20 09:01:11.700] [warning] Device does not support video-format: 1080p50
[2019-04-20 09:01:11.701] [info] DeckLink Duo 2 [3-4|1080p5000] Enabled embedded-audio.
[2019-04-20 09:01:11.701] [info] DeckLink Duo 2 [3-4|1080p5000] Disabled low-latency mode.
[2019-04-20 09:01:11.701] [error] DeckLink Duo 2 [3-4|1080p5000] Failed to enable external keyer.
[2019-04-20 09:01:11.718] [info] DeckLink Duo 2 [3-4|1080p5000] Initialized.
[2019-04-20 09:01:11.720] [info] oal[3|1080p5000] Initialized.
[2019-04-20 09:01:11.720] [info] Initialized channels.
[2019-04-20 09:01:11.721] [info] Initialized controllers.
[2019-04-20 09:01:11.721] [info] Initialized osc.
[2019-04-20 09:01:46.240] [info] async_event_server[:5250] Accepted connection from 127.0.0.1 (1 connections).
[2019-04-20 09:01:46.274] [info] Received message from 127.0.0.1: VERSION SERVER\r\n
[2019-04-20 09:01:46.274] [info] Sent message to 127.0.0.1:201 VERSION OK\r\n2.2.0 66a9e3e2 Stable\r\n
[2019-04-20 09:01:46.277] [info] Received message from 127.0.0.1: INFO\r\n
[2019-04-20 09:01:46.277] [info] Sent message to 127.0.0.1:200 INFO OK\r\n1 1080p5000 PLAYING\r\n2 1080p5000 PLAYING\r\n3 1080p5000 PLAYING\r\n\r\n
[2019-04-20 09:01:46.280] [info] Received message from 127.0.0.1: CLS\r\n
[2019-04-20 09:01:46.283] [info] Received message from 127.0.0.1: TLS\r\n
[2019-04-20 09:01:46.286] [info] Received message from 127.0.0.1: DATA LIST\r\n
[2019-04-20 09:01:46.289] [info] Received message from 127.0.0.1: THUMBNAIL LIST\r\n
[2019-04-20 09:01:46.292] [error] Exception: C:\Program Files (x86)\Jenkins\workspace\casparcg-server-dep\2.2.x\src\protocol\util\http_request.cpp(71): Throw in function struct caspar::http::HTTPResponse __cdecl caspar::http::request(const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &,const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &,const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &)
[2019-04-20 09:01:46.292] [error] Dynamic exception type: class boost::exception_detail::clone_impl<struct caspar::io_error>
[2019-04-20 09:01:46.292] [error] [struct caspar::tag_msg_info * __ptr64] = Invalid Response
[2019-04-20 09:01:46.292] [error] [struct caspar::tag_stacktrace_info * __ptr64] = 0# 0x00007FF67C9F98AE in casparcg
[2019-04-20 09:01:46.292] [error] 1# 0x00007FF67CA28C50 in casparcg
[2019-04-20 09:01:46.292] [error] 2# 0x00007FF67CBB149E in casparcg
[2019-04-20 09:01:46.292] [error] 3# 0x00007FF67CB6F09B in casparcg
[2019-04-20 09:01:46.292] [error] 4# 0x00007FF67CB64FD6 in casparcg
[2019-04-20 09:01:46.292] [error] 5# 0x00007FF67CB5DAAC in casparcg
[2019-04-20 09:01:46.292] [error] 6# 0x00007FF67CBA90FD in casparcg
[2019-04-20 09:01:46.292] [error] 7# 0x00007FF67CBA810B in casparcg
[2019-04-20 09:01:46.292] [error] 8# 0x00007FF67CA62438 in casparcg
[2019-04-20 09:01:46.292] [error] 9# 0x00007FF67CADDF5F in casparcg
[2019-04-20 09:01:46.292] [error] 10# 0x00007FF67CADB0E0 in casparcg
[2019-04-20 09:01:46.292] [error] 11# 0x00007FF67C9F45C9 in casparcg
[2019-04-20 09:01:46.292] [error] 12# o_exp in ucrtbase
[2019-04-20 09:01:46.292] [error] 13# BaseThreadInitThunk in KERNEL32
[2019-04-20 09:01:46.292] [error] 14# RtlUserThreadStart in ntdll
[2019-04-20 09:01:46.292] [error]
[2019-04-20 09:01:46.292] [error]
[2019-04-20 09:01:46.292] [error] 0# 0x00007FF67C9F98AE in casparcg
[2019-04-20 09:01:46.292] [error] 1# 0x00007FF67C9F91DF in casparcg
[2019-04-20 09:01:46.292] [error] 2# 0x00007FF67CF063D7 in casparcg
[2019-04-20 09:01:46.292] [error] 3# _C_specific_handler in VCRUNTIME140
[2019-04-20 09:01:46.292] [error] 4# _TypeMatch in VCRUNTIME140
[2019-04-20 09:01:46.292] [error] 5# RtlCaptureContext in ntdll
[2019-04-20 09:01:46.292] [error] 6# 0x00007FF67CBA810B in casparcg
[2019-04-20 09:01:46.292] [error] 7# 0x00007FF67CA62438 in casparcg
[2019-04-20 09:01:46.292] [error] 8# 0x00007FF67CADDF5F in casparcg
[2019-04-20 09:01:46.292] [error] 9# 0x00007FF67CADB0E0 in casparcg
[2019-04-20 09:01:46.292] [error] 10# 0x00007FF67C9F45C9 in casparcg
[2019-04-20 09:01:46.292] [error] 11# o_exp in ucrtbase
[2019-04-20 09:01:46.292] [error] 12# BaseThreadInitThunk in KERNEL32
[2019-04-20 09:01:46.292] [error] 13# RtlUserThreadStart in ntdll
[2019-04-20 09:01:46.292] [error]
[2019-04-20 09:01:46.500] [error] Failed to execute command: CLS
[2019-04-20 09:01:46.500] [info] Sent message to 127.0.0.1:501 CLS FAILED\r\n
[2019-04-20 09:01:46.508] [info] Sent message to 127.0.0.1:200 TLS OK\r\nBASIC-TEMPLATE\r\nDEBUG-TEMPLATE\r\nLOWER-THIRDS-RESPONSIVE\r\nSTATION-BUG\r\n\r\n
[2019-04-20 09:01:46.508] [info] Sent message to 127.0.0.1:200 DATA LIST OK\r\n\r\n
[2019-04-20 09:01:46.513] [error] Exception: C:\Program Files (x86)\Jenkins\workspace\casparcg-server-dep\2.2.x\src\protocol\util\http_request.cpp(71): Throw in function struct caspar::http::HTTPResponse __cdecl caspar::http::request(const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &,const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &,const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &)
[2019-04-20 09:01:46.513] [error] Dynamic exception type: class boost::exception_detail::clone_impl<struct caspar::io_error>
[2019-04-20 09:01:46.513] [error] [struct caspar::tag_msg_info * __ptr64] = Invalid Response
[2019-04-20 09:01:46.513] [error] [struct caspar::tag_stacktrace_info * __ptr64] = 0# 0x00007FF67C9F98AE in casparcg
[2019-04-20 09:01:46.513] [error] 1# 0x00007FF67CA28C50 in casparcg
[2019-04-20 09:01:46.513] [error] 2# 0x00007FF67CBB149E in casparcg
[2019-04-20 09:01:46.513] [error] 3# 0x00007FF67CB6F09B in casparcg
[2019-04-20 09:01:46.513] [error] 4# 0x00007FF67CB81AF6 in casparcg
[2019-04-20 09:01:46.513] [error] 5# 0x00007FF67CB5DAAC in casparcg
[2019-04-20 09:01:46.513] [error] 6# 0x00007FF67CBA90FD in casparcg
[2019-04-20 09:01:46.513] [error] 7# 0x00007FF67CBA810B in casparcg
[2019-04-20 09:01:46.513] [error] 8# 0x00007FF67CA62438 in casparcg
[2019-04-20 09:01:46.513] [error] 9# 0x00007FF67CADDF5F in casparcg
[2019-04-20 09:01:46.513] [error] 10# 0x00007FF67CADB0E0 in casparcg
[2019-04-20 09:01:46.513] [error] 11# 0x00007FF67C9F45C9 in casparcg
[2019-04-20 09:01:46.513] [error] 12# o_exp in ucrtbase
[2019-04-20 09:01:46.513] [error] 13# BaseThreadInitThunk in KERNEL32
[2019-04-20 09:01:46.513] [error] 14# RtlUserThreadStart in ntdll
[2019-04-20 09:01:46.513] [error]
[2019-04-20 09:01:46.513] [error]
[2019-04-20 09:01:46.513] [error] 0# 0x00007FF67C9F98AE in casparcg
[2019-04-20 09:01:46.513] [error] 1# 0x00007FF67C9F91DF in casparcg
[2019-04-20 09:01:46.513] [error] 2# 0x00007FF67CF063D7 in casparcg
[2019-04-20 09:01:46.513] [error] 3# _C_specific_handler in VCRUNTIME140
[2019-04-20 09:01:46.513] [error] 4# _TypeMatch in VCRUNTIME140
[2019-04-20 09:01:46.513] [error] 5# RtlCaptureContext in ntdll
[2019-04-20 09:01:46.513] [error] 6# 0x00007FF67CBA810B in casparcg
[2019-04-20 09:01:46.513] [error] 7# 0x00007FF67CA62438 in casparcg
[2019-04-20 09:01:46.513] [error] 8# 0x00007FF67CADDF5F in casparcg
[2019-04-20 09:01:46.513] [error] 9# 0x00007FF67CADB0E0 in casparcg
[2019-04-20 09:01:46.513] [error] 10# 0x00007FF67C9F45C9 in casparcg
[2019-04-20 09:01:46.513] [error] 11# o_exp in ucrtbase
[2019-04-20 09:01:46.513] [error] 12# BaseThreadInitThunk in KERNEL32
[2019-04-20 09:01:46.513] [error] 13# RtlUserThreadStart in ntdll
[2019-04-20 09:01:46.513] [error]
[2019-04-20 09:01:46.610] [error] Failed to execute command: THUMBNAIL LIST
[2019-04-20 09:01:46.610] [info] Sent message to 127.0.0.1:501 THUMBNAIL LIST FAILED\r\n
[2019-04-20 09:01:48.368] [info] async_event_server[:5250] Client 127.0.0.1 disconnected (0 connections).
[2019-04-20 09:01:54.097] [info] async_event_server[:5250] Accepted connection from 127.0.0.1 (1 connections).
[2019-04-20 09:01:54.146] [info] Received message from 127.0.0.1: VERSION SERVER\r\n
[2019-04-20 09:01:54.146] [info] Sent message to 127.0.0.1:201 VERSION OK\r\n2.2.0 66a9e3e2 Stable\r\n
[2019-04-20 09:01:54.149] [info] Received message from 127.0.0.1: INFO\r\n
[2019-04-20 09:01:54.149] [info] Sent message to 127.0.0.1:200 INFO OK\r\n1 1080p5000 PLAYING\r\n2 1080p5000 PLAYING\r\n3 1080p5000 PLAYING\r\n\r\n
[2019-04-20 09:01:54.152] [info] Received message from 127.0.0.1: CLS\r\n
[2019-04-20 09:01:54.155] [info] Received message from 127.0.0.1: TLS\r\n
[2019-04-20 09:01:54.158] [info] Received message from 127.0.0.1: DATA LIST\r\n
[2019-04-20 09:01:54.162] [info] Received message from 127.0.0.1: THUMBNAIL LIST\r\n
[2019-04-20 09:01:54.156] [error] Exception: C:\Program Files (x86)\Jenkins\workspace\casparcg-server-dep\2.2.x\src\protocol\util\http_request.cpp(71): Throw in function struct caspar::http::HTTPResponse __cdecl caspar::http::request(const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &,const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &,const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &)
[2019-04-20 09:01:54.156] [error] Dynamic exception type: class boost::exception_detail::clone_impl<struct caspar::io_error>
[2019-04-20 09:01:54.156] [error] [struct caspar::tag_msg_info * __ptr64] = Invalid Response
[2019-04-20 09:01:54.156] [error] [struct caspar::tag_stacktrace_info * __ptr64] = 0# 0x00007FF67C9F98AE in casparcg
[2019-04-20 09:01:54.156] [error] 1# 0x00007FF67CA28C50 in casparcg
[2019-04-20 09:01:54.156] [error] 2# 0x00007FF67CBB149E in casparcg
[2019-04-20 09:01:54.156] [error] 3# 0x00007FF67CB6F09B in casparcg
[2019-04-20 09:01:54.156] [error] 4# 0x00007FF67CB64FD6 in casparcg
[2019-04-20 09:01:54.156] [error] 5# 0x00007FF67CB5DAAC in casparcg
[2019-04-20 09:01:54.156] [error] 6# 0x00007FF67CBA90FD in casparcg
[2019-04-20 09:01:54.156] [error] 7# 0x00007FF67CBA810B in casparcg
[2019-04-20 09:01:54.156] [error] 8# 0x00007FF67CA62438 in casparcg
[2019-04-20 09:01:54.156] [error] 9# 0x00007FF67CADDF5F in casparcg
[2019-04-20 09:01:54.156] [error] 10# 0x00007FF67CADB0E0 in casparcg
[2019-04-20 09:01:54.156] [error] 11# 0x00007FF67C9F45C9 in casparcg
[2019-04-20 09:01:54.156] [error] 12# o_exp in ucrtbase
[2019-04-20 09:01:54.156] [error] 13# BaseThreadInitThunk in KERNEL32
[2019-04-20 09:01:54.156] [error] 14# RtlUserThreadStart in ntdll
[2019-04-20 09:01:54.156] [error]
[2019-04-20 09:01:54.156] [error]
[2019-04-20 09:01:54.156] [error] 0# 0x00007FF67C9F98AE in casparcg
[2019-04-20 09:01:54.156] [error] 1# 0x00007FF67C9F91DF in casparcg
[2019-04-20 09:01:54.156] [error] 2# 0x00007FF67CF063D7 in casparcg
[2019-04-20 09:01:54.156] [error] 3# _C_specific_handler in VCRUNTIME140
[2019-04-20 09:01:54.156] [error] 4# _TypeMatch in VCRUNTIME140
[2019-04-20 09:01:54.156] [error] 5# RtlCaptureContext in ntdll
[2019-04-20 09:01:54.156] [error] 6# 0x00007FF67CBA810B in casparcg
[2019-04-20 09:01:54.156] [error] 7# 0x00007FF67CA62438 in casparcg
[2019-04-20 09:01:54.156] [error] 8# 0x00007FF67CADDF5F in casparcg
[2019-04-20 09:01:54.156] [error] 9# 0x00007FF67CADB0E0 in casparcg
[2019-04-20 09:01:54.156] [error] 10# 0x00007FF67C9F45C9 in casparcg
[2019-04-20 09:01:54.156] [error] 11# o_exp in ucrtbase
[2019-04-20 09:01:54.156] [error] 12# BaseThreadInitThunk in KERNEL32
[2019-04-20 09:01:54.156] [error] 13# RtlUserThreadStart in ntdll
[2019-04-20 09:01:54.156] [error]
[2019-04-20 09:01:54.280] [error] Failed to execute command: CLS
[2019-04-20 09:01:54.280] [info] Sent message to 127.0.0.1:501 CLS FAILED\r\n
[2019-04-20 09:01:54.286] [info] Sent message to 127.0.0.1:200 TLS OK\r\nBASIC-TEMPLATE\r\nDEBUG-TEMPLATE\r\nLOWER-THIRDS-RESPONSIVE\r\nSTATION-BUG\r\n\r\n
[2019-04-20 09:01:54.286] [info] Sent message to 127.0.0.1:200 DATA LIST OK\r\n\r\n
[2019-04-20 09:01:54.291] [error] Exception: C:\Program Files (x86)\Jenkins\workspace\casparcg-server-dep\2.2.x\src\protocol\util\http_request.cpp(71): Throw in function struct caspar::http::HTTPResponse __cdecl caspar::http::request(const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &,const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &,const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &)
[2019-04-20 09:01:54.291] [error] Dynamic exception type: class boost::exception_detail::clone_impl<struct caspar::io_error>
[2019-04-20 09:01:54.291] [error] [struct caspar::tag_msg_info * __ptr64] = Invalid Response
[2019-04-20 09:01:54.291] [error] [struct caspar::tag_stacktrace_info * __ptr64] = 0# 0x00007FF67C9F98AE in casparcg
[2019-04-20 09:01:54.291] [error] 1# 0x00007FF67CA28C50 in casparcg
[2019-04-20 09:01:54.291] [error] 2# 0x00007FF67CBB149E in casparcg
[2019-04-20 09:01:54.291] [error] 3# 0x00007FF67CB6F09B in casparcg
[2019-04-20 09:01:54.291] [error] 4# 0x00007FF67CB81AF6 in casparcg
[2019-04-20 09:01:54.291] [error] 5# 0x00007FF67CB5DAAC in casparcg
[2019-04-20 09:01:54.291] [error] 6# 0x00007FF67CBA90FD in casparcg
[2019-04-20 09:01:54.291] [error] 7# 0x00007FF67CBA810B in casparcg
[2019-04-20 09:01:54.291] [error] 8# 0x00007FF67CA62438 in casparcg
[2019-04-20 09:01:54.291] [error] 9# 0x00007FF67CADDF5F in casparcg
[2019-04-20 09:01:54.291] [error] 10# 0x00007FF67CADB0E0 in casparcg
[2019-04-20 09:01:54.291] [error] 11# 0x00007FF67C9F45C9 in casparcg
[2019-04-20 09:01:54.291] [error] 12# o_exp in ucrtbase
[2019-04-20 09:01:54.291] [error] 13# BaseThreadInitThunk in KERNEL32
[2019-04-20 09:01:54.291] [error] 14# RtlUserThreadStart in ntdll
[2019-04-20 09:01:54.291] [error]
[2019-04-20 09:01:54.291] [error]
[2019-04-20 09:01:54.291] [error] 0# 0x00007FF67C9F98AE in casparcg
[2019-04-20 09:01:54.291] [error] 1# 0x00007FF67C9F91DF in casparcg
[2019-04-20 09:01:54.291] [error] 2# 0x00007FF67CF063D7 in casparcg
[2019-04-20 09:01:54.291] [error] 3# _C_specific_handler in VCRUNTIME140
[2019-04-20 09:01:54.291] [error] 4# _TypeMatch in VCRUNTIME140
[2019-04-20 09:01:54.291] [error] 5# RtlCaptureContext in ntdll
[2019-04-20 09:01:54.291] [error] 6# 0x00007FF67CBA810B in casparcg
[2019-04-20 09:01:54.291] [error] 7# 0x00007FF67CA62438 in casparcg
[2019-04-20 09:01:54.291] [error] 8# 0x00007FF67CADDF5F in casparcg
[2019-04-20 09:01:54.291] [error] 9# 0x00007FF67CADB0E0 in casparcg
[2019-04-20 09:01:54.291] [error] 10# 0x00007FF67C9F45C9 in casparcg
[2019-04-20 09:01:54.291] [error] 11# o_exp in ucrtbase
[2019-04-20 09:01:54.291] [error] 12# BaseThreadInitThunk in KERNEL32
[2019-04-20 09:01:54.291] [error] 13# RtlUserThreadStart in ntdll
[2019-04-20 09:01:54.291] [error]
[2019-04-20 09:01:54.400] [error] Failed to execute command: THUMBNAIL LIST
[2019-04-20 09:01:54.400] [info] Sent message to 127.0.0.1:501 THUMBNAIL LIST FAILED\r\n
[2019-04-20 09:02:09.952] [info] Received message from 127.0.0.1: PLAY 1-10 "AMB" CUT 1 Linear RIGHT\r\n
[2019-04-20 09:02:09.954] [error] Turn on log level debug for stacktrace.
[2019-04-20 09:02:09.955] [info] Sent message to 127.0.0.1:404 PLAY FAILED\r\n
[2019-04-20 09:02:23.048] [info] Received message from 127.0.0.1: PLAY 2-10 "AMB" CUT 1 Linear RIGHT\r\n
[2019-04-20 09:02:23.050] [error] Turn on log level debug for stacktrace.
[2019-04-20 09:02:23.050] [info] Sent message to 127.0.0.1:404 PLAY FAILED\r\n
[2019-04-20 09:02:57.241] [info] Received message from 127.0.0.1: PLAY 2-10 "AMB" CUT 1 Linear RIGHT\r\n
[2019-04-20 09:02:57.242] [error] Turn on log level debug for stacktrace.
[2019-04-20 09:02:57.242] [info] Sent message to 127.0.0.1:404 PLAY FAILED\r\n
[2019-04-20 09:03:16.952] [info] Received message from 127.0.0.1: STOP 3-10\r\n
[2019-04-20 09:03:16.952] [info] Sent message to 127.0.0.1:202 STOP OK\r\n
[2019-04-20 09:03:36.040] [info] Received message from 127.0.0.1: LOADBG 3-10 "AMB" CUT 1 Linear RIGHT\r\n
[2019-04-20 09:03:36.042] [error] Turn on log level debug for stacktrace.
[2019-04-20 09:03:36.042] [info] Sent message to 127.0.0.1:404 LOADBG FAILED\r\n
[2019-04-20 09:03:41.384] [info] Received message from 127.0.0.1: PLAY 3-10\r\n
[2019-04-20 09:03:41.384] [info] Sent message to 127.0.0.1:202 PLAY OK\r\n
[2019-04-20 09:04:03.792] [info] async_event_server[:5250] Client 127.0.0.1 disconnected (0 connections).
Looks like the Duo 2 doesn’t support 50p for keying. You can open up “Blackmagic LiveKey” and see what’s supported there. Could also change all the channels in Desktop video setup to individual channels and test running the key+fill as external_separate_device.
Chumby
April 20, 2019, 1:26am
8
Thanks hreinnbeck,
Strange, when I run NRK 2.1.0 with the config fle posted I can get playout and key+fill and 1080 50 despite the warning. See NRK logfile below.
I will look for that LiveKey software and take a look.
For your last tet - can you explain that a little more. How would my config file look now? Apologies for my lack of knowledge here.
[2019-04-20 11:18:12.059] [13040] [info] ############################################################################
[2019-04-20 11:18:12.060] [13040] [info] CasparCG Server is distributed by the Swedish Broadcasting Corporation (SVT)
[2019-04-20 11:18:12.060] [13040] [info] under the GNU General Public License GPLv3 or higher.
[2019-04-20 11:18:12.060] [13040] [info] Please see LICENSE.TXT for details.
[2019-04-20 11:18:12.060] [13040] [info] http://www.casparcg.com/
[2019-04-20 11:18:12.060] [13040] [info] ############################################################################
[2019-04-20 11:18:12.060] [13040] [info] Starting CasparCG Video and Graphics Playout Server 2.1.0.11968 bf1dd177a NRK
[2019-04-20 11:18:12.060] [13040] [info] on Windows 10 Pro
[2019-04-20 11:18:12.060] [13040] [info] Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz Physical Threads: 8
[2019-04-20 11:18:12.060] [13040] [info] Veriton M6630G
[2019-04-20 11:18:12.061] [13040] [info] Initialized reroute module.
[2019-04-20 11:18:12.063] [13040] [info] Initialized ffmpeg module.
[2019-04-20 11:18:12.063] [13040] [info] Initialized oal module.
[2019-04-20 11:18:13.075] [13040] [info] Initialized bluefish module.
[2019-04-20 11:18:13.075] [13040] [info] Initialized decklink module.
[2019-04-20 11:18:13.076] [13040] [info] Initialized screen module.
[2019-04-20 11:18:13.201] [13040] [info] Initialized html module.
[2019-04-20 11:18:13.202] [13040] [info] Initialized psd module.
[2019-04-20 11:18:13.954] [13040] [info] Initialized flash module.
[2019-04-20 11:18:13.954] [13040] [info] Initialized newtek module.
[2019-04-20 11:18:13.954] [13040] [info] Initialized image module.
[2019-04-20 11:18:14.013] [13040] [info] ffmpeg.avcodec 58.11.101
[2019-04-20 11:18:14.013] [13040] [info] ffmpeg.avformat 58.9.100
[2019-04-20 11:18:14.013] [13040] [info] ffmpeg.avfilter 7.12.100
[2019-04-20 11:18:14.013] [13040] [info] ffmpeg.avutil 56.7.101
[2019-04-20 11:18:14.013] [13040] [info] ffmpeg.swscale 5.0.101
[2019-04-20 11:18:14.013] [13040] [info] bluefish.version Not found
[2019-04-20 11:18:14.013] [13040] [info] decklink.version 10.10
[2019-04-20 11:18:14.014] [13040] [info] decklink.device DeckLink Duo 2 [1]
[2019-04-20 11:18:14.014] [13040] [info] decklink.device DeckLink Duo 2 [2]
[2019-04-20 11:18:14.014] [13040] [info] decklink.device DeckLink Duo 2 [3]
[2019-04-20 11:18:14.014] [13040] [info] decklink.device DeckLink Duo 2 [4]
[2019-04-20 11:18:14.014] [13040] [info] cef.version 3.3239.1705
[2019-04-20 11:18:14.014] [13040] [info] cef.chromeversion 63.0.3239.109
[2019-04-20 11:18:14.014] [13040] [info] flash $(build.FlashMajorVersion).$(build.FlashMinorVersion).$(build.FlashBuildVersion).$(build.FlashPrivateVersion)
[2019-04-20 11:18:14.014] [13040] [info] newtek-ivga.version unavailable (Processing.AirSend.x64.dll)
[2019-04-20 11:18:14.014] [13040] [info] freeimage 3.16.0
[2019-04-20 11:18:14.014] [13040] [info] casparcg.config:
[2019-04-20 11:18:14.014] [13040] [info] -----------------------------------------
[2019-04-20 11:18:14.014] [13040] [info] <?xml version="1.0" encoding="utf-8"?>
[2019-04-20 11:18:14.014] [13040] [info] <configuration>
[2019-04-20 11:18:14.014] [13040] [info] <paths>
[2019-04-20 11:18:14.014] [13040] [info] <media-path>media/</media-path>
[2019-04-20 11:18:14.014] [13040] [info] <log-path>log/</log-path>
[2019-04-20 11:18:14.014] [13040] [info] <data-path>data/</data-path>
[2019-04-20 11:18:14.014] [13040] [info] <template-path>template/</template-path>
[2019-04-20 11:18:14.014] [13040] [info] <thumbnail-path>thumbnail/</thumbnail-path>
[2019-04-20 11:18:14.014] [13040] [info] <font-path>font/</font-path>
[2019-04-20 11:18:14.014] [13040] [info] </paths>
[2019-04-20 11:18:14.014] [13040] [info] <lock-clear-phrase>secret</lock-clear-phrase>
[2019-04-20 11:18:14.014] [13040] [info] <mixer>
[2019-04-20 11:18:14.014] [13040] [info] <straight-alpha>false</straight-alpha>
[2019-04-20 11:18:14.014] [13040] [info] </mixer>
[2019-04-20 11:18:14.014] [13040] [info] <thumbnails>
[2019-04-20 11:18:14.014] [13040] [info] <generate-thumbnails>false</generate-thumbnails>
[2019-04-20 11:18:14.014] [13040] [info] </thumbnails>
[2019-04-20 11:18:14.014] [13040] [info] <accelerator>auto</accelerator>
[2019-04-20 11:18:14.014] [13040] [info] <channels>
[2019-04-20 11:18:14.014] [13040] [info] <channel>
[2019-04-20 11:18:14.014] [13040] [info] <video-mode>1080p5000</video-mode>
[2019-04-20 11:18:14.014] [13040] [info] <straight-alpha-output>true</straight-alpha-output>
[2019-04-20 11:18:14.014] [13040] [info] <channel-layout>8ch</channel-layout>
[2019-04-20 11:18:14.014] [13040] [info] <consumers>
[2019-04-20 11:18:14.014] [13040] [info] <decklink>
[2019-04-20 11:18:14.014] [13040] [info] <device>1</device>
[2019-04-20 11:18:14.014] [13040] [info] <embedded-audio>true</embedded-audio>
[2019-04-20 11:18:14.014] [13040] [info] <channel-layout>8ch</channel-layout>
[2019-04-20 11:18:14.014] [13040] [info] <latency>low</latency>
[2019-04-20 11:18:14.014] [13040] [info] <keyer>external</keyer>
[2019-04-20 11:18:14.014] [13040] [info] <key-only>false</key-only>
[2019-04-20 11:18:14.014] [13040] [info] <buffer-depth>3</buffer-depth>
[2019-04-20 11:18:14.014] [13040] [info] <custom-allocator>true</custom-allocator>
[2019-04-20 11:18:14.014] [13040] [info] </decklink>
[2019-04-20 11:18:14.014] [13040] [info] </consumers>
[2019-04-20 11:18:14.014] [13040] [info] </channel>
[2019-04-20 11:18:14.014] [13040] [info] <channel>
[2019-04-20 11:18:14.014] [13040] [info] <video-mode>1080p5000</video-mode>
[2019-04-20 11:18:14.014] [13040] [info] <straight-alpha-output>true</straight-alpha-output>
[2019-04-20 11:18:14.014] [13040] [info] <channel-layout>8ch</channel-layout>
[2019-04-20 11:18:14.014] [13040] [info] <consumers>
[2019-04-20 11:18:14.014] [13040] [info] <decklink>
[2019-04-20 11:18:14.014] [13040] [info] <device>2</device>
[2019-04-20 11:18:14.014] [13040] [info] <embedded-audio>true</embedded-audio>
[2019-04-20 11:18:14.014] [13040] [info] <channel-layout>8ch</channel-layout>
[2019-04-20 11:18:14.014] [13040] [info] <latency>low</latency>
[2019-04-20 11:18:14.014] [13040] [info] <keyer>default</keyer>
[2019-04-20 11:18:14.014] [13040] [info] <key-only>false</key-only>
[2019-04-20 11:18:14.014] [13040] [info] <buffer-depth>3</buffer-depth>
[2019-04-20 11:18:14.014] [13040] [info] <custom-allocator>true</custom-allocator>
[2019-04-20 11:18:14.014] [13040] [info] </decklink>
[2019-04-20 11:18:14.014] [13040] [info] </consumers>
[2019-04-20 11:18:14.014] [13040] [info] </channel>
[2019-04-20 11:18:14.014] [13040] [info] <channel>
[2019-04-20 11:18:14.014] [13040] [info] <video-mode>1080p5000</video-mode>
[2019-04-20 11:18:14.014] [13040] [info] <straight-alpha-output>true</straight-alpha-output>
[2019-04-20 11:18:14.014] [13040] [info] <channel-layout>8ch</channel-layout>
[2019-04-20 11:18:14.014] [13040] [info] <consumers>
[2019-04-20 11:18:14.014] [13040] [info] <decklink>
[2019-04-20 11:18:14.014] [13040] [info] <device>4</device>
[2019-04-20 11:18:14.014] [13040] [info] <embedded-audio>true</embedded-audio>
[2019-04-20 11:18:14.014] [13040] [info] <channel-layout>8ch</channel-layout>
[2019-04-20 11:18:14.014] [13040] [info] <latency>low</latency>
[2019-04-20 11:18:14.014] [13040] [info] <keyer>default</keyer>
[2019-04-20 11:18:14.014] [13040] [info] <key-only>false</key-only>
[2019-04-20 11:18:14.014] [13040] [info] <buffer-depth>3</buffer-depth>
[2019-04-20 11:18:14.014] [13040] [info] <custom-allocator>true</custom-allocator>
[2019-04-20 11:18:14.014] [13040] [info] </decklink>
[2019-04-20 11:18:14.014] [13040] [info] </consumers>
[2019-04-20 11:18:14.014] [13040] [info] </channel>
[2019-04-20 11:18:14.014] [13040] [info] </channels>
[2019-04-20 11:18:14.014] [13040] [info] <audio>
[2019-04-20 11:18:14.014] [13040] [info] <channel-layouts>
[2019-04-20 11:18:14.014] [13040] [info] <channel-layout name="8ch" type="8ch" num-channels="8"/>
[2019-04-20 11:18:14.014] [13040] [info] </channel-layouts>
[2019-04-20 11:18:14.014] [13040] [info] </audio>
[2019-04-20 11:18:14.014] [13040] [info] <controllers>
[2019-04-20 11:18:14.014] [13040] [info] <tcp>
[2019-04-20 11:18:14.014] [13040] [info] <port>5250</port>
[2019-04-20 11:18:14.014] [13040] [info] <protocol>AMCP</protocol>
[2019-04-20 11:18:14.014] [13040] [info] </tcp>
[2019-04-20 11:18:14.014] [13040] [info] <tcp>
[2019-04-20 11:18:14.014] [13040] [info] <port>3250</port>
[2019-04-20 11:18:14.014] [13040] [info] <protocol>LOG</protocol>
[2019-04-20 11:18:14.014] [13040] [info] </tcp>
[2019-04-20 11:18:14.014] [13040] [info] </controllers>
[2019-04-20 11:18:14.014] [13040] [info] </configuration>
[2019-04-20 11:18:14.014] [13040] [info] -----------------------------------------
[2019-04-20 11:18:14.015] [13040] [info] Initialized audio config.
[2019-04-20 11:18:14.015] [13040] [info] Initializing OpenGL Device.
[2019-04-20 11:18:14.797] [13040] [info] Successfully initialized OpenGL 4.6.0 NVIDIA 425.31 NVIDIA Corporation
[2019-04-20 11:18:14.802] [13040] [info] Initialized OpenGL Accelerated GPU Image Mixer for channel 1
[2019-04-20 11:18:14.803] [13040] [info] video_channel[1|1080p5000] Successfully Initialized.
[2019-04-20 11:18:14.803] [13040] [info] Initialized OpenGL Accelerated GPU Image Mixer for channel 2
[2019-04-20 11:18:14.804] [13040] [info] video_channel[2|1080p5000] Successfully Initialized.
[2019-04-20 11:18:14.804] [13040] [info] Initialized OpenGL Accelerated GPU Image Mixer for channel 3
[2019-04-20 11:18:14.805] [13040] [info] video_channel[3|1080p5000] Successfully Initialized.
[2019-04-20 11:18:14.824] [2400] [warning] Device does not support video-format: 1080p50
[2019-04-20 11:18:14.825] [2400] [info] DeckLink Duo 2 [1-1|1080p5000] Enabled embedded-audio.
[2019-04-20 11:18:14.825] [2400] [info] DeckLink Duo 2 [1-1|1080p5000] Enabled low-latency mode.
[2019-04-20 11:18:14.825] [2400] [info] DeckLink Duo 2 [1-1|1080p5000] Enabled external keyer.
[2019-04-20 11:18:14.849] [13040] [info] DeckLink Duo 2 [1-1|1080p5000] Initialized.
[2019-04-20 11:18:14.877] [6656] [warning] Device does not support video-format: 1080p50
[2019-04-20 11:18:14.877] [6656] [info] DeckLink Duo 2 [2-2|1080p5000] Enabled embedded-audio.
[2019-04-20 11:18:14.877] [6656] [info] DeckLink Duo 2 [2-2|1080p5000] Enabled low-latency mode.
[2019-04-20 11:18:14.877] [6656] [error] DeckLink Duo 2 [2-2|1080p5000] Failed to enable external keyer.
[2019-04-20 11:18:14.877] [4176] [info] DeckLink Duo 2 [1-1|1080p5000] Reference signal: not detected.
[2019-04-20 11:18:14.915] [13040] [info] DeckLink Duo 2 [2-2|1080p5000] Initialized.
[2019-04-20 11:18:14.940] [13816] [info] DeckLink Duo 2 [2-2|1080p5000] Reference signal: not detected.
[2019-04-20 11:18:14.967] [9788] [warning] Device does not support video-format: 1080p50
[2019-04-20 11:18:14.967] [9788] [info] DeckLink Duo 2 [3-4|1080p5000] Enabled embedded-audio.
[2019-04-20 11:18:14.967] [9788] [info] DeckLink Duo 2 [3-4|1080p5000] Enabled low-latency mode.
[2019-04-20 11:18:14.967] [9788] [error] DeckLink Duo 2 [3-4|1080p5000] Failed to enable external keyer.
[2019-04-20 11:18:15.005] [13040] [info] DeckLink Duo 2 [3-4|1080p5000] Initialized.
[2019-04-20 11:18:15.005] [13040] [info] Initialized channels.
[2019-04-20 11:18:15.005] [13040] [info] Initialized thumbnail generator.
[2019-04-20 11:18:15.006] [13040] [info] Initialized command repository.
[2019-04-20 11:18:15.006] [13040] [info] timecode[1] - Set to freerun
[2019-04-20 11:18:15.006] [13040] [info] timecode[2] - Set to freerun
[2019-04-20 11:18:15.006] [13040] [info] timecode[3] - Set to freerun
[2019-04-20 11:18:15.006] [13040] [info] Initialized channel predefined producers.
[2019-04-20 11:18:15.007] [13040] [info] Initialized controllers.
[2019-04-20 11:18:15.007] [13040] [info] Initialized osc.
[2019-04-20 11:18:15.008] [13040] [info] Started initial media information retrieval.
[2019-04-20 11:18:15.039] [9048] [info] DeckLink Duo 2 [3-4|1080p5000] Reference signal: not detected.
[2019-04-20 11:18:15.629] [5720] [info] Initial media information retrieval finished.
[2019-04-20 11:19:22.555] [8032] [info] async_event_server[:5250] Accepted connection from 127.0.0.1 (1 connections).
[2019-04-20 11:19:22.602] [8032] [info] Received message from 127.0.0.1: VERSION SERVER\r\n
[2019-04-20 11:19:22.603] [11620] [info] Sent message to 127.0.0.1:201 VERSION OK\r\n2.1.0.11968 bf1dd177a NRK\r\n
[2019-04-20 11:19:22.606] [8032] [info] Received message from 127.0.0.1: INFO\r\n
[2019-04-20 11:19:22.606] [11620] [info] Sent message to 127.0.0.1:200 INFO OK\r\n1 1080p5000 PLAYING\r\n2 1080p5000 PLAYING\r\n3 1080p5000 PLAYING\r\n\r\n
[2019-04-20 11:19:22.609] [8032] [info] Received message from 127.0.0.1: CLS\r\n
[2019-04-20 11:19:22.617] [8032] [info] Received message from 127.0.0.1: TLS\r\n
[2019-04-20 11:19:22.620] [8032] [info] Received message from 127.0.0.1: DATA LIST\r\n
[2019-04-20 11:19:22.628] [8032] [info] Received message from 127.0.0.1: THUMBNAIL LIST\r\n
[2019-04-20 11:19:22.642] [11620] [info] Sent more than 512 bytes to 127.0.0.1
[2019-04-20 11:19:22.672] [11620] [info] Sent more than 512 bytes to 127.0.0.1
[2019-04-20 11:19:22.672] [11620] [info] Sent message to 127.0.0.1:200 DATA LIST OK\r\n\r\n
[2019-04-20 11:19:22.673] [11620] [info] Sent message to 127.0.0.1:200 THUMBNAIL LIST OK\r\n\r\n
[2019-04-20 11:19:37.511] [8032] [info] Received message from 127.0.0.1: PLAY 3-10 "AMB" CUT 1 Linear RIGHT\r\n
[2019-04-20 11:19:37.536] [1220] [info] ffmpeg[AMB.mp4|1920x1080p25.00|0/268] [video-decoder] H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
[2019-04-20 11:19:37.539] [1220] [info] transition[empty=>ffmpeg[AMB.mp4|1920x1080p25.00|0/268]] Initialized
[2019-04-20 11:19:37.539] [11620] [info] Sent message to 127.0.0.1:202 PLAY OK\r\n
[2019-04-20 11:19:37.598] [12664] [info] [frame_muxer] simple 1920x1080p25.00
[2019-04-20 11:19:52.690] [8032] [info] async_event_server[:5250] Client 127.0.0.1 disconnected (0 connections).
I think the other errors suggest that scanner.exe wasn’t running before casparcg.exe. Personally I use the NRK fork.
Chumby
April 20, 2019, 1:45am
10
OK, thanks for that. I will keep playing. Perhaps sticking with NRK is the easiest way to go?
Was keen to give 2.2 a go after the “Chrome version” advice as per:
or do you think the newer version of Chrome is only needed for really specific cases and I could get away with nornal templates through NRK 2,1?
Cheers
Chumby
NRK fork is CEF 63.0.3239.109 so not very different from 2.2. You should just stick with it.
Chumby
April 20, 2019, 2:00am
12
Thanks hreinnbeck,
Think I will do - spent too long trying to get 2.2 working
Very much appreciate your help.
Cheers
Chumby
Aha, I completely missed, that you try to run in 1080p. Decklink Duo 2 does not support this resolution. I also not use 2.2 and think the NRK fork is the better way to go, until 2.3 comes out.
Chumby
April 20, 2019, 6:35am
14
OK thanks, Didikunz, yep going to stick with NRK fork for now.
Am confused though - my understanding was that Decklink Duo 2 did support 1080p50? Will check - https://www.blackmagicdesign.com/au/products/decklink/techspecs/W-DLK-31
I am trying to run some zCam e1 camera’s into a ATEM HD studio and put on some sinple overlays with CasperCG.
Appreciate your help as always,
Cheers
Chumby
You are right, I should have looked at the specs…