All Projects → ehough → Docker Kodi

ehough / Docker Kodi

Licence: gpl-3.0
Dockerized Kodi with audio and video

Projects that are alternatives of or similar to Docker Kodi

Awesome Audio
A curated list of awesome audio technology resources for developers
Stars: ✭ 61 (-61.15%)
Mutual labels:  audio, media
Sjmediacacheserver
A HTTP Media Caching Framework. It can cache FILE or HLS media. 音视频边播边缓存框架, 支持 HLS(m3u8) 和 FILE(mp4, mp3等).
Stars: ✭ 87 (-44.59%)
Mutual labels:  audio, media
Skin.refocus
reFocus, a skin for Kodi
Stars: ✭ 72 (-54.14%)
Mutual labels:  kodi, htpc
Xamarinmediamanager
Cross platform Xamarin plugin to play and control Audio and Video
Stars: ✭ 647 (+312.1%)
Mutual labels:  audio, media
Rtp
A Go implementation of RTP
Stars: ✭ 120 (-23.57%)
Mutual labels:  audio, media
Nakamori
Nakamori is Kodi addon that use Shoko (known as Japanese Media Manager (JMM)) Server as back-end for metadata information.
Stars: ✭ 24 (-84.71%)
Mutual labels:  kodi, htpc
React Native Jw Media Player
React-Native Android/iOS bridge for JWPlayer SDK (https://www.jwplayer.com/)
Stars: ✭ 76 (-51.59%)
Mutual labels:  audio, media
Maraschino
A front-end for HTPCs
Stars: ✭ 433 (+175.8%)
Mutual labels:  kodi, htpc
Vime
Customizable, extensible, accessible and framework agnostic media player. Modern alternative to Video.js and Plyr. Supports HTML5, HLS, Dash, YouTube, Vimeo, Dailymotion...
Stars: ✭ 1,928 (+1128.03%)
Mutual labels:  audio, media
Menutube
Catch YouTube into your macOS menu bar! 🦄
Stars: ✭ 102 (-35.03%)
Mutual labels:  audio, media
React Player
A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia and DailyMotion
Stars: ✭ 5,931 (+3677.71%)
Mutual labels:  audio, media
Prism Media
Easily transcode media using Node.js 🎶
Stars: ✭ 136 (-13.38%)
Mutual labels:  audio, media
Monstercat Visualizer
A real time audio visualizer for Rainmeter similar to the ones used in the Monstercat videos.
Stars: ✭ 571 (+263.69%)
Mutual labels:  audio, media
Pandoraplayer
🅿️ PandoraPlayer is a lightweight music player for iOS, based on AudioKit and completely written in Swift.
Stars: ✭ 1,037 (+560.51%)
Mutual labels:  audio, media
Flutter Assetsaudioplayer
Play simultaneously music/audio from assets/network/file directly from Flutter, compatible with android / ios / web / macos, displays notifications
Stars: ✭ 458 (+191.72%)
Mutual labels:  audio, media
Modernflyouts
A modern Fluent Design replacement for the old Metro themed flyouts present in Windows.
Stars: ✭ 1,173 (+647.13%)
Mutual labels:  audio, media
Mediacms
MediaCMS is a modern, fully featured open source video and media CMS, written in Python/Django and React, featuring a REST API.
Stars: ✭ 313 (+99.36%)
Mutual labels:  audio, media
Fwplayer
A video player SDK for iOS, it is based on AVPlayer. https://se.linkedin.com/in/foks-huiwang, https://fokswang.wixsite.com/home
Stars: ✭ 321 (+104.46%)
Mutual labels:  audio, media
Freemp
Free Media Player (FreeMp)
Stars: ✭ 97 (-38.22%)
Mutual labels:  audio, media
React Jplayer
Html5 audio and video player library for React
Stars: ✭ 128 (-18.47%)
Mutual labels:  audio, media

erichough/kodi

Dockerized Kodi with audio and video.

Kodi screenshot

Features

Host Prerequisites

The host system will need the following:

  1. Linux and Docker

    This image should work on any Linux distribution with a functional Docker installation.

  2. A connected display and speaker(s)

    If you're looking for a headless Kodi installation, look elsewhere!

  3. X or Wayland

    Ensure that the packages for an X or Wayland server are present on the Docker host. Please consult your distribution's documentation if you're not sure what to install. A display server does not need to be running ahead of time.

  4. x11docker

    x11docker allows Docker-based applications to utilize X and/or Wayland on the host. Please follow the x11docker installation instructions and ensure that you have a working setup on the Docker host.

Usage

Starting Kodi

Use x11docker to start the erichough/kodi Docker image. Detailing the myriad of x11docker options is beyond the scope of this document; please consult the x11docker documentation to find the set of options that work for your setup.

Below is an example command (split into multiple lines for clarity) that starts Kodi with a fresh X.Org X server with PulseAudio sound, hardware video acceleration, a persistent Kodi home directory, and a shared read-only Docker mount for media files:

$ x11docker --xorg                                 \
            --pulseaudio                           \
            --gpu                                  \
            --homedir /host/path/to/kodi/home      \
            -- -v /host/path/to/media:/media:ro -- \
            erichough/kodi

Note that the optional argument passed between a pair of -- defines additional arguments to be passed to docker run.

Stopping Kodi

You can shut down Kodi just as you normally would; i.e. by using the power menu from the Kodi home screen. Behind the scenes, the Docker container and x11docker processes will terminate cleanly.

You can also terminate the container from the command line.

Example systemd Service Unit

[Unit]
Description=Dockerized Kodi
Requires=docker.service
After=network.target docker.service

[Service]
ExecStartPre=/usr/bin/docker pull erichough/kodi
ExecStart=/usr/bin/x11docker ... erichough/kodi
Restart=always
KillMode=process

[Install]
WantedBy=multi-user.target

Advanced

The advanced topics documentation describes a few more useful features and functionality:

Help!

Something not working quite right? Are you stuck? Please ask your questions in the discussion group, where we exchange help and share ideas.

Contributing

Constructive criticism and contributions are welcome! Please submit an issue or pull request.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].