FGCom (before 3.0)

From FlightGear wiki
Revision as of 15:02, 22 November 2007 by Willie (talk | contribs) (→‎FGCOM)
Jump to navigation Jump to search

FGCOM

FGCOM is an addon for Flightgear. With FGCOM (and the infrastructure behind) Flightgear gets a realtime voice communication system.

The original documentation is at [1]


VERY IMPORTANT!!!

22. November 2007:

Due to heavy development at this time there may be some differences between the information on the web pages and the installation. Please follow the discussions on the FlightGear development list!


The Quick 3 Steps to get FGCOM running on a Linux system


1.) fetch fgcom (a copy of a working iaxclient is inside)

svn checkout svn://svn.dfn.de:/fgcom

Optional: edit iaxclient/lib/Makefile

To use oss emulation (recommended and the default for now)

USE_PA_OSS=1 USE_PA_ALSA=0 USE_PA_JACK=0 AUDIO_ALSA=0

To use native alsa (WARNING: PTT won't work)

USE_PA_OSS=0 USE_PA_ALSA=0 USE_PA_JACK=0 AUDIO_ALSA=1

To use portaudio alsa (WARNING: only if your card natively supports 8000Hz sample rate)

USE_PA_OSS=0 USE_PA_ALSA=1 USE_PA_JACK=0 AUDIO_ALSA=0

2.) Compile iaxclient and fgcom. To do so, do the following:

cd fgcom/src && make

3.) Install

make install