array( _("About Oreka"), array( "difference" => array( _("What is the difference between this software and other open source audio recording software?"), _("

Oreka is specifically designed for recording of lots of audio sessions such as telephone calls and easy retrieval through a web interface. Existing software such as Audacity or Ardour focus on different things such as audio edition and studio quality recording respectively.

") ), "threedifferent" => array( _("Why is the system broken up in three services ? Would it not have been easier to implement everything in one service?"), _("

This allows for greater flexibility and scalability. It means for example that it's possible to gather and log data from multiple OrkAudio recorders to one central database.

") ), "separately" => array( _("Is it possible to use the different components (OrkAudio, OrkTrack and OrkWeb) separately?"), _("

Yes. For example it is possible to use OrkAudio as a standalone audio recording and compression tool. No user interface is available but audio files and metadata are generated as described in Oreka documentation.

") ), ), ), ); if ($faqSectionId != "" && $itemId != "") { // Print the requested item. $item = $faqSections[$faqSectionId][1][$itemId]; $question = $item[0]; $answer = $item[1]; $pageTitle = $question; include "../include/header.inc.php"; echo "

$question

"; echo $answer; echo "

"._("Other frequently asked questions...")."

"; } else { // Print the list of sections and questions. $pageTitle = _("Frequently Asked Questions"); include "../include/header.inc.php"; echo "

$pageTitle

"; echo "

"._('These are frequently asked questions about Oreka. If you cannot find what you are looking for here, see the documentation, or ask on the Oreka mailing lists')."

"; foreach ($faqSections as $faqSectionId => $section) { $sectionTitle = $section[0]; $sectionItems = $section[1]; echo "

$sectionTitle

"; echo "
    "; foreach ($sectionItems as $itemId => $item) { $question = $item[0]; $answer = $item[1]; echo "
  1. $question
  2. "; } echo "
"; } } include "../include/footer.inc.php"; ?>