Hi everyone,
I’m using the old version of the server as I need to interact actively with the HTML files i use.
However, I hadn’t found how to output audio from the server. I use Voicemeeter and its virtual in, and I only need a stereo output; the Windows system outputs are set correctly as in the last version of the server the audio outputs correctly into the system. My main suspect is the config file not set up properly, but I don’t know where is the problem, as I am a newbie on this software.
I’m using Server 2.1.0 Beta 2 on Windows as is the only version I found on the repo that still supported interacting with HTMLs.
I have to clarify that when I give the play command to the audio file, even on the meters of the client it doesn’t show up nothing.
My config file is as it follows:
<?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>
<thumbnail-path>thumbnail/</thumbnail-path>
<font-path>font/</font-path>
</paths>
<lock-clear-phrase>secret</lock-clear-phrase>
<channels>
<channel>
<video-mode>1080p6000</video-mode>
<channel-layout>stereo</channel-layout>
<consumers>
<screen>
<device>1</device>
<windowed>false</windowed>
<borderless>true</borderless>
<stretch>none</stretch>
<aspect-ratio>16:9</aspect-ratio>
</screen>
<system-audio>
<channel-layout>stereo</channel-layout>
<latency>200</latency>
</system-audio>
</consumers>
</channel>
</channels>
<controllers>
<tcp>
<port>5250</port>
<protocol>AMCP</protocol>
</tcp>
<tcp>
<port>3250</port>
<protocol>LOG</protocol>
</tcp>
</controllers>
<audio>
<channel-layouts>
<channel-layout name="mono" type="mono" num-channels="1" channel-order="FC" />
<channel-layout name="stereo" type="stereo" num-channels="2" channel-order="FL FR" />
<channel-layout name="matrix" type="matrix" num-channels="2" channel-order="ML MR" />
<channel-layout name="film" type="5.1" num-channels="6" channel-order="FL FC FR BL BR LFE" />
<channel-layout name="smpte" type="5.1" num-channels="6" channel-order="FL FR FC LFE BL BR" />
<channel-layout name="ebu_r123_8a" type="5.1+downmix" num-channels="8" channel-order="DL DR FL FR FC LFE BL BR" />
<channel-layout name="ebu_r123_8b" type="5.1+downmix" num-channels="8" channel-order="FL FR FC LFE BL BR DL DR" />
<channel-layout name="8ch" type="8ch" num-channels="8" />
<channel-layout name="16ch" type="16ch" num-channels="16" />
</channel-layouts>
<mix-configs>
<mix-config from-type="mono" to-types="stereo, 5.1" mix="FL = FC | FR = FC" />
<mix-config from-type="mono" to-types="5.1+downmix" mix="FL = FC | FR = FC | DL = FC | DR = FC" />
<mix-config from-type="mono" to-types="matrix" mix="ML = FC | MR = FC" />
<mix-config from-type="stereo" to-types="mono" mix="FC < FL + FR" />
<mix-config from-type="stereo" to-types="matrix" mix="ML = FL | MR = FR" />
<mix-config from-type="stereo" to-types="5.1" mix="FL = FL | FR = FR" />
<mix-config from-type="stereo" to-types="5.1+downmix" mix="FL = FL | FR = FR | DL = FL | DR = FR" />
<mix-config from-type="5.1" to-types="mono" mix="FC < FL + FR + 0.707*FC + 0.707*BL + 0.707*BR" />
<mix-config from-type="5.1" to-types="stereo" mix="FL < FL + 0.707*FC + 0.707*BL | FR < FR + 0.707*FC + 0.707*BR" />
<mix-config from-type="5.1" to-types="5.1+downmix" mix="FL = FL | FR = FR | FC = FC | BL = BL | BR = BR | LFE = LFE | DL < FL + 0.707*FC + 0.707*BL | DR < FR + 0.707*FC + 0.707*BR" />
<mix-config from-type="5.1" to-types="matrix" mix="ML = 0.3204*FL + 0.293*FC + -0.293*BL + -0.293*BR | MR = 0.3204*FR + 0.293*FC + 0.293*BL + 0.293*BR" />
<mix-config from-type="5.1+stereomix" to-types="mono" mix="FC < DL + DR" />
<mix-config from-type="5.1+stereomix" to-types="stereo" mix="FL = DL | FR = DR" />
<mix-config from-type="5.1+stereomix" to-types="5.1" mix="FL = FL | FR = FR | FC = FC | BL = BL | BR = BR | LFE = LFE" />
<mix-config from-type="5.1+stereomix" to-types="matrix" mix="ML = 0.3204*FL + 0.293*FC + -0.293*BL + -0.293*BR | MR = 0.3204*FR + 0.293*FC + 0.293*BL + 0.293*BR" />
</mix-configs>
</audio>
</configuration>
Is anyone able to help me with this?
Thanks in avance,
Daniele