Kodi Auf Mehreren Rechnern

Kodi Multi-Device Setup Calculator

Calculate the optimal configuration for running Kodi on multiple computers in your household. Get personalized recommendations for hardware, network requirements, and media library synchronization.

Recommended NAS Storage:
Minimum Network Speed:
Estimated Sync Time:
Recommended Kodi Version:
Estimated Monthly Bandwidth:

Ultimate Guide: Running Kodi on Multiple Computers (2024)

Setting up Kodi across multiple computers in your household requires careful planning to ensure smooth performance, synchronized libraries, and optimal resource usage. This comprehensive guide covers everything you need to know about Kodi auf mehreren Rechnern (Kodi on multiple computers), from technical requirements to advanced configuration tips.

Key Benefits

  • Seamless media access from any device
  • Centralized library management
  • Consistent viewing experience
  • Resource optimization
  • Multi-room audio synchronization

Common Challenges

  • Network bandwidth limitations
  • Library synchronization issues
  • Different hardware capabilities
  • User profile management
  • DRM-protected content

Recommended Tools

  • MySQL for database synchronization
  • Plex/Kodi combo for metadata
  • Resilio Sync for file distribution
  • Trakt.tv for watch history
  • Tautulli for monitoring

Technical Requirements Overview

Component Minimum Requirements Recommended Optimal
CPU (per device) Dual-core 1.6GHz Quad-core 2.4GHz Hexa-core 3.0GHz+
RAM 1GB 4GB 8GB+
Storage (central) 1TB HDD 4TB NAS 8TB+ SSD/NAS
Network Speed 10 Mbps 100 Mbps 1 Gbps+
GPU (for 4K) Integrated Dedicated 2GB 4GB+ with HEVC decode

Step-by-Step Multi-Device Setup

  1. Centralize Your Media Library

    Begin by consolidating all your media files in a single location. The most effective solutions are:

    • Network Attached Storage (NAS): Devices like Synology DS220+ or QNAP TS-251D offer excellent performance for Kodi libraries. Configure RAID 1 for redundancy.
    • Cloud Storage: Services like Google Drive or Wasabi (for unlimited storage) can work, but require additional tools like rclone for mounting.
    • Dedicated Media Server: A low-power always-on PC with large storage drives (e.g., Intel NUC with 8TB HDD).

    Pro Tip: Use advancedsettings.xml to configure multiple source locations with different priorities:

    <advancedsettings>
        <videolibrary>
            <importwatchedstate>true</importwatchedstate>
            <importresumepoint>true</importresumepoint>
        </videolibrary>
        <pathsubstitution>
            <substitute>
                <from>special://profile/playlists/</from>
                <to>smb://SERVER/IP/playlists/</to>
            </substitute>
        </pathsubstitution>
    </advancedsettings>
  2. Configure MySQL Database Synchronization

    For true multi-device synchronization, replace Kodi’s default SQLite database with MySQL:

    1. Install MySQL Server (or MariaDB) on your NAS/server
    2. Create a new database and user for Kodi
    3. Configure each Kodi instance with these advancedsettings.xml entries:
      <advancedsettings>
          <videodatabase>
              <type>mysql</type>
              <host>192.168.1.100</host>
              <port>3306</port>
              <user>kodi</user>
              <pass>yourpassword</pass>
              <name>MyVideos119</name>
          </videodatabase>
          <musicdatabase>
              <type>mysql</type>
              <host>192.168.1.100</host>
              <port>3306</port>
              <user>kodi</user>
              <pass>yourpassword</pass>
              <name>MyMusic82</name>
          </musicdatabase>
      </advancedsettings>
    4. Restart all Kodi instances to initialize the shared database
    Note
    For Windows users, XAMPP provides an easy way to set up a local MySQL server for testing before deploying to your NAS.
  3. Optimize Network Performance

    Network configuration is critical for smooth multi-device Kodi performance:

    • Wired Connections: Use Cat6 or better Ethernet cables for all stationary devices. Powerline adapters (AV2000 standard) can be a good alternative where wiring isn’t possible.
    • Wi-Fi Optimization: For wireless devices:
      • Use 5GHz band for 4K streaming
      • Enable WPA3 encryption
      • Position routers centrally
      • Consider mesh systems for large homes
    • QoS Configuration: On your router, prioritize traffic to/from your NAS and Kodi devices. Typical ports to prioritize:
      • SMB: 445 (TCP)
      • NFS: 2049 (TCP/UDP)
      • MySQL: 3306 (TCP)
      • UPnP: 1900 (UDP)

    Use tools like Speedtest to measure your internal network speeds between devices.

  4. Implement User Profiles

    Kodi’s profile system allows different family members to have personalized experiences:

    1. Enable profiles in Kodi Settings → Profile settings
    2. Create individual profiles with unique:
      • Watch history
      • Favorites
      • Skin customizations
      • Parental controls
    3. Configure profile locking with PINs for parental controls
    4. Use the “Master user” profile for administrative tasks

    Advanced Tip: Combine with Trakt.tv integration to sync watch history and recommendations across all devices and even different media centers.

  5. Automate Library Updates

    Keep your media library current across all devices:

    • Scheduled Scans: Configure automatic library updates in Kodi settings (Settings → Media → Library → “Update library on startup”)
    • External Tools: Use TinyMediaManager or Ember Media Manager for advanced metadata management before Kodi scans
    • Watch Folders: Set up automated scripts to monitor download folders and trigger Kodi library updates
    • API Integration: For power users, Kodi’s JSON-RPC API allows programmatic control of library updates

