2017-01-30 16:45:01 +01:00
# Fenrir
2016-10-01 22:36:53 -08:00
An TTY screenreader for Linux.
2017-01-25 01:10:10 +01:00
In theorie its not limited to linux. but i currently only provide drivers for that because I do not have an ohter system here. If you want to help or write drivers to make it work on other systems, just let me know.
2016-12-30 19:54:27 +01:00
This software is licensed under the LGPL v3 .
2016-07-05 11:16:34 +02:00
2017-01-30 16:50:22 +01:00
# Requirements (core)
2017-01-30 16:45:01 +01:00
- linux (currently only screen and input drivers available for that)
- python3 >= 3.3
2017-01-30 16:50:07 +01:00
- screen, input, speech, sound or braille drivers see "Features, Drivers, Extras".
2016-07-07 14:37:10 +02:00
2017-01-30 16:50:07 +01:00
# Features, Drivers, Extras
2017-01-30 16:46:33 +01:00
# Input Drivers:
2017-01-30 16:45:01 +01:00
- "evdevDriver" input driver for linux evdev
- python-evdev
- loaded uinput kernel module
- ReadWrite permission
- /dev/input
- /dev/uinput
2017-01-30 16:47:13 +01:00
2017-01-30 16:46:33 +01:00
# Screen Drivers:
2017-01-30 16:45:01 +01:00
- "vcsaDriver" screen driver for linux VCSA devices
- Read permission to the following files:
- /sys/devices/virtual/tty/tty0/active
- /dev/vcsa[1-64]
2017-01-30 16:47:13 +01:00
2017-01-30 16:46:33 +01:00
# Speech Drivers:
2017-01-30 16:45:01 +01:00
- "espeakDriver" speech driver for espeak:
2016-11-16 11:59:16 +01:00
- python-espeak
2017-01-30 16:45:01 +01:00
- "speechdDriver" speech driver for speech-dispatcher:
2016-11-16 11:59:16 +01:00
- speech-dispatcher
- python-speechd
2017-01-30 16:45:01 +01:00
- "dummyDriver" speech driver for debugging
2017-01-30 16:47:13 +01:00
2017-01-30 16:46:33 +01:00
# Braille Drivers:
2017-01-30 16:45:01 +01:00
- "brlttyDriver" braille driver (WIP):
2016-11-16 11:59:16 +01:00
- brltty (configured and running)
- python-brlapi
2017-01-30 16:45:01 +01:00
- "dummyDriver" braille driver for debugging
2017-01-30 16:47:13 +01:00
2017-01-30 16:46:33 +01:00
# Sound Drivers:
2017-01-30 16:45:01 +01:00
- "genericDriver" sound driver for sound as subprocess:
2016-11-16 11:59:16 +01:00
- sox
2017-01-30 16:45:01 +01:00
- "gstreamerDriver" sound driver for gstreamer
2016-11-16 11:59:16 +01:00
- gstreamer 1.x
- GLib
2017-01-30 16:45:01 +01:00
- "dummyDriver" sound driver for debugging
2017-01-30 16:47:13 +01:00
2017-01-30 16:46:33 +01:00
# Extra:
2016-11-16 11:59:16 +01:00
- spellchecker
- python-pyenchant
- aspell-YourLanguageCode (example aspell-en for us english)
- unix daemon:
- python-daemonize
2016-09-16 11:50:53 +02:00
2016-07-05 11:18:35 +02:00
# installation
2016-11-07 10:49:32 +01:00
- Archlinux: PKGBUILD in AUR
- install.sh (there is currently no uninstall)
- run from git:
You can just run the following as root:
2016-10-02 02:43:31 +02:00
cd src/fenrir-package/
2016-11-07 10:49:32 +01:00
sudo ./fenrir
2016-11-16 11:59:16 +01:00
Settings "settings.conf" is located in the "config" directory.
Take care that the used drivers in the config matching your installed drivers.
By default it uses:
2017-01-30 16:45:01 +01:00
- sound driver: genericDriver (via sox, could configured in settings.conf)
- speech driver: speechdDriver
- braille driver: brlttyDriver (WIP)
- input driver: evdevDriver