Correct audio settings

I´m running KODI on a Nvidia Shield. Recently I changed my audio setup, by purchasing a Monitor Audio ASB-2 soundbar.

The Monitor Audio soundbar only has HDMI 1.4a so I´m running optical:

Nvidia Shield -> HDMI -> Panasonic CX725 -> Optical -> Monitor Audio ASB-2

Audio generally confuses me and I have no idea how the audio signal behaves/changes through my system. So I´m completely lost as to the correct settings.

If anyone could guide me through the most important settings I would greatly appreciate it.

Remote viewing a mac mini from Kodi

Is there an add-on that allows you to remote view a mac mini from kodi? I am getting a mac mini to run Plex Media Server to host Media for 5 Raspberry Pi boxes running OSMC and the new Plex Media add-on. I would also like to be able to view my mac mini...

HOW-TO (AFTV) Install MySQL db server (for Kodi)

Guide to install a MySQL DB server on the AFTV. This setup has been working great to share my Kodi DB between several devices. It may also work for other Android devices, but I haven't tested them. Based on the description found in http://www.thaivisa.com/forum/topic/8093...etv-boxes/
Disclaimer: I have no association with KSWEB. I only purchased their package to make the installation easier.

My setup was done using a rooted AFTV (2nd gen) running v5.2.1.0 (Build 550145120), and Jarvis (SPMC 16.4.2).

Prerequisites:

  • Ensure the AFTV has a fixed IP. You'll need to the IP address, device id (Settings->System->About).
  • You'll also need a mouse and a keyboard, ideally connected to the AFTV via a USB hub
  • Export your Kodi library if you want to import this in MySQL later on (using the Settings menu in Kodi), see also Import-export_library. (wiki) Export to multiple files, no need to export the artwork.
  • Root access is not required