Advanced Configuration Options

Feature Implementation Benefits Complexity
UPnP/DLNA Sharing Enable in Kodi Services settings Easy discovery by other devices Low
MySQL Database Configure advancedsettings.xml Perfect sync across devices Medium
Web Interface Enable Chorelius or Kodi Web Remote control from any browser Low
Wake-on-LAN Configure in BIOS and Kodi Wake NAS/server when needed Medium
VPN Integration Configure OpenVPN in Kodi Secure remote access High
Docker Container Deploy Kodi headless Isolated, portable instances High

Performance Optimization Techniques

To ensure smooth operation across multiple devices:

  • Hardware Acceleration:
    • Enable DXVA (Windows) or VAAPI (Linux) in Kodi settings
    • For NVIDIA GPUs, use the proprietary drivers with VDPAU
    • Intel Quick Sync provides excellent performance for integrated graphics
  • Cache Optimization:
    • Increase memory cache in advancedsettings.xml:
      <cache>
          <memorysize>524288000</memorysize> 
          <buffermode>1</buffermode>
      </cache>
    • For network shares, increase read factor:
      <network>
          <readfactor>20</readfactor>
      </network>
  • Skin Optimization:
    • Use lightweight skins like Estuary or Estouchy
    • Disable RSS feeds and weather updates if not needed
    • Limit the number of home screen widgets
  • Add-on Management:
    • Regularly update all add-ons
    • Disable unused add-ons
    • Use the Kodi Add-on Manager to check for conflicts
    • Consider using a maintenance tool like Ares Wizard

Troubleshooting Common Issues

Even with proper setup, you may encounter issues. Here are solutions to the most common problems:

  1. Library Not Syncing Between Devices
    • Verify MySQL server is running and accessible
    • Check that all Kodi instances have identical advancedsettings.xml
    • Ensure the MySQL user has proper permissions
    • Try repairing the database with kodi-database-tool
  2. Playback Stuttering on Multiple Devices
    • Check network bandwidth with iperf3
    • Reduce simultaneous streams or lower bitrate
    • Enable hardware acceleration on all devices
    • Increase cache settings in advancedsettings.xml
  3. Different Devices Show Different Watched Status
    • Verify Trakt.tv integration is enabled on all devices
    • Check MySQL database for corruption
    • Ensure “Import watched status” is enabled in advancedsettings.xml
    • Manually trigger a library clean
  4. Slow Library Scanning
    • Disable “Extract thumbnail and video information” during initial scan
    • Use external scrapers like TinyMediaManager first
    • Increase MySQL query cache size
    • Scan during off-peak hours
  5. Audio/Video Sync Issues
    • Enable “Sync playback to display” in Kodi settings
    • Adjust audio offset in player settings
    • Ensure all devices use the same audio passthrough settings
    • Check for driver updates on all devices

