What Is Kodi?

Kodi (formerly XBMC) is a free, open-source media center application that runs on Windows, macOS, Linux, Android, iOS, and Raspberry Pi. When connected to your seedbox, Kodi can stream your downloaded content directly without transferring files to your local device first.

How Kodi Connects to Your Seedbox

Kodi accesses your seedbox files via network protocols:

  • SMB/CIFS: Windows file sharing protocol — simple but slower
  • NFS: Network File System — faster, Linux-native
  • SFTP: Secure FTP — works everywhere, encrypted
  • HTTP: Direct web access — simplest setup

For seedbox streaming, SFTP is recommended — it works with any seedbox provider and encrypts your connection.

Setting Up Kodi with Your Evoseedbox

Step 1: Install Kodi

Download Kodi from kodi.tv and install on your device.

Step 2: Add Your Seedbox as a Source

  1. Open Kodi → Go to Files (or Videos → Files)
  2. Click Add Videos (or Add Music, etc.)
  3. Click Browse → Select Add network location
  4. Set the protocol:
    • Protocol: SFTP (SSH File Transfer Protocol)
    • Server address: your seedbox IP
    • Port: 22
    • Username: your seedbox username
    • Password: your seedbox password
    • Remote path: /home/username/downloads/ (or your media folder path)
  5. Click OK → Name the source (e.g., “My Seedbox”)
  6. Set the content type (Movies, TV Shows, Music) for automatic metadata
  7. Click OK

Step 3: Browse and Play

Your seedbox files now appear in Kodi’s library. Click any file to stream it directly. Kodi buffers the content from your seedbox — no need to download the entire file first.

Optimizing Kodi for Seedbox Streaming

Buffer Settings

For smooth streaming from a remote seedbox, increase Kodi’s buffer size:

  1. Navigate to your Kodi userdata folder
  2. Create or edit advancedsettings.xml:
<advancedsettings>
  <cache>
    <buffermode>1</buffermode>
    <memorysize>157286400</memorysize>
    <readfactor>8</readfactor>
  </cache>
</advancedsettings>

This sets a 150 MB buffer with 8x read-ahead — sufficient for smooth 1080p streaming from most seedboxes.

Kodi vs Plex for Seedbox Streaming

Feature Kodi Plex
Runs on seedbox? No (runs on your device) Yes (server on seedbox)
Transcoding Not needed (direct play) Server-side transcoding
Mobile app Yes (free) Yes (Plex Pass for mobile sync)
Library management Local database Cloud-synced across devices
Setup complexity Manual source config One-click install on seedbox
Best for Local playback, customization fans Multi-device streaming, remote access

Related Guides