Installation:
  • Download the apk of the KSWEB server suite for sideloading from http://kslabs.ru/ I used v3.62
  • Buy a KSWEB serial key (US$2.99). You'll get an email with the key linked to a Play store account. Then send your device id to them and ask them to link your key to the device.
  • Sideload the KSWEB apk using adblink
  • Start KSWEB and enter the license key in the GUI (you'll need to attach a mouse / keyboard to navigate / enter this)
  • Select Auto Start in the Settings menu to automatically start KSWEB after a reboot. Check that the mysqld is running using an adb shell and commands 'ps | grep mysql', or 'netstat -an | grep 3306'. You should see a process that LISTENs on port 3306
  • Replace the my.ini MySQL config file in /data/data/ru.kslabs.ksweb/components/mysql/conf with this content:
    ## !!!WARNING!!!
    ## Be careful changing this configuration file!
    ## Some changes may result in incorrect function of the program.
    ## Always make backups of configuration files before any changes.
    ## --------------------------------------------------------------
    [client]
    port=3306
    socket=/data/data/ru.kslabs.ksweb/tmp/mysql.sock
    character-sets-dir=/data/data/ru.kslabs.ksweb/components/mysql/sbin/share/charsets/
    [mysql]
    character-set-server=utf8
    [mysqld]
    log-error=/mnt/sdcard/ksweb/log/mysql/mysql.log
    bind-addr=0.0.0.0
    port=3306
    socket=/data/data/ru.kslabs.ksweb/tmp/mysql.sock
    character-sets-dir=/data/data/ru.kslabs.ksweb/components/mysql/sbin/share/charsets/
    basedir="/data/data/ru.kslabs.ksweb/components/mysql/sbin/"

    #begin_datadir (do not remove this label!)
    datadir="/data/data/ru.kslabs.ksweb/components/mysql/sbin/data"
    #end_datadir (do not remove this label!)

    tmpdir ="/data/data/ru.kslabs.ksweb/tmp"
    character-set-server=utf8
    max_allowed_packet = 16M
    performance_schema = off


    #default-storage-engine=myisam
    default_storage_engine=InnoDB

    max_connections=10
    innodb_buffer_pool_size=20M
    innodb_log_buffer_size=2M
    innodb_additional_mem_pool_size=2M
    innodb_ft_cache_size=1600000
    innodb_ft_total_cache_size=32000000
    query_cache_size=1M
    query_cache_type=0
    thread_cache_size=0
    key_buffer_size=1M
    innodb_file_per_table=1
    innodb_log_file_size=5M

    # per thread or per operation settings
    thread_stack=192K
    sort_buffer_size=512K
    read_buffer_size=128K
    read_rnd_buffer_size=256K
    max_heap_table_size=128K
    tmp_table_size=1M
    bulk_insert_buffer_size=0
    join_buffer_size=128K
    innodb_sort_buffer_size=1M
  • I did this using an adb shell ('cat > my.ini' <PASTE> ^D), but you can easily upload the file using adblink. Restart MySQL
  • Make sure the lighttpd and PHP services are up and running. Install PHPMyAdmin from the KSWEB Tools menu.
  • Open PHPMyAdmin on your favorite device in your favorite browser using the IP of your AFTV and the port shown in the Status page of KSWEB (e.g. http://192.168.1.200:8002). Login: root/<none>. You should change this password using PHPMyAdmin
  • Once in PHPMyAdmin -> Users tab, Add user.. Choose username (kodi) pass (kodi) and leave it it for 'any host' access. Do not check to create a database, this will be done by Kodi later. In the same dialogue, make sure user kodi is granted access rights to Create databases
  • In Kodi, go to Settings->Services->MySQL and enter the AFTV IP, username (kodi) and password (kodi). Then select Enable to use MySQL.
  • If your sources contain SMB shares, ensure these are linked via IP and not WINS name (e.g. smb://192.168.1.100/myshare/movies). If they are not, correct this. Then rescan your sources. Kodi will import previously exported data.
    Repeat the last two steps to link other Kodi installations to the MySQL database. No need to rescan sources, unless they use different sources.
  • Optional: If Kodi starts up automatically upon boot (this probably requires root), you can have it wait for the MySQL DB server to be ready. (see also Wake_on_lan (wiki))
    Enable wake-on-lan under Settings → System → Power saving → Try to wake remote servers on access
    Replace the content of the wakeonlan.xml file that is stored in the userdata folder of Kodi with the below content. Make sure to replace YOUR IP and YOUR MAC with the correct values:
    <onaccesswakeup>
    <netinittimeout>20</netinittimeout>
    <netsettletime>500</netsettletime>
    <wakeup>
    <host>YOUR IP</host>
    <mac>YOUR MAC</mac>
    <pingport>3306</pingport>
    <pingmode>1</pingmode>
    <timeout>300</timeout>
    <waitonline>40</waitonline>
    <waitonline2>40</waitonline2>
    <waitservices>5</waitservices>
    </wakeup>
    </onaccesswakeup>
  • Optional: You may want to change the lighttpd password (defaults to admin/admin). This is listening on a port as per Status page of KSWEB, likely port 8001.
  • Optional: Once all is working to your satisfaction, you can disable lighttpd and PHP in the KSWEB console and also select to start KSWEB minimized (see Settings).

How to Configure MQ7 for 3D MVC File Playback

Hello I am under Aeon MQ 7 ( jarvis 16.1 ) under Windows 7 I am very satisfied the only problem that I have is to read my files (Movie.3D.MVC) combined 2D and 3D Kodi reads them but only in 2 d I n I have not found on the net of tuto that can help me...

Installing Kodi over working NextPVR

I am using the latest version of NextPVR, on a custom built I5 Windows 10 X64 platform. It has two Quad Hauppauge turners, and remote control using the Hauppauge credit card remote. I am thinking about installing Kodi and maybe Exodus, and using a V...

kodi display problem

Hello, I just install a system with ScientificLinux7.2(rhel clone) running kodi 14.2, and ati video drivers installed. I can view video files via vlc, but when I startup kodi my screen looks like this: http://tinypic.com/r/296c0wm/9 What is causing...

Subtitle download not working correctly?

Is this a bug/problem with my system or has this always been this way, I seem to recall this used to work: I have, for example, tv-series with 5 episodes. I start to playback of episode 1 and download subtitles from Opensubtitles. I then start playba...

Screen reader help needed

Hey guys i am trying to get a fire stick setup with kodi for a legally blind user. I have done some research and found out that kodi has a screen reader add on. It is located in addons, repositories, then services. I seen a video of it working on you t...

Usability: Channel focus in PVR Windows

Hi folks, just some inquiry concering channel focus in PVR Windows. My wife quite often cries WTF when working with PVR windows that focus on some odd channel... so this seems to be at least a WAF thing. From a noob user persoective the focus handl...

User playlists in Web interface or third-party app

Is there a way to access user playlists via the Chorus2 (or any other) web interface, or via any Kodi external app? I've played with Chorus2 and various apps, and I can't figure out how to access a user-defined playlist (other than Party mode). In Cho...