Security Considerations

When running Kodi on multiple devices, security becomes increasingly important:

  • Network Security:
    • Change default passwords on your NAS and router
    • Enable firewall on all devices
    • Use a separate VLAN for media devices if possible
    • Regularly update firmware on all network devices
  • Kodi Security:
    • Only install add-ons from official repositories
    • Enable the “Unknown sources” warning
    • Regularly check for suspicious add-ons
    • Use a VPN when accessing third-party add-ons
  • Data Protection:
    • Implement regular backups of your media library
    • Use RAID or other redundancy for your NAS
    • Consider encrypting sensitive media
    • Set up proper user permissions on shared folders
  • Remote Access:
    • Never expose Kodi directly to the internet
    • Use a VPN for remote access
    • Consider reverse proxy with authentication
    • Enable two-factor authentication where possible

For more detailed security guidelines, refer to the CISA’s home network security recommendations.

Legal Considerations for Multi-Device Kodi Setups

When using Kodi across multiple devices, it’s important to understand the legal implications:

  • Content Licensing:
    • Ensure all media is properly licensed
    • Understand fair use laws in your country
    • Be aware of regional content restrictions
  • DRM-Protected Content:
    • Kodi has limited native DRM support
    • Consider using Inputstream Adaptive for widevine content
    • Be aware that circumvention tools may violate laws
  • Multi-User Access:
    • Some streaming services limit simultaneous devices
    • Check terms of service for all add-ons
    • Consider family plans where available
  • Data Privacy:
    • Be transparent with household members about monitoring
    • Comply with local data protection laws
    • Consider anonymizing viewing habits if needed

For authoritative information on digital media laws, consult the U.S. Copyright Office or your local equivalent.

Future-Proofing Your Multi-Device Kodi Setup

To ensure your setup remains viable as technology evolves:

  • Hardware Upgrades:
    • Plan for 8K content with HEVC/H.265 support
    • Consider 10G networking for future bandwidth needs
    • NVMe storage for faster library scanning
  • Software Updates:
    • Stay current with Kodi Matrix/Omega releases
    • Monitor MySQL/MariaDB updates
    • Evaluate new synchronization methods
  • Emerging Technologies:
    • Explore AI-based recommendation engines
    • Consider voice control integration
    • Evaluate blockchain-based media verification
  • Energy Efficiency:
    • Implement wake-on-LAN for power savings
    • Consider solar-powered NAS solutions
    • Use low-power devices for secondary locations

Alternative Solutions to Consider

While Kodi is excellent for multi-device setups, consider these alternatives or complements:

Solution Pros Cons Best For
Plex Media Server Excellent client apps, automatic transcoding Requires more powerful server, subscription for some features Households with varied device types
Emby Great organization, parental controls Some features require premium Families with children
Jellyfin Open-source, no premium features Less polished than commercial options Tech-savvy users who want full control
Kodi + Plex Combo Best of both worlds, Plex for management, Kodi for playback More complex setup Enthusiasts who want flexibility
Stremio Excellent add-on system, clean interface Less customizable than Kodi Users who want simplicity

Real-World Case Studies

Examining how different households implement multi-device Kodi setups:

  1. The Family Home (4 devices, mixed usage)
    • Setup: Synology DS920+ NAS, 4x Fire TV Sticks with Kodi, MySQL database
    • Media: 3TB mixed content (70% movies, 20% TV, 10% music)
    • Network: Gigabit Ethernet backbone, Wi-Fi 6 for mobile devices
    • Challenges: Initial setup complexity, occasional sync delays
    • Solution: Scheduled nightly database optimization, separate profiles for kids
  2. The Apartment (2 devices, 4K focus)
    • Setup: Intel NUC server, NVIDIA Shield Pro, Raspberry Pi 4
    • Media: 2TB 4K HDR content
    • Network: All wired connections
    • Challenges: 4K remux playback on Pi 4
    • Solution: Used NUC for transcoding when needed, optimized cache settings
  3. The Large Household (6+ devices, mixed tech levels)
    • Setup: Unraid server, mix of Kodi devices (Windows PCs, Android boxes, Libreelec)
    • Media: 8TB+ mixed library
    • Network: Ubiquiti UniFi mesh network
    • Challenges: User management, varied device capabilities
    • Solution: Implemented strict profile system, used Plex for less tech-savvy users

