Sign inSign up

jas0n0ss/embyserver

By jas0n0ss

Updated about 1 year ago

Cracked Embyserver Docker Image

Image
Web servers
0

91

jas0n0ss/embyserver repository overview

Emby Server Docker Image

This Docker image is pre-configured with several useful Emby Server plugins and enhancements. It allows you to easily set up and customize your Emby server with additional functionality such as external player integration, Emby UI enhancements, and danmaku (bullet comments) support.

Features

  • emby-erx – Emby UI enhancement plugin.
  • dd-danmaku – Danmaku (bullet comments) plugin for interactive media.
  • embyExternalUrl – Allows calling external players like PotPlayer and VLC.
  • StrmAssistant – Helper tool for managing stream sources and links.

Setup Instructions

1. Download the Image

Search for the Emby Server image on Docker Hub or use the following command:

docker pull jas0n0ss/embyserver:cracked
2. Configuration
  • The container is configured via the /config/config/ext.sh script. You can customize plugins and settings by modifying this file.
Example Configuration:

To enable emby-erx (Emby UI enhancement) and other plugins:

  1. Edit /docker/emby/config/ext.sh.
  2. Modify the MediaId and extmod variables:
# Set Media Library IDs (replace with your actual IDs)
MediaId="21466,21463"  # Empty = Disabled

# Add desired plugins to extmod
extmod='["embyLaunchPotplayer","ede.user","actorPlus","embyExternalUrl"]'
  1. Restart the container to apply changes.
3. Emby Premiere Settings
  • Go to Emby SettingsEmby Premiere.
  • Enter 疯狂星期四V我50 to activate the Emby Premiere feature.
  • Refresh your browser to apply changes.
4. External Player Integration

To use an external player like PotPlayer, ensure it's listed in the extmod array in ext.sh:

extmod='["embyLaunchPotplayer","embyExternalUrl"]'

Restart the container to enable it.

5. Docker-compose Enable GPU Supported
---
emby:
    image: jas0n0ss/embyserver:cracked
    container_name: emby-server
    restart: unless-stopped
    ports:
      - "8096:8096"  # HTTP port for Emby
      - "8920:8920"  # HTTPS port for Emby (optional)
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - ./emby/config:/config
      - /media/tvseries:/media/tvseries
      - /media/movies:/media/movies
    environment:
      - PUID=1000
      - PGID=1000
      - NVIDIA_VISIBLE_DEVICES=all  # Allows access to all GPUs
      - NVIDIA_DRIVER_CAPABILITIES=compute,video,utility  # Enable video capabilities for hardware acceleration
    runtime: nvidia  # Specify the use of the NVIDIA runtime
    deploy:
      resources:
        reservations:
          devices:
            - driver: nvidia
              count: all
              capabilities: [gpu]
    networks:
      - media

Tag summary

Content type

Image

Digest

sha256:1fda541ff

Size

259.4 MB

Last updated

about 1 year ago

docker pull jas0n0ss/embyserver:cracked