Expert Tips from Kodi Power Users

Insights from experienced multi-device Kodi administrators:

  • Database Maintenance: “Run OPTIMIZE TABLE on your MySQL database weekly. I use this simple script:
    #!/bin/bash
    mysql -u kodi -p -e "OPTIMIZE TABLE episode;
    OPTIMIZE TABLE movie;
    OPTIMIZE TABLE tvshow;" MyVideos119
    This keeps our 10-device setup running smoothly.”
    — Markus W., Home Media Enthusiast
  • Network Monitoring: “I use Tautulli to monitor all Kodi instances. It helps identify which devices are causing bandwidth spikes and which users need training on proper usage.” — Sarah K., IT Professional
  • Backup Strategy: “We implement a 3-2-1 backup strategy: 3 copies of our media (NAS + backup drive + cloud), 2 different media types, 1 offsite. For the database, we do daily MySQL dumps to Backblaze B2.” — David L., Data Center Administrator
  • User Training: “The biggest challenge isn’t technical—it’s user education. We created a simple ‘Kodi Cheat Sheet’ for family members and hold a 10-minute training session when we add new devices.” — Emma T., Family Tech Support
  • Future-Proofing: “I always allocate 50% more storage than currently needed and use ZFS on our NAS for easy expansion. Also, I virtualize Kodi servers to make upgrades seamless.” — Alex R., Systems Architect

Frequently Asked Questions

  1. Can I run Kodi on multiple computers with one license?

    Kodi itself is completely free and open-source with no licensing requirements. However, some third-party add-ons or premium services you might use with Kodi may have their own licensing terms.

  2. What’s the maximum number of devices I can sync?

    There’s no hard limit in Kodi, but practical limits depend on your MySQL server capacity and network bandwidth. Most home setups work well with 5-10 devices. For larger deployments, consider optimizing your MySQL configuration or using a more powerful database server.

  3. How do I handle different screen resolutions across devices?

    Kodi automatically adjusts to each device’s native resolution. For best results:

    • Use high-quality source files (1080p or 4K)
    • Enable “Adjust display refresh rate” in Kodi settings
    • For 4K devices, ensure your network can handle the bandwidth
    • Consider using different skins optimized for each device’s screen size

  4. Can I use Kodi on multiple computers with different operating systems?

    Yes, Kodi is cross-platform and supports Windows, macOS, Linux, Android, iOS, and more. The MySQL synchronization works the same across all platforms. Just ensure each installation uses identical advancedsettings.xml configurations.

  5. How do I prevent other users from seeing my watch history?

    Implement these measures:

    • Enable profiles in Kodi with separate watched status
    • Use the profile lock feature with PINs
    • Consider using Trakt.tv with private lists
    • For complete privacy, use separate MySQL databases

  6. What’s the best way to handle updates across multiple devices?

    For consistent performance:

    • Enable automatic updates in Kodi settings
    • Update add-ons through the official repository
    • For major version upgrades, test on one device first
    • Consider using a Kodi fork like Libreelec for consistent environments
    • Document your configuration before major updates

Conclusion and Final Recommendations

Setting up Kodi on multiple computers transforms your home media experience from isolated viewing to a cohesive, synchronized system. By following this guide, you’ve learned how to:

  • Centralize your media library for consistent access
  • Synchronize watched status and libraries across devices
  • Optimize network performance for simultaneous streaming
  • Implement user profiles for personalized experiences
  • Troubleshoot common multi-device issues
  • Secure your setup against common vulnerabilities
  • Plan for future expansion and technological changes

Remember that the optimal setup depends on your specific needs—number of users, types of content, technical expertise, and budget. Start with a basic configuration using the calculator above, then gradually implement more advanced features as you become comfortable with the system.

For ongoing learning, consider these authoritative resources:

As you refine your multi-device Kodi setup, don’t hesitate to experiment with different configurations. The flexibility of Kodi is one of its greatest strengths, allowing you to create a media system perfectly tailored to your household’s needs.

Leave a Reply

Your email address will not be published. Required fields are marked *