Skip to content

Instantly share code, notes, and snippets.

@danielchc
Last active November 15, 2024 16:42
Show Gist options
  • Save danielchc/c159626485a08c76856b2d30ae457e04 to your computer and use it in GitHub Desktop.
Save danielchc/c159626485a08c76856b2d30ae457e04 to your computer and use it in GitHub Desktop.
Emby Premiere: ByPass Docker container

Emby Premiere ByPass Docker container

❗ All the information provided on this tutorial are for educational purposes only. I'm not responsible for any misuse of this information. If you like the app buy it

Table of Contents

Compatibility

Tested on version 4.9.0.28. Last update: September 13, 2024

This tutorial allows you to run Emby Premiere on:

Emby Premiere Local device Remote device
Web ✔️* ✔️
Mobile ✔️
Emby Theater ✔️ ?
Other devices

* The use of DoH may cause cosmetic issues

Getting Started

Create the working folder

mkdir -p emby/{mb3admin,server}
cd emby

1. Local client bypass

Folder structure

.
└── mb3admin
    ├── certs
    │   ├── emby.crt
    │   ├── emby.key
    │   └── ssl-dhparams.pem
    ├── Dockerfile
    └── nginx.conf

Steps

  1. Change working directory
mkdir certs
  1. Create certs folder
mkdir certs
  1. Generate a self-signed certificate for the fake mb3admin.com server to use:
openssl req -x509 -newkey rsa:2048 -days 36525 -nodes -subj '/CN=mb3admin.com' -addext "subjectAltName = DNS:www.mb3admin.com, DNS:mb3admin.com"  -out certs/emby.crt -keyout certs/emby.key
  1. Download ssl-dhparams.pem
curl https://ssl-config.mozilla.org/ffdhe2048.txt > certs/ssl-dhparams.pem
  1. Create nginx.conf file
events {
  worker_connections  4096;  ## Default: 1024
}

http{

	server {
	    listen 80;
	    listen [::]:80;
	    server_name mb3admin.com;
	    return 301 https://mb3admin.com$request_uri;
	}

	server {
	    listen 443 ssl http2;
	    listen [::]:443 ssl http2;
	    server_name mb3admin.com;

	    ssl_certificate /certs/emby.crt;
	    ssl_certificate_key /certs/emby.key;
	    ssl_session_timeout 1d;
	    ssl_session_cache shared:SSL:10m;  # about 40000 sessions
	    ssl_session_tickets off;

	    # curl https://ssl-config.mozilla.org/ffdhe2048.txt > /path/to/dhparam.pem
	    ssl_dhparam /certs/ssl-dhparams.pem;

	    # intermediate configuration
	    ssl_protocols TLSv1.2 TLSv1.3;
	    ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
	    ssl_prefer_server_ciphers off;

	    location / {
		resolver 8.8.8.8 ipv6=off;
		set $target https://mb3admin.com;
		proxy_pass $target;
		proxy_set_header Host $host;
		proxy_set_header X-Real-IP $remote_addr;
		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
		proxy_set_header X-Forwarded-Proto $scheme;
	    }

	    location /admin/service/registration/validateDevice{
		default_type application/json;
		return 200 '{"cacheExpirationDays":3650,"message":"Device Valid (limit not checked)","resultCode":"GOOD"}';
	    }

	    location /admin/service/registration/validate {
		default_type application/json;
		return 200 '{"featId":"","registered":true,"expDate":"2099-01-01","key":""}';
	    }

	    location /admin/service/registration/getStatus {
		default_type application/json;
		return 200 '{"planType":"Lifetime","deviceStatus":0,"subscriptions":[]}';
	    }

	    location /admin/service/appstore/register {
		default_type application/json;
		return 200 '{"featId":"","registered":true,"expDate":"2099-01-01","key":""}';
	    }

	    location /emby/Plugins/SecurityInfo {
		default_type application/json;
		return 200 '{SupporterKey:"", IsMBSupporter:true}';
	    }

	    add_header Access-Control-Allow-Origin * always;
	    add_header Access-Control-Allow-Headers * always;
	    add_header Access-Control-Allow-Method * always;
	    add_header Access-Control-Allow-Credentials true always;
	}
}
  1. Create Dockerfile file
FROM nginx
COPY nginx.conf /etc/nginx/nginx.conf
ADD certs /certs

2. Web client bypass

Folder structure

.
└── server
    ├── Dockerfile
    └── patch
        ├── emby.crt
        ├── ilasm
        └── ildasm

Steps

  1. Change working directory
cd server
  1. Create patch folder
mkdir patch
  1. Copy emby.crt from ../mb3admin/certs to patch folder
cp ../mb3admin/certs/emby.crt patch
  1. Download ilasm and ildasm for your architecture and copy in patch folder.

You can get it here for x86_64 architecture : ilasm ildasm

You can get it here for arm64(Raspberry Pi 4) architecture. Just double click the binary file inside runtimes/linux-arm64/native and it will automatically download : ilasm ildasm

You can get it here for arm(Raspberry Pi <3) architecture. Just double click the binary file inside runtimes/linux-arm/native and it will automatically download : ilasm ildasm

Or you can download the deb package. You should unpack the .deb and find the executables in ./usr/bin/

  1. Create Dockerfile file
FROM linuxserver/emby:beta

ADD patch /patch

RUN chmod +x /patch/ilasm
RUN chmod +x /patch/ildasm
RUN mkdir /patch/tmp

WORKDIR /patch/tmp

RUN /patch/ildasm /app/emby/system/Emby.Web.dll -out=Emby.Web.dll

RUN sed -i 's#ajax({url:"https://mb3admin.com/admin/service/registration/validateDevice?"+new URLSearchParams(params).toString(),type:"POST",dataType:"json"})#Promise.resolve(new Response('"'"'{"cacheExpirationDays":365,"message":"Device Valid","resultCode":"GOOD"}'"'"').json())#g' Emby.Web.dashboard_ui.modules.emby_apiclient.connectionmanager.js

RUN /patch/ilasm -dll Emby.Web.dll -out=/app/emby/system/Emby.Web.dll
RUN cat /patch/emby.crt >> /app/emby/etc/ssl/certs/ca-certificates.crt

3. Docker Compose setup

Folder structure

.
├── compose.yml
├── mb3admin
│   ├── certs
│   │   ├── emby.crt
│   │   ├── emby.key
│   │   └── ssl-dhparams.pem
│   ├── Dockerfile
│   └── nginx.conf
└── server
    ├── Dockerfile
    └── patch
        ├── emby.crt
        ├── ilasm
        └── ildasm

Steps

⚠️ It is mandatory that the server where the Emby server is running has a DNS configured that resolves mb3admin.com to the local IP of the nginx server.

  1. Now, you have to options:

    a. Recommended: Edit your local DNS (Pihole, Adguard, router, bind...) and rewrite mb3admin.com with local IP.

    image

    b. Edit the hosts file of each device you're going to use Emby.

    • Windows: C:\Windows\System32\drivers\etc\hosts
    • Linux: /etc/hosts
    <your_local_ip_adress_here> mb3admin.com
    

    ⚠️ Replace <your_local_ip_adress_here> with the IP of machine where the containers run.

  2. Create compose.yml

services:
  emby:
      build: ./server
      container_name: emby
      environment:
        - PUID=1000
        - PGID=1000
        - TZ=Europe/London
      volumes:
        - ./config:/config
        - /media/tv:/data/tvshows
        - /media/movies:/data/movies
      ports:
        - 8096:8096
        - 8920:8920 #optional
      restart: unless-stopped
  mb3admin:
      build: ./mb3admin
      container_name: mb3admin
      ports:
        - 443:443
      restart: unless-stopped
      networks:
        default:
          aliases:
            - mb3admin.com
  1. Start containers
docker compose up -d
  1. Check if everything is OK

Execute

docker exec emby bash -c "curl -w '\n' -s  --cacert /app/emby/etc/ssl/certs/ca-certificates.crt  https://mb3admin.com/admin/service/registration/validateDevice"

If the output is as follows everything is fine

{"cacheExpirationDays":3650,"message":"Device Valid (limit not checked)","resultCode":"GOOD"}

First Run

  1. Open https://mb3admin.com in your browser and accept the self-signed certificate

image

  1. Open the Emby Premiere Section in Settings, and write whatever you want in the "Emby Premiere key (paste from e-mail)" and click "Save"

image

Apps

⚠️ You MUST do the above steps for this to work

Emby Theater

  1. Go to
  • Windows: %appdata%\Emby-Theater\system\electronapp
  • Linux: /opt/emby-theater/electron/resources/app/
  1. Open main.js with text editor
  2. After this
app.on('window-all-closed', function () {
    // On OS X it is common for applications and their menu bar
    // to stay active until the user quits explicitly with Cmd + Q
    if (process.platform != 'darwin') {
        app.quit();
    }
});

Add this:

app.on('certificate-error', (event, webContents, url, error, certificate, callback) => {
        event.preventDefault()
        callback(true)
})

Android

You DON'T NEED TO DO any extra steps to make it work on Android on local network. First time you open the app it will prompt a dialog to accept self-signed certificate. If this dialog does not appear you have done something wrong.

Dialog

If you want it to work outside the local network, you need to get a modded apk

Android TV

You must go to the settings and enable "Allow Untrusted SSL Playback"

image

Thanks @OrpheeGT for the information

Miscellaneous

Update Emby version

  1. Change to the folder where the compose.yml file is
  2. Build a new emby image
docker compose build emby --pull --no-cache
  1. Restart container
docker compose up -d

Credits

Special thanks for helping me improve this information to:

  • @potatoru
  • @orangejuice
  • @OrpheeGT
  • @senhan07
@OrpheeGT
Copy link

What is you browser ? You have to use https
Try with Firefox.

@OrpheeGT
Copy link

If I use https:

ERR_CERT_AUTHORITY_INVALID

A screenshot of the full webpage with the error child help.
No button like advanced / risk to accept the untrusted certificate ?

@StefanoGiu
Copy link

Firefox: 404 Not found
Chrome: ERR_CERT_AUTHORITY_INVALID

Schermata del 2024-09-14 17-42-53

@StefanoGiu
Copy link

If I click on Advanced, continue, I got this...

Schermata del 2024-09-14 17-43-31

@StefanoGiu
Copy link

In hosts file I have:

127.0.0.1 localhost
127.0.1.1 ServerNVR
127.0.0.1 mb3admin.com

@OrpheeGT
Copy link

If I click on Advanced, continue, I got this...

Schermata del 2024-09-14 17-43-31

Perfect, now go you emby premiere tab in you emby server using the same browser.

@StefanoGiu
Copy link

I didn't fix my issue... I don't have the option to accept the certificate...

@OrpheeGT
Copy link

Once you have 404 it should be fine and you should have the "licence active" from premiere tab menu

@StefanoGiu
Copy link

No I don't... and still cannot see live tv...

@OrpheeGT
Copy link

From your browser (mine is Firefox)

Do you have something like this when you try to access to :
https://mb3admin.com/admin/service/registration/validateDevice
image

@StefanoGiu
Copy link

Schermata del 2024-09-15 00-11-04
I have this

@StefanoGiu
Copy link

Any log file I can inspect to understand what's happening?

@OrpheeGT
Copy link

OrpheeGT commented Sep 15, 2024

I used:

* https://raw.githubusercontent.com/Tundrak/IPTV-Italia/main/iptvita.m3u

* Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36

Still no luck... it doesn't work...

I also run the refresh internet channels planned activity

I tried to set it too

image

Considering I'm not in Italy, it seems to work.

@OrpheeGT
Copy link

OrpheeGT commented Sep 15, 2024

Go here :

image

Open in new window
image

Save whole file from opened window and paste it here as attachment.

Do it just after you tried to start a TV stream.

@StefanoGiu
Copy link

StefanoGiu commented Sep 15, 2024

Log
2024-09-15 12:40:54.577 Info App: Setting default culture to it
2024-09-15 12:40:54.615 Info Main: Emby Server 4.9.0.30
   Command line: /app/emby/system/EmbyServer.dll -programdata /config -ffdetect /app/emby/bin/ffdetect -ffmpeg /app/emby/bin/ffmpeg -ffprobe /app/emby/bin/ffprobe -restartexitcode 3
   Operating system: Linux version 6.8.0-39-generic (buildd@lcy02-amd64-051) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubunt
   OS/Process: x64/x64
   Framework: .NET 8.0.6
   Runtime: app/emby/system/System.Private.CoreLib.dll
   Processor count: 8
   Data path: /config
   Application path: /app/emby/system
2024-09-15 12:40:54.615 Info Main: Logs path: /config/logs
2024-09-15 12:40:54.615 Info Main: Cache path: /config/cache
2024-09-15 12:40:54.615 Info Main: Internal metadata path: /config/metadata
2024-09-15 12:40:54.615 Info Main: DefaultThreadCurrentCulture: it
2024-09-15 12:40:54.615 Info Main: DefaultThreadCurrentUICulture: it
2024-09-15 12:40:54.615 Info Main: DefaultThreadCurrentUICulture: it
2024-09-15 12:40:54.628 Info Main: Local time: 15/09/2024 12:40:54 +01:00
2024-09-15 12:40:54.644 Info App: Emby Server Version: 4.9.0.30
2024-09-15 12:40:54.646 Info App: Loading assemblies
2024-09-15 12:40:54.702 Info App: File /config/plugins/NfoMetadata.dll has version 1.0.80.0
2024-09-15 12:40:54.714 Info App: File /app/emby/system/plugins/NfoMetadata.dll has version 1.0.80.0
2024-09-15 12:40:54.725 Info App: File /config/plugins/OMDb.dll has version 1.0.21.0
2024-09-15 12:40:54.730 Info App: File /app/emby/system/plugins/OMDb.dll has version 1.0.21.0
2024-09-15 12:40:54.743 Info App: File /config/plugins/DvdMounter.dll has version 1.0.0.0
2024-09-15 12:40:54.745 Info App: File /app/emby/system/plugins/DvdMounter.dll has version 1.0.0.0
2024-09-15 12:40:54.755 Info App: File /config/plugins/Emby.Webhooks.dll has version 1.0.35.0
2024-09-15 12:40:54.756 Info App: File /app/emby/system/plugins/Emby.Webhooks.dll has version 1.0.35.0
2024-09-15 12:40:54.758 Info App: File /config/plugins/BlurayMounter.dll has version 1.0.2.0
2024-09-15 12:40:54.779 Info App: File /app/emby/system/plugins/BlurayMounter.dll has version 1.0.2.0
2024-09-15 12:40:54.781 Info App: File /config/plugins/OpenSubtitles.dll has version 1.0.59.0
2024-09-15 12:40:54.803 Info App: File /app/emby/system/plugins/OpenSubtitles.dll has version 1.0.59.0
2024-09-15 12:40:54.814 Info App: File /config/plugins/AudioDb.dll has version 1.0.18.0
2024-09-15 12:40:54.818 Info App: File /app/emby/system/plugins/AudioDb.dll has version 1.0.18.0
2024-09-15 12:40:54.825 Info App: File /config/plugins/StudioImages.dll has version 1.0.3.0
2024-09-15 12:40:54.827 Info App: File /app/emby/system/plugins/StudioImages.dll has version 1.0.3.0
2024-09-15 12:40:54.839 Info App: File /config/plugins/Emby.M3UTuner.dll has version 1.0.31.0
2024-09-15 12:40:54.841 Info App: File /app/emby/system/plugins/Emby.M3UTuner.dll has version 1.0.31.0
2024-09-15 12:40:54.842 Info App: File /config/plugins/Fanart.dll has version 1.0.16.0
2024-09-15 12:40:54.854 Info App: File /app/emby/system/plugins/Fanart.dll has version 1.0.16.0
2024-09-15 12:40:54.867 Info App: File /config/plugins/MovieDb.dll has version 1.8.0.0
2024-09-15 12:40:54.880 Info App: File /app/emby/system/plugins/MovieDb.dll has version 1.8.0.0
2024-09-15 12:40:54.883 Info App: File /config/plugins/MusicBrainz.dll has version 1.0.24.0
2024-09-15 12:40:54.893 Info App: File /app/emby/system/plugins/MusicBrainz.dll has version 1.0.24.0
2024-09-15 12:40:54.898 Info App: File /config/plugins/Emby.Server.CinemaMode.dll has version 1.0.47.0
2024-09-15 12:40:54.909 Info App: File /app/emby/system/plugins/Emby.Server.CinemaMode.dll has version 1.0.47.0
2024-09-15 12:40:54.912 Info App: File /config/plugins/Emby.XmlTV.dll has version 1.2.0.0
2024-09-15 12:40:54.925 Info App: File /app/emby/system/plugins/Emby.XmlTV.dll has version 1.2.0.0
2024-09-15 12:40:54.927 Info App: File /config/plugins/EmbyGuideData.dll has version 1.0.13.0
2024-09-15 12:40:54.929 Info App: File /app/emby/system/plugins/EmbyGuideData.dll has version 1.0.13.0
2024-09-15 12:40:54.953 Info App: File /config/plugins/Emby.Dlna.dll has version 1.4.3.0
2024-09-15 12:40:54.968 Info App: File /app/emby/system/plugins/Emby.Dlna.dll has version 1.4.3.0
2024-09-15 12:40:54.978 Info App: File /config/plugins/MBBackup.dll has version 1.6.7.0
2024-09-15 12:40:54.981 Info App: File /app/emby/system/plugins/MBBackup.dll has version 1.6.7.0
2024-09-15 12:40:54.982 Info App: File /config/plugins/Emby.PortMapper.dll has version 1.2.4.0
2024-09-15 12:40:54.994 Info App: File /app/emby/system/plugins/Emby.PortMapper.dll has version 1.2.4.0
2024-09-15 12:40:54.996 Info App: File /config/plugins/Tvdb.dll has version 1.5.1.0
2024-09-15 12:40:55.008 Info App: File /app/emby/system/plugins/Tvdb.dll has version 1.5.1.0
2024-09-15 12:40:55.092 Info App: Loading NfoMetadata, Version=1.0.80.0, Culture=neutral, PublicKeyToken=null from /config/plugins/NfoMetadata.dll
2024-09-15 12:40:55.092 Info App: Loading OMDb, Version=1.0.21.0, Culture=neutral, PublicKeyToken=null from /config/plugins/OMDb.dll
2024-09-15 12:40:55.092 Info App: Loading DvdMounter, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null from /config/plugins/DvdMounter.dll
2024-09-15 12:40:55.092 Info App: Loading Emby.Webhooks, Version=1.0.35.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Emby.Webhooks.dll
2024-09-15 12:40:55.092 Info App: Loading BlurayMounter, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null from /config/plugins/BlurayMounter.dll
2024-09-15 12:40:55.092 Info App: Loading OpenSubtitles, Version=1.0.59.0, Culture=neutral, PublicKeyToken=null from /config/plugins/OpenSubtitles.dll
2024-09-15 12:40:55.092 Info App: Loading AudioDb, Version=1.0.18.0, Culture=neutral, PublicKeyToken=null from /config/plugins/AudioDb.dll
2024-09-15 12:40:55.092 Info App: Loading StudioImages, Version=1.0.3.0, Culture=neutral, PublicKeyToken=null from /config/plugins/StudioImages.dll
2024-09-15 12:40:55.092 Info App: Loading MediaBrowser.Channels.IPTV, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null from /config/plugins/MediaBrowser.Channels.IPTV.dll
2024-09-15 12:40:55.092 Info App: Loading Emby.M3UTuner, Version=1.0.31.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Emby.M3UTuner.dll
2024-09-15 12:40:55.092 Info App: Loading Fanart, Version=1.0.16.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Fanart.dll
2024-09-15 12:40:55.092 Info App: Loading Emby.SecurityCams, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Emby.SecurityCams.dll
2024-09-15 12:40:55.092 Info App: Loading MovieDb, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null from /config/plugins/MovieDb.dll
2024-09-15 12:40:55.092 Info App: Loading MediaBrowser.Plugins.Trailers, Version=1.3.9.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Mediabrowser.Plugins.Trailers.dll
2024-09-15 12:40:55.092 Info App: Loading MusicBrainz, Version=1.0.24.0, Culture=neutral, PublicKeyToken=null from /config/plugins/MusicBrainz.dll
2024-09-15 12:40:55.092 Info App: Loading Emby.Server.CinemaMode, Version=1.0.47.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Emby.Server.CinemaMode.dll
2024-09-15 12:40:55.092 Info App: Loading Emby.XmlTV, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Emby.XmlTV.dll
2024-09-15 12:40:55.092 Info App: Loading EmbyGuideData, Version=1.0.13.0, Culture=neutral, PublicKeyToken=null from /config/plugins/EmbyGuideData.dll
2024-09-15 12:40:55.092 Info App: Loading Emby.Dlna, Version=1.4.3.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Emby.Dlna.dll
2024-09-15 12:40:55.092 Info App: Loading MBBackup, Version=1.6.7.0, Culture=neutral, PublicKeyToken=null from /config/plugins/MBBackup.dll
2024-09-15 12:40:55.092 Info App: Loading Emby.PortMapper, Version=1.2.4.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Emby.PortMapper.dll
2024-09-15 12:40:55.092 Info App: Loading Tvdb, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Tvdb.dll
2024-09-15 12:40:55.092 Info App: Loading Emby.Api, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.092 Info App: Loading Emby.Web, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.092 Info App: Loading MediaBrowser.Model, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.092 Info App: Loading MediaBrowser.Common, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.092 Info App: Loading MediaBrowser.Controller, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.092 Info App: Loading Emby.Providers, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.092 Info App: Loading Emby.Photos, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.092 Info App: Loading Emby.Server.Implementations, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.093 Info App: Loading Emby.LiveTV, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.093 Info App: Loading Emby.ActivityLog, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.093 Info App: Loading Emby.Server.MediaEncoding, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.093 Info App: Loading Emby.LocalMetadata, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.093 Info App: Loading Emby.Notifications, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.093 Info App: Loading Emby.Web.GenericUI, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.093 Info App: Loading Emby.Codecs.Dxva, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.093 Info App: Loading Emby.Codecs, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.093 Info App: Loading Emby.Server.Connect, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.093 Info App: Loading Emby.Server.Sync, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.093 Info App: Loading EmbyServer, Version=4.9.0.30, Culture=neutral, PublicKeyToken=null
2024-09-15 12:40:55.475 Info SqliteUserRepository: Sqlite version: 3.42.0
2024-09-15 12:40:55.478 Info SqliteUserRepository: Sqlite compiler options: ATOMIC_INTRINSICS=1,COMPILER=gcc-10.3.0,DEFAULT_AUTOVACUUM,DEFAULT_CACHE_SIZE=-2000,DEFAULT_FILE_FORMAT=4,DEFAULT_JOURNAL_SIZE_LIMIT=-1,DEFAULT_MMAP_SIZE=0,DEFAULT_PAGE_SIZE=4096,DEFAULT_PCACHE_INITSZ=20,DEFAULT_RECURSIVE_TRIGGERS,DEFAULT_SECTOR_SIZE=4096,DEFAULT_SYNCHRONOUS=2,DEFAULT_WAL_AUTOCHECKPOINT=1000,DEFAULT_WAL_SYNCHRONOUS=2,DEFAULT_WORKER_THREADS=0,ENABLE_COLUMN_METADATA,ENABLE_DBSTAT_VTAB,ENABLE_FTS3,ENABLE_FTS3_PARENTHESIS,ENABLE_FTS3_TOKENIZER,ENABLE_FTS4,ENABLE_FTS5,ENABLE_GEOPOLY,ENABLE_MATH_FUNCTIONS,ENABLE_PREUPDATE_HOOK,ENABLE_RTREE,ENABLE_SESSION,ENABLE_UNLOCK_NOTIFY,ENABLE_UPDATE_DELETE_LIMIT,LIKE_DOESNT_MATCH_BLOBS,MALLOC_SOFT_LIMIT=1024,MAX_ATTACHED=10,MAX_COLUMN=2000,MAX_COMPOUND_SELECT=500,MAX_DEFAULT_PAGE_SIZE=8192,MAX_EXPR_DEPTH=1000,MAX_FUNCTION_ARG=127,MAX_LENGTH=1000000000,MAX_LIKE_PATTERN_LENGTH=50000,MAX_MMAP_SIZE=0x7fff0000,MAX_PAGE_COUNT=1073741823,MAX_PAGE_SIZE=65536,MAX_SCHEMA_RETRY=25,MAX_SQL_LENGTH=1000000000,MAX_TRIGGER_DEPTH=1000,MAX_VARIABLE_NUMBER=250000,MAX_VDBE_OP=250000000,MAX_WORKER_THREADS=8,MUTEX_PTHREADS,OMIT_LOOKASIDE,SECURE_DELETE,SYSTEM_MALLOC,TEMP_STORE=1,THREADSAFE=1
2024-09-15 12:40:55.478 Info SqliteUserRepository: Opening sqlite connection to /config/data/users.db
2024-09-15 12:40:55.506 Info SqliteUserRepository: Default journal_mode for /config/data/users.db is wal
2024-09-15 12:40:55.511 Info SqliteUserRepository: PRAGMA foreign_keys=1
2024-09-15 12:40:55.512 Info SqliteUserRepository: Result of setting SQLITE_DBCONFIG_DQS_DDL to 0 is 0
2024-09-15 12:40:55.512 Info SqliteUserRepository: Result of setting SQLITE_DBCONFIG_DQS_DML to 0 is 0
2024-09-15 12:40:55.697 Info ActivityRepository: Opening sqlite connection to /config/data/activitylog.db
2024-09-15 12:40:55.698 Info ActivityRepository: Default journal_mode for /config/data/activitylog.db is wal
2024-09-15 12:40:55.698 Info ActivityRepository: PRAGMA foreign_keys=1
2024-09-15 12:40:55.698 Info ActivityRepository: Result of setting SQLITE_DBCONFIG_DQS_DDL to 0 is 0
2024-09-15 12:40:55.698 Info ActivityRepository: Result of setting SQLITE_DBCONFIG_DQS_DML to 0 is 0
2024-09-15 12:40:55.725 Info NetworkManager: Detecting local network addresses
2024-09-15 12:40:55.727 Info NetworkManager: networkInterface: Ethernet eth0, Speed: 10000000000, Description: eth0
2024-09-15 12:40:55.732 Info NetworkManager: GatewayAddresses: 172.23.0.1
2024-09-15 12:40:55.734 Info NetworkManager: UnicastAddresses: 172.23.0.3
2024-09-15 12:40:55.736 Info NetworkManager: networkInterface: Loopback lo, Speed: -1, Description: lo
2024-09-15 12:40:55.736 Info NetworkManager: GatewayAddresses: 
2024-09-15 12:40:55.736 Info NetworkManager: UnicastAddresses: 127.0.0.1
2024-09-15 12:40:55.792 Info NetworkManager: Detected local ip addresses: [{"IPAddress":"172.23.0.3","HasGateWayAddress":true,"PrefixLength":16,"IPv4Mask":"255.255.0.0"},{"IPAddress":"127.0.0.1","HasGateWayAddress":false,"PrefixLength":8,"IPv4Mask":"255.0.0.0"}]
2024-09-15 12:40:55.805 Info App: Adding HttpListener prefix http://+:8096/
2024-09-15 12:40:55.881 Info AuthenticationRepository: Opening sqlite connection to /config/data/authentication.db
2024-09-15 12:40:55.882 Info AuthenticationRepository: Default journal_mode for /config/data/authentication.db is wal
2024-09-15 12:40:55.882 Info AuthenticationRepository: PRAGMA foreign_keys=1
2024-09-15 12:40:55.882 Info AuthenticationRepository: Result of setting SQLITE_DBCONFIG_DQS_DDL to 0 is 0
2024-09-15 12:40:55.883 Info AuthenticationRepository: Result of setting SQLITE_DBCONFIG_DQS_DML to 0 is 0
2024-09-15 12:40:55.887 Info SqliteItemRepository: Opening sqlite connection to /config/data/library.db
2024-09-15 12:40:55.906 Info SqliteItemRepository: Default journal_mode for /config/data/library.db is wal
2024-09-15 12:40:55.910 Info SqliteItemRepository: PRAGMA cache_size=-131072
2024-09-15 12:40:55.910 Info SqliteItemRepository: PRAGMA page_size=4096
2024-09-15 12:40:55.910 Info SqliteItemRepository: PRAGMA foreign_keys=1
2024-09-15 12:40:55.910 Info SqliteItemRepository: Result of setting SQLITE_DBCONFIG_DQS_DDL to 0 is 0
2024-09-15 12:40:55.910 Info SqliteItemRepository: Result of setting SQLITE_DBCONFIG_DQS_DML to 0 is 0
2024-09-15 12:40:55.950 Info SqliteItemRepository: Init Complete
2024-09-15 12:40:56.257 Info Server: http/1.1 Response 503 to host1. Time: 22ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:40:56.468 Info App: Emby Server 4.9.0.30
   Command line: /app/emby/system/EmbyServer.dll -programdata /config -ffdetect /app/emby/bin/ffdetect -ffmpeg /app/emby/bin/ffmpeg -ffprobe /app/emby/bin/ffprobe -restartexitcode 3
   Operating system: Linux version 6.8.0-39-generic (buildd@lcy02-amd64-051) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubunt
   OS/Process: x64/x64
   Framework: .NET 8.0.6
   Runtime: app/emby/system/System.Private.CoreLib.dll
   Processor count: 8
   Data path: /config
   Application path: /app/emby/system
2024-09-15 12:40:56.468 Info App: Logs path: /config/logs
2024-09-15 12:40:56.468 Info App: Cache path: /config/cache
2024-09-15 12:40:56.468 Info App: Internal metadata path: /config/metadata
2024-09-15 12:40:56.469 Info App: Transcoding temporary files path: /config/transcoding-temp
2024-09-15 12:40:56.469 Info App: DefaultThreadCurrentCulture: it
2024-09-15 12:40:56.469 Info App: DefaultThreadCurrentUICulture: it
2024-09-15 12:40:56.469 Info App: DefaultThreadCurrentUICulture: it
2024-09-15 12:40:56.469 Info App: Local time: 15/09/2024 12:40:56 +01:00
2024-09-15 12:40:56.767 Info Server: http/1.1 Response 503 to host1. Time: 0ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:40:57.280 Info Server: http/1.1 Response 503 to host1. Time: 0ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:40:57.795 Info Server: http/1.1 Response 503 to host1. Time: 0ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:40:58.311 Info Server: http/1.1 Response 503 to host1. Time: 1ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:40:58.468 Info FfmpegManager: FFMpeg: /app/emby/bin/ffmpeg
2024-09-15 12:40:58.468 Info FfmpegManager: FFProbe: /app/emby/bin/ffprobe
2024-09-15 12:40:58.468 Info FfmpegManager: FFDetect: /app/emby/bin/ffdetect
2024-09-15 12:40:58.827 Info Server: http/1.1 Response 503 to host1. Time: 0ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:40:59.048 Info Skia: SkiaSharp version: 2.88.0.0
2024-09-15 12:40:59.347 Info Server: http/1.1 Response 503 to host1. Time: 0ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:40:59.865 Info Server: http/1.1 Response 503 to host1. Time: 1ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:41:00.378 Info Server: http/1.1 Response 503 to host1. Time: 0ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:41:00.898 Info Server: http/1.1 Response 503 to host1. Time: 0ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:41:01.411 Info Server: http/1.1 Response 503 to host1. Time: 0ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:41:01.929 Info Server: http/1.1 Response 503 to host1. Time: 0ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:41:02.444 Info Server: http/1.1 Response 503 to host1. Time: 1ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:41:02.887 Info libvips: NetVips version: 2.3.1.0
2024-09-15 12:41:02.889 Info ImageProcessor: Adding image processor Skia
2024-09-15 12:41:02.889 Info ImageProcessor: Adding image processor libvips
2024-09-15 12:41:02.965 Info Server: http/1.1 Response 503 to host1. Time: 0ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:41:03.173 Info TaskManager: Daily trigger for Emby Server Backup set to fire at 09/16/2024 00:10:00, which is 688.947145335 minutes from now.
2024-09-15 12:41:03.210 Info TaskManager: Daily trigger for Video preview thumbnail extraction set to fire at 09/16/2024 02:00:00, which is 798.9465051366667 minutes from now.
2024-09-15 12:41:03.387 Info TaskManager: Daily trigger for Rotate log file set to fire at 09/16/2024 00:00:00, which is 678.9435410116666 minutes from now.
2024-09-15 12:41:03.417 Info TaskManager: Queueing task HardwareDetectionScheduledTask
2024-09-15 12:41:03.426 Info TaskManager: Executing Hardware Detection
2024-09-15 12:41:03.458 Info App: ServerId: e7c44d52623d423080fc556a2c1f8e7b
2024-09-15 12:41:03.496 Info Server: http/1.1 Response 503 to host1. Time: 0ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:41:03.499 Info FfmpegManager: ProcessRun 'ffmpeg -hide_banner -version' Execute: /app/emby/bin/ffmpeg -hide_banner -version
2024-09-15 12:41:03.592 Info App: Starting entry point Emby.Dlna.Main.DlnaEntryPoint
2024-09-15 12:41:04.013 Info Server: http/1.1 Response 503 to host1. Time: 0ms. GET http://host2:8096/emby/System/Info?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:41:04.167 Info App: Entry point completed: Emby.Dlna.Main.DlnaEntryPoint. Duration: 0.5752386 seconds
2024-09-15 12:41:04.167 Info App: Starting entry point Emby.Server.Implementations.Networking.RemoteAddressEntryPoint
2024-09-15 12:41:04.169 Info App: Loading data from /config/data/wan.dat
2024-09-15 12:41:04.171 Info App: Entry point completed: Emby.Server.Implementations.Networking.RemoteAddressEntryPoint. Duration: 0.0040528 seconds
2024-09-15 12:41:04.171 Info App: Starting entry point Emby.Server.Connect.ConnectEntryPoint
2024-09-15 12:41:04.176 Info App: Loading data from /config/data/connect.txt
2024-09-15 12:41:04.177 Info App: Entry point completed: Emby.Server.Connect.ConnectEntryPoint. Duration: 0.0051863 seconds
2024-09-15 12:41:04.177 Info App: Core startup complete
2024-09-15 12:41:04.178 Info App: Starting entry point NfoMetadata.EntryPoint
2024-09-15 12:41:04.179 Info App: Entry point completed: NfoMetadata.EntryPoint. Duration: 0.0005772 seconds
2024-09-15 12:41:04.179 Info App: Starting entry point Emby.Webhooks.MigrationEntryPoint
2024-09-15 12:41:04.181 Info App: Entry point completed: Emby.Webhooks.MigrationEntryPoint. Duration: 0.0016964 seconds
2024-09-15 12:41:04.181 Info App: Starting entry point Emby.SecurityCams.ServerEntryPoint
2024-09-15 12:41:04.181 Info App: Entry point completed: Emby.SecurityCams.ServerEntryPoint. Duration: 0.0001594 seconds
2024-09-15 12:41:04.181 Info App: Starting entry point MovieDb.Security.PluginStartup
2024-09-15 12:41:04.183 Info App: Entry point completed: MovieDb.Security.PluginStartup. Duration: 0.0019622 seconds
2024-09-15 12:41:04.183 Info App: Starting entry point MediaBrowser.Plugins.Trailers.EntryPoint
2024-09-15 12:41:04.183 Info App: Entry point completed: MediaBrowser.Plugins.Trailers.EntryPoint. Duration: 0.0001089 seconds
2024-09-15 12:41:04.183 Info App: Starting entry point Emby.Security.PluginSecurityManager
2024-09-15 12:41:04.183 Info App: Entry point completed: Emby.Security.PluginSecurityManager. Duration: 9.59E-05 seconds
2024-09-15 12:41:04.183 Info App: Starting entry point Emby.Server.CinemaMode.IntrosEntryPoint
2024-09-15 12:41:04.184 Info App: Entry point completed: Emby.Server.CinemaMode.IntrosEntryPoint. Duration: 0.0003238 seconds
2024-09-15 12:41:04.184 Info App: Starting entry point MBBackup.ServerEntryPoint
2024-09-15 12:41:04.184 Info App: Entry point completed: MBBackup.ServerEntryPoint. Duration: 6.83E-05 seconds
2024-09-15 12:41:04.184 Info App: Starting entry point Emby.PortMapper.ExternalPortForwarding
2024-09-15 12:41:04.188 Info App: Entry point completed: Emby.PortMapper.ExternalPortForwarding. Duration: 0.003852 seconds
2024-09-15 12:41:04.188 Info App: Starting entry point Tvdb.EntryPoint
2024-09-15 12:41:04.188 Info App: Entry point completed: Tvdb.EntryPoint. Duration: 6.13E-05 seconds
2024-09-15 12:41:04.188 Info App: Starting entry point Emby.Server.Implementations.Udp.UdpServerEntryPoint
2024-09-15 12:41:04.191 Info App: Entry point completed: Emby.Server.Implementations.Udp.UdpServerEntryPoint. Duration: 0.0027178 seconds
2024-09-15 12:41:04.191 Info App: Starting entry point Emby.Server.Implementations.Playlists.PlaylistUpgradeEntryPoint
2024-09-15 12:41:04.194 Info App: Entry point completed: Emby.Server.Implementations.Playlists.PlaylistUpgradeEntryPoint. Duration: 0.0031941 seconds
2024-09-15 12:41:04.194 Info App: Starting entry point Emby.Server.Implementations.Library.DeviceAccessEntryPoint
2024-09-15 12:41:04.195 Info App: Entry point completed: Emby.Server.Implementations.Library.DeviceAccessEntryPoint. Duration: 0.0006262 seconds
2024-09-15 12:41:04.195 Info App: Starting entry point Emby.Server.Implementations.IO.LibraryMonitorStartup
2024-09-15 12:41:04.256 Info App: Init BeginReceive on 0.0.0.0
2024-09-15 12:41:04.256 Info App: Init BeginReceive on 0.0.0.0
2024-09-15 12:41:04.256 Info App: Init BeginReceive on 172.23.0.3
2024-09-15 12:41:04.256 Info App: Init BeginReceive on 127.0.0.1
2024-09-15 12:41:04.304 Info App: Entry point completed: Emby.Server.Implementations.IO.LibraryMonitorStartup. Duration: 0.1092268 seconds
2024-09-15 12:41:04.304 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.AutomaticRestartEntryPoint
2024-09-15 12:41:04.305 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.AutomaticRestartEntryPoint. Duration: 0.0007316 seconds
2024-09-15 12:41:04.305 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.KeepServerAwake
2024-09-15 12:41:04.305 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.KeepServerAwake. Duration: 0.0002954 seconds
2024-09-15 12:41:04.305 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.LibraryChangedNotifier
2024-09-15 12:41:04.307 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.LibraryChangedNotifier. Duration: 0.0015477 seconds
2024-09-15 12:41:04.307 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.ServerEventNotifier
2024-09-15 12:41:04.310 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.ServerEventNotifier. Duration: 0.0026135 seconds
2024-09-15 12:41:04.310 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.StartupWizard
2024-09-15 12:41:04.310 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.StartupWizard. Duration: 0.000487 seconds
2024-09-15 12:41:04.310 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.SystemEvents
2024-09-15 12:41:04.311 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.SystemEvents. Duration: 0.0004136 seconds
2024-09-15 12:41:04.311 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.UserDataChangeNotifier
2024-09-15 12:41:04.311 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.UserDataChangeNotifier. Duration: 0.0002555 seconds
2024-09-15 12:41:04.311 Info App: Starting entry point Emby.Server.Implementations.Channels.ChannelsEntryPoint
2024-09-15 12:41:04.364 Info LibraryMonitor: Watching directory with new FileSystemWatcher for /data/movies for item 4
2024-09-15 12:41:04.366 Info App: Entry point completed: Emby.Server.Implementations.Channels.ChannelsEntryPoint. Duration: 0.055135 seconds
2024-09-15 12:41:04.366 Info App: Starting entry point Emby.LiveTV.EntryPoint
2024-09-15 12:41:04.368 Info LiveTV: Loading live tv data from /config/data/livetv/timers
2024-09-15 12:41:04.370 Info App: Entry point completed: Emby.LiveTV.EntryPoint. Duration: 0.0038372 seconds
2024-09-15 12:41:04.370 Info App: Starting entry point Emby.LiveTV.RecordingNotifier
2024-09-15 12:41:04.373 Info App: Entry point completed: Emby.LiveTV.RecordingNotifier. Duration: 0.0024614 seconds
2024-09-15 12:41:04.373 Info App: Starting entry point Emby.ActivityLog.ActivityLogEntryPoint
2024-09-15 12:41:04.375 Info App: Entry point completed: Emby.ActivityLog.ActivityLogEntryPoint. Duration: 0.0025206 seconds
2024-09-15 12:41:04.375 Info App: Starting entry point Emby.Server.MediaEncoding.Api.EncodingManagerEntryPoint
2024-09-15 12:41:04.460 Info App: Entry point completed: Emby.Server.MediaEncoding.Api.EncodingManagerEntryPoint. Duration: 0.0844327 seconds
2024-09-15 12:41:04.460 Info App: Starting entry point Emby.Notifications.NotificationManagerEntryPoint
2024-09-15 12:41:04.485 Info Notifications: Registering event nofitier Emby Server User Notifications
2024-09-15 12:41:04.494 Info App: Entry point completed: Emby.Notifications.NotificationManagerEntryPoint. Duration: 0.0338029 seconds
2024-09-15 12:41:04.494 Info App: Starting entry point Emby.Server.Sync.SyncNotificationEntryPoint
2024-09-15 12:41:04.496 Info App: Entry point completed: Emby.Server.Sync.SyncNotificationEntryPoint. Duration: 0.0016371 seconds
2024-09-15 12:41:04.496 Info App: Starting entry point EmbyServer.Windows.LoopUtilEntryPoint
2024-09-15 12:41:04.496 Info App: Entry point completed: EmbyServer.Windows.LoopUtilEntryPoint. Duration: 0.0001503 seconds
2024-09-15 12:41:04.496 Info App: All entry points have started
2024-09-15 12:41:04.570 Info LibraryMonitor: Watching directory with new FileSystemWatcher for /data/tvshows for item 37
2024-09-15 12:41:05.918 Info Server: http/1.1 POST http://host2:8096/emby/Sessions/Capabilities/Full?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it&reqformat=json. Source Ip: host1, UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36
2024-09-15 12:41:06.007 Info Server: http/1.1 Response 204 to host1. Time: 90ms. POST http://host2:8096/emby/Sessions/Capabilities/Full?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXXXXXXXXXXXX-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it&reqformat=json
2024-09-15 12:41:06.155 Info FfmpegManager: ProcessRun 'ffmpeg -hide_banner -version' Process exited with code 0 - Succeeded
2024-09-15 12:41:06.234 Info FfmpegManager: FfmpegValidator.Validate complete
2024-09-15 12:41:06.379 Info TaskManager: Queueing task PluginUpdateTask
2024-09-15 12:41:06.379 Info TaskManager: Executing Check for plugin updates
2024-09-15 12:41:06.383 Info TaskManager: Queueing task SystemUpdateTask
2024-09-15 12:41:06.384 Info TaskManager: Executing Check for application updates
2024-09-15 12:41:06.411 Info TaskManager: Queueing task SubtitleOcrDataTask
2024-09-15 12:41:06.411 Info TaskManager: Executing Download OCR Data
2024-09-15 12:41:06.507 Info HttpClient: GET https://www.mb3admin.com/admin/service/EmbyPackages.json
2024-09-15 12:41:06.508 Info HttpClient: GET https://api.github.com/repos/MediaBrowser/Emby.Releases/releases
2024-09-15 12:41:06.561 Info TaskManager: Download OCR Data Completed after 0 minute(s) and 0 seconds
2024-09-15 12:41:06.660 Info SoftwareCodecProvider: h264, libx264, x264, V-E-libx264
2024-09-15 12:41:06.660 Info SoftwareCodecProvider: hevc, libx265, x265, V-E-libx265
2024-09-15 12:41:06.660 Info SoftwareCodecProvider: mpeg4, mpeg4, MPEG-4 part 2, V-E-mpeg4
2024-09-15 12:41:06.660 Info SoftwareCodecProvider: msmpeg4v3, msmpeg4, MPEG-4 part 2 (MS Variant 3), V-E-msmpeg4
2024-09-15 12:41:06.661 Info SoftwareCodecProvider: vp8, libvpx, libvpx VP8, V-E-libvpx
2024-09-15 12:41:06.671 Info SoftwareCodecProvider: h264, libx264, x264, V-E-libx264
2024-09-15 12:41:06.671 Info SoftwareCodecProvider: hevc, libx265, x265, V-E-libx265
2024-09-15 12:41:06.671 Info SoftwareCodecProvider: mpeg4, mpeg4, MPEG-4 part 2, V-E-mpeg4
2024-09-15 12:41:06.671 Info SoftwareCodecProvider: msmpeg4v3, msmpeg4, MPEG-4 part 2 (MS Variant 3), V-E-msmpeg4
2024-09-15 12:41:06.671 Info SoftwareCodecProvider: vp8, libvpx, libvpx VP8, V-E-libvpx
2024-09-15 12:41:06.697 Info VaapiCodecProvider: ProcessRun 'ffdetect_vaencdec' Execute: /app/emby/bin/ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 vaencdec -print_format json 
2024-09-15 12:41:06.740 Info VaapiCodecProvider: ProcessRun 'ffdetect_vaencdec' Process exited with code 0 - Succeeded
2024-09-15 12:41:06.817 Info VaapiCodecProvider: Adapter #0: 'Alder Lake-N UHD Graphics' Id:18128 (Driver: , Vendor: Intel Corporation)
2024-09-15 12:41:06.822 Info QuickSyncCodecProvider: ProcessRun 'ffdetect_qsvencdec' Execute: /app/emby/bin/ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 qsvencdec -print_format json 
2024-09-15 12:41:06.844 Info QuickSyncCodecProvider: ProcessRun 'ffdetect_qsvencdec' Process exited with code 0 - Succeeded
2024-09-15 12:41:06.902 Info NvidiaCodecProvider: ProcessRun 'ffdetect_nvencdec' Execute: /app/emby/bin/ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 nvencdec -print_format json 
2024-09-15 12:41:06.905 Info NvidiaCodecProvider: ProcessRun 'ffdetect_nvencdec' Process exited with code 1 - Failed
2024-09-15 12:41:07.256 Info CodecManager: CodecList:
2024-09-15 12:41:07.256 Info TaskManager: Hardware Detection Completed after 0 minute(s) and 3 seconds
2024-09-15 12:41:07.503 Info App: No application update available.
2024-09-15 12:41:07.503 Info TaskManager: Check for application updates Completed after 0 minute(s) and 1 seconds
2024-09-15 12:41:07.989 Info TaskManager: Check for plugin updates Completed after 0 minute(s) and 1 seconds
2024-09-15 12:41:14.758 Info Server: http/1.1 POST http://host2:8096/emby/LiveTv/TunerHosts?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXXXXXXXXXXXXXXXX-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it&reqformat=json. Source Ip: host1, UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36
2024-09-15 12:41:14.787 Info HttpClient: GET  https://raw.githubusercontent.com/x_path1_x/x_path2_x/x_path3_x/x_path4_x
2024-09-15 12:41:14.989 Info TaskManager: Queueing task RefreshChannelsScheduledTask
2024-09-15 12:41:14.989 Info TaskManager: Executing Refresh Guide
2024-09-15 12:41:14.991 Info Server: http/1.1 Response 200 to host1. Time: 233ms. POST http://host2:8096/emby/LiveTv/TunerHosts?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXXXXXXXXXXXX-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it&reqformat=json
2024-09-15 12:41:15.009 Info LiveTvManager: Emby Live TV and DVR requires an active Emby Premiere subscription.
2024-09-15 12:41:15.014 Info LiveTV: Loading live tv data from /config/data/livetv/seriestimers
2024-09-15 12:41:15.018 Info TaskManager: Refresh Guide Completed after 0 minute(s) and 0 seconds
2024-09-15 12:41:34.403 Info Server: http/1.1 POST http://host2:8096/emby/ScheduledTasks/Running/XXXXXXXXXXXXXXX?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it. Source Ip: host1, UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36
2024-09-15 12:41:34.406 Info Server: http/1.1 Response 204 to host1. Time: 3ms. POST http://host2:8096/emby/ScheduledTasks/Running/XXXXXXXXXXXXXXXXXX?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome Windows&X-Emby-Device-Id=XXXXXd&X-Emby-Client-Version=4.9.0.30&X-Emby-Token=x_secret1_x&X-Emby-Language=it
2024-09-15 12:41:34.406 Info TaskManager: Executing Refresh Internet Channels
2024-09-15 12:41:34.469 Info Security Cams: Writing info to SecurityCams.m3u8 in FolderPath:  
2024-09-15 12:41:34.484 Info TaskManager: Refresh Internet Channels Completed after 0 minute(s) and 0 seconds```

</details>

@OrpheeGT
Copy link

You seems to have an issue with patch.

2024-09-15 12:41:15.009 Info LiveTvManager: Emby Live TV and DVR requires an active Emby Premiere subscription.

You must have failed somewere, client or server...

Here is my log when I launch IPTV Rai channel :

2024-09-15 14:09:56.671 Info Server: http/1.1 POST http://host2/emby/Items/5779/PlaybackInfo?UserId=df02d0d5b6274e4a9320772fe4ff5ab2&StartTimeTicks=0&IsPlayback=true&AutoOpenLiveStream=true&MaxStreamingBitrate=160000000&X-Emby-Client=Emby Web&X-Emby-Device-Name=Firefox&X-Emby-Device-Id=d9a076b1-5397-48eb-b935-6dbdf9a15295&X-Emby-Client-Version=4.7.14.0&X-Emby-Language=fr&reqformat=json. UserAgent: Mozilla/5.0 (X11; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0
2024-09-15 14:09:56.672 Info App: User policy for orphee. EnablePlaybackRemuxing: True EnableVideoPlaybackTranscoding: True EnableAudioPlaybackTranscoding: True
2024-09-15 14:09:56.672 Info LiveTvManager: Opening channel stream, external channel Id: m3u_e9483cacdab781d97b910ef3463c740d3fdcca37d52201a9f41aef54376fa89b
2024-09-15 14:09:56.672 Info LiveTV: Streaming Channel m3u_e9483cacdab781d97b910ef3463c740d3fdcca37d52201a9f41aef54376fa89b, with streamId: 3fdcca37d52201a9f41aef54376fa89b
2024-09-15 14:09:56.672 Info SharedHttpPipelineSource: Opening SharedHttpPipelineSource Live stream from http://host6/x_path5_x/x_path6_x?cont=2606803&output=7&forceUserAgent=raiplayappletv
2024-09-15 14:09:56.672 Info HttpClient: GET http://host6/x_path5_x/x_path6_x?cont=2606803&output=7&forceUserAgent=raiplayappletv
2024-09-15 14:09:56.864 Info HttpClient: Http response 200 from http://host6/x_path5_x/x_path6_x?cont=2606803&output=7&forceUserAgent=raiplayappletv after 192ms. HeadersAccept-Ranges=bytes, ETag="51a83016a9c866c8213e52cdbcd19d3d:1415293655", Server=AkamaiNetStorage, Cache-Control=max-age=27678836, Date=Sun, 15 Sep 2024 12:09:56 GMT, Connection=keep-alive, Akamai-Mon-Iucid-Del=631717, Alt-Svc=h3-Q050=":443"; ma=93600 quic=":443"; ma=93600, Access-Control-Max-Age=86400, Access-Control-Allow-Credentials=true, Access-Control-Expose-Headers=Server,range,hdntl,hdnts,Akamai-Mon-Iucid-Ing,Akamai-Mon-Iucid-Del, Access-Control-Allow-Headers=origin,range,hdntl,hdnts, Access-Control-Allow-Methods=GET,POST,OPTIONS, Access-Control-Allow-Origin=*
2024-09-15 14:09:56.865 Info M3UTunerHost: Live stream opened after 192.4247ms
2024-09-15 14:09:56.865 Info LiveTV: Returning mediasource streamId 3fdcca37d52201a9f41aef54376fa89b, mediaSource.Id 3fdcca37d52201a9f41aef54376fa89b, mediaSource.LiveStreamId 
2024-09-15 14:09:59.865 Info MediaProbeManager: ProcessRun 'ffprobe' Execute: /var/packages/EmbyServer/target/bin/ffprobe -analyzeduration 3000000 -user_agent "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36" -i "http://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=2606803&output=7&forceUserAgent=raiplayappletv" -threads 0 -v info -print_format json -show_streams -show_format -show_data
2024-09-15 14:10:00.059 Info MediaProbeManager: ProcessRun 'ffprobe' Process exited with code 0 - Succeeded
2024-09-15 14:10:00.063 Info MediaSourceManager: Live stream opened: {"Protocol":"Http","Id":"3fdcca37d52201a9f41aef54376fa89b","Path":"http://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=2606803&output=7&forceUserAgent=raiplayappletv","Type":"Default","Container":"mp4","Size":1687158,"IsRemote":true,"RunTimeTicks":157992000,"ContainerStartTimeTicks":4000000,"SupportsTranscoding":true,"SupportsDirectStream":false,"SupportsDirectPlay":false,"IsInfiniteStream":false,"RequiresOpening":true,"RequiresClosing":true,"LiveStreamId":"06044cf0e6f93cdae5f285c9ecfaaeb4_01413a525b3a9622ce6fdf19f7dde354_3fdcca37d52201a9f41aef54376fa89b","RequiresLooping":true,"SupportsProbing":false,"MediaStreams":[{"Codec":"h264","CodecTag":"avc1","Language":"eng","StreamStartTimeTicks":4000000,"TimeBase":"1/10000","VideoRange":"SDR","DisplayTitle":"576p H264","DisplayLanguage":"English","NalLengthSize":"4","IsInterlaced":false,"BitRate":852905,"BitDepth":8,"RefFrames":1,"IsDefault":true,"IsForced":false,"Height":576,"Width":1024,"AverageFrameRate":7.341772,"RealFrameRate":20,"Profile":"Main","Type":"Video","AspectRatio":"16:9","Index":0,"IsExternal":false,"IsTextSubtitleStream":false,"SupportsExternalStream":false,"Protocol":"File","PixelFormat":"yuv420p","Level":31,"IsAnamorphic":false}],"Formats":[],"Bitrate":852905,"RequiredHttpHeaders":{"User-Agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36","Referrer":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36"},"ReadAtNativeFramerate":false}
2024-09-15 14:10:00.063 Info App: User policy for orphee. EnablePlaybackRemuxing: True EnableVideoPlaybackTranscoding: True EnableAudioPlaybackTranscoding: True
2024-09-15 14:10:00.063 Info Server: http/1.1 Response 200 to host3. Time: 3393ms. http://host2/emby/Items/5779/PlaybackInfo?UserId=df02d0d5b6274e4a9320772fe4ff5ab2&StartTimeTicks=0&IsPlayback=true&AutoOpenLiveStream=true&MaxStreamingBitrate=160000000&X-Emby-Client=Emby Web&X-Emby-Device-Name=Firefox&X-Emby-Device-Id=d9a076b1-5397-48eb-b935-6dbdf9a15295&X-Emby-Client-Version=4.7.14.0&X-Emby-Language=fr&reqformat=json
2024-09-15 14:10:00.116 Info Server: http/1.1 GET http://host2/emby/videos/5779/master.m3u8?DeviceId=d9a076b1-5397-48eb-b935-6dbdf9a15295&MediaSourceId=3fdcca37d52201a9f41aef54376fa89b&PlaySessionId=d227880ae1ba445390ca9df89919e9bd&LiveStreamId=06044cf0e6f93cdae5f285c9ecfaaeb4_01413a525b3a9622ce6fdf19f7dde354_3fdcca37d52201a9f41aef54376fa89b&VideoCodec=h264&VideoBitrate=160000000&TranscodingMaxAudioChannels=2&SegmentContainer=m4s,ts&MinSegments=1&BreakOnNonKeyFrames=True&SubtitleStreamIndexes=-1&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline&h264-level=52. Accept=*/*, Host=movie.orphee.me, User-Agent=Mozilla/5.0 (X11; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0, Accept-Encoding=gzip, deflate, br, zstd, Accept-Language=fr,fr-FR;q=0.8,en-US;q=0.5,en;q=0.3, Referer=https://movie.orphee.me/web/index.html, TE=trailers, DNT=1, [email protected], Remote-Groups=admins,dev, Remote-Name=Orphee, Remote-User=orphee, Sec-Fetch-Dest=empty, Sec-Fetch-Mode=cors, Sec-Fetch-Site=same-origin, X-Forwarded-For=192.168.1.132, X-Forwarded-Host=movie.orphee.me, X-Forwarded-Port=443, X-Forwarded-Proto=https, X-Forwarded-Server=6d409acfefb0, X-Real-Ip=192.168.1.132
2024-09-15 14:10:00.118 Info Server: http/1.1 Response 200 to host3. Time: 2ms. http://host2/emby/videos/5779/master.m3u8?DeviceId=d9a076b1-5397-48eb-b935-6dbdf9a15295&MediaSourceId=3fdcca37d52201a9f41aef54376fa89b&PlaySessionId=d227880ae1ba445390ca9df89919e9bd&LiveStreamId=06044cf0e6f93cdae5f285c9ecfaaeb4_01413a525b3a9622ce6fdf19f7dde354_3fdcca37d52201a9f41aef54376fa89b&VideoCodec=h264&VideoBitrate=160000000&TranscodingMaxAudioChannels=2&SegmentContainer=m4s,ts&MinSegments=1&BreakOnNonKeyFrames=True&SubtitleStreamIndexes=-1&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline&h264-level=52
2024-09-15 14:10:00.158 Info Server: http/1.1 GET http://host2/emby/videos/5779/main.m3u8?DeviceId=d9a076b1-5397-48eb-b935-6dbdf9a15295&MediaSourceId=3fdcca37d52201a9f41aef54376fa89b&PlaySessionId=d227880ae1ba445390ca9df89919e9bd&LiveStreamId=06044cf0e6f93cdae5f285c9ecfaaeb4_01413a525b3a9622ce6fdf19f7dde354_3fdcca37d52201a9f41aef54376fa89b&VideoCodec=h264&VideoBitrate=160000000&TranscodingMaxAudioChannels=2&SegmentContainer=m4s,ts&MinSegments=1&BreakOnNonKeyFrames=True&SubtitleStreamIndexes=-1&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline&h264-level=52. Accept=*/*, Host=movie.orphee.me, User-Agent=Mozilla/5.0 (X11; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0, Accept-Encoding=gzip, deflate, br, zstd, Accept-Language=fr,fr-FR;q=0.8,en-US;q=0.5,en;q=0.3, Referer=https://movie.orphee.me/web/index.html, TE=trailers, DNT=1, [email protected], Remote-Groups=admins,dev, Remote-Name=Orphee, Remote-User=orphee, Sec-Fetch-Dest=empty, Sec-Fetch-Mode=cors, Sec-Fetch-Site=same-origin, X-Forwarded-For=192.168.1.132, X-Forwarded-Host=movie.orphee.me, X-Forwarded-Port=443, X-Forwarded-Proto=https, X-Forwarded-Server=6d409acfefb0, X-Real-Ip=192.168.1.132
2024-09-15 14:10:00.159 Info Server: http/1.1 Response 200 to host3. Time: 1ms. http://host2/emby/videos/5779/main.m3u8?DeviceId=d9a076b1-5397-48eb-b935-6dbdf9a15295&MediaSourceId=3fdcca37d52201a9f41aef54376fa89b&PlaySessionId=d227880ae1ba445390ca9df89919e9bd&LiveStreamId=06044cf0e6f93cdae5f285c9ecfaaeb4_01413a525b3a9622ce6fdf19f7dde354_3fdcca37d52201a9f41aef54376fa89b&VideoCodec=h264&VideoBitrate=160000000&TranscodingMaxAudioChannels=2&SegmentContainer=m4s,ts&MinSegments=1&BreakOnNonKeyFrames=True&SubtitleStreamIndexes=-1&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline&h264-level=52
2024-09-15 14:10:00.188 Info Server: http/1.1 GET http://host2/emby/videos/5779/hls1/main/0.ts?PlaySessionId=d227880ae1ba445390ca9df89919e9bd. Accept=*/*, Host=movie.orphee.me, User-Agent=Mozilla/5.0 (X11; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0, Accept-Encoding=gzip, deflate, br, zstd, Accept-Language=fr,fr-FR;q=0.8,en-US;q=0.5,en;q=0.3, Referer=https://movie.orphee.me/web/index.html, TE=trailers, DNT=1, [email protected], Remote-Groups=admins,dev, Remote-Name=Orphee, Remote-User=orphee, Sec-Fetch-Dest=empty, Sec-Fetch-Mode=cors, Sec-Fetch-Site=same-origin, X-Forwarded-For=192.168.1.132, X-Forwarded-Host=movie.orphee.me, X-Forwarded-Port=443, X-Forwarded-Proto=https, X-Forwarded-Server=6d409acfefb0, X-Real-Ip=192.168.1.132
2024-09-15 14:10:00.210 Info App: ProcessRun 'StreamTranscode 4128e0' Execute: /var/packages/EmbyServer/target/bin/ffmpeg -loglevel +timing -y -print_graphs_file "/var/packages/EmbyServer/var/logs/ffmpeg-remux-4128e0a5-6b7b-410b-9bbb-0d4abd4b3370_1graph.txt" -copyts -start_at_zero -f mp4 -noaccurate_seek -stream_loop -1 -c:v:0 h264 -user_agent "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36" -multiple_requests 1 -reconnect_streamed 1 -reconnect_delay_max 2 -i "http://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=2606803&output=7&forceUserAgent=raiplayappletv" -map 0:0 -an -sn -c:v:0 copy -bsf:v:0 h264_mp4toannexb -max_delay 5000000 -avoid_negative_ts disabled -f segment -map_metadata -1 -map_chapters -1 -segment_format mpegts -segment_list "/var/packages/EmbyServer/var/transcoding-temp/227702/227702.m3u8" -segment_list_type m3u8 -segment_time 00:00:06.000 -segment_start_number 0 -break_non_keyframes 1 -individual_header_trailer 0 -write_header_trailer 0 -segment_write_temp 1 "/var/packages/EmbyServer/var/transcoding-temp/227702/227702_%d.ts"
2024-09-15 14:10:00.543 Info Server: http/1.1 Response 200 to host3. Time: 356ms. http://host2/emby/videos/5779/hls1/main/0.ts?PlaySessionId=d227880ae1ba445390ca9df89919e9bd
2024-09-15 14:10:00.607 Info Server: http/1.1 GET http://host2/emby/videos/5779/hls1/main/1.ts?PlaySessionId=d227880ae1ba445390ca9df89919e9bd. Accept=*/*, Host=movie.orphee.me, User-Agent=Mozilla/5.0 (X11; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0, Accept-Encoding=gzip, deflate, br, zstd, Accept-Language=fr,fr-FR;q=0.8,en-US;q=0.5,en;q=0.3, Referer=https://movie.orphee.me/web/index.html, TE=trailers, DNT=1, [email protected], Remote-Groups=admins,dev, Remote-Name=Orphee, Remote-User=orphee, Sec-Fetch-Dest=empty, Sec-Fetch-Mode=cors, Sec-Fetch-Site=same-origin, X-Forwarded-For=192.168.1.132, X-Forwarded-Host=movie.orphee.me, X-Forwarded-Port=443, X-Forwarded-Proto=https, X-Forwarded-Server=6d409acfefb0, X-Real-Ip=192.168.1.132
2024-09-15 14:10:00.644 Info Server: http/1.1 POST http://host2/emby/Sessions/Playing?X-Emby-Client=Emby Web&X-Emby-Device-Name=Firefox&X-Emby-Device-Id=d9a076b1-5397-48eb-b935-6dbdf9a15295&X-Emby-Client-Version=4.7.14.0&X-Emby-Language=fr&reqformat=json. UserAgent: Mozilla/5.0 (X11; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0
2024-09-15 14:10:00.645 Info Server: http/1.1 POST http://host2/emby/Sessions/Playing/Progress?X-Emby-Client=Emby Web&X-Emby-Device-Name=Firefox&X-Emby-Device-Id=d9a076b1-5397-48eb-b935-6dbdf9a15295&X-Emby-Client-Version=4.7.14.0&X-Emby-Language=fr&reqformat=json. UserAgent: Mozilla/5.0 (X11; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0
2024-09-15 14:10:00.646 Info Server: http/1.1 Response 204 to host3. Time: 2ms. http://host2/emby/Sessions/Playing/Progress?X-Emby-Client=Emby Web&X-Emby-Device-Name=Firefox&X-Emby-Device-Id=d9a076b1-5397-48eb-b935-6dbdf9a15295&X-Emby-Client-Version=4.7.14.0&X-Emby-Language=fr&reqformat=json
2024-09-15 14:10:00.647 Info SessionManager: Playback start reported by app Emby Web 4.7.14.0 playing [1] Rai 1. Started at 0 ms
2024-09-15 14:10:00.647 Info Server: http/1.1 Response 204 to host3. Time: 4ms. http://host2/emby/Sessions/Playing?X-Emby-Client=Emby Web&X-Emby-Device-Name=Firefox&X-Emby-Device-Id=d9a076b1-5397-48eb-b935-6dbdf9a15295&X-Emby-Client-Version=4.7.14.0&X-Emby-Language=fr&reqformat=json
2024-09-15 14:10:00.674 Info Server: http/1.1 Response 200 to host3. Time: 67ms. http://host2/emby/videos/5779/hls1/main/1.ts?PlaySessionId=d227880ae1ba445390ca9df89919e9bd
2024-09-15 14:10:00.722 Info Server: http/1.1 GET http://host2/emby/videos/5779/hls1/main/2.ts?PlaySessionId=d227880ae1ba445390ca9df89919e9bd. Accept=*/*, Host=movie.orphee.me, User-Agent=Mozilla/5.0 (X11; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0, Accept-Encoding=gzip, deflate, br, zstd, Accept-Language=fr,fr-FR;q=0.8,en-US;q=0.5,en;q=0.3, Referer=https://movie.orphee.me/web/index.html, TE=trailers, DNT=1, [email protected], Remote-Groups=admins,dev, Remote-Name=Orphee, Remote-User=orphee, Sec-Fetch-Dest=empty, Sec-Fetch-Mode=cors, Sec-Fetch-Site=same-origin, X-Forwarded-For=192.168.1.132, X-Forwarded-Host=movie.orphee.me, X-Forwarded-Port=443, X-Forwarded-Proto=https, X-Forwarded-Server=6d409acfefb0, X-Real-Ip=192.168.1.132
2024-09-15 14:10:00.738 Info Server: http/1.1 Response 200 to host3. Time: 17ms. http://host2/emby/videos/5779/hls1/main/2.ts?PlaySessionId=d227880ae1ba445390ca9df89919e9bd
2024-09-15 14:10:01.971 Info Server: http/1.1 POST http://host2/emby/Sessions/Playing/Progress?X-Emby-Client=Emby Web&X-Emby-Device-Name=Firefox&X-Emby-Device-Id=d9a076b1-5397-48eb-b935-6dbdf9a15295&X-Emby-Client-Version=4.7.14.0&X-Emby-Language=fr&reqformat=json. UserAgent: Mozilla/5.0 (X11; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0
2024-09-15 14:10:01.972 Info Server: http/1.1 Response 204 to host3. Time: 1ms. http://host2/emby/Sessions/Playing/Progress?X-Emby-Client=Emby Web&X-Emby-Device-Name=Firefox&X-Emby-Device-Id=d9a076b1-5397-48eb-b935-6dbdf9a15295&X-Emby-Client-Version=4.7.14.0&X-Emby-Language=fr&reqformat=json
2024-09-15 14:10:02.833 Info Server: http/1.1 POST http://host2/emby/Sessions/Playing/Stopped?X-Emby-Client=Emby Web&X-Emby-Device-Name=Firefox&X-Emby-Device-Id=d9a076b1-5397-48eb-b935-6dbdf9a15295&X-Emby-Client-Version=4.7.14.0&X-Emby-Language=fr&reqformat=json. UserAgent: Mozilla/5.0 (X11; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0
2024-09-15 14:10:02.834 Info App: ProcessRun 'StreamTranscode 4128e0': Stopping ffmpeg process with q command for /var/packages/EmbyServer/var/transcoding-temp/227702/227702_0.ts
2024-09-15 14:10:02.899 Info App: AppendExtraLogData - Read graph file: /var/packages/EmbyServer/var/logs/ffmpeg-remux-4128e0a5-6b7b-410b-9bbb-0d4abd4b3370_1graph.txt
2024-09-15 14:10:02.899 Info App: AppendExtraLogData - Deserialized GraphData fileStream: 27.00 bytes Graph Count: 0
2024-09-15 14:10:02.900 Info App: AppendExtraLogData - File Deleted
2024-09-15 14:10:02.900 Info App: ProcessRun 'StreamTranscode 4128e0' Process exited with code 0 - Succeeded
2024-09-15 14:10:02.900 Info SessionManager: Playback stopped reported by app Emby Web 4.7.14.0 playing [1] Rai 1. Stopped at 1295 ms
2024-09-15 14:10:02.901 Info MediaSourceManager: Live stream 3fdcca37d52201a9f41aef54376fa89b consumer count is now 0
2024-09-15 14:10:02.901 Info MediaSourceManager: Closing live stream 06044cf0e6f93cdae5f285c9ecfaaeb4_01413a525b3a9622ce6fdf19f7dde354_3fdcca37d52201a9f41aef54376fa89b
2024-09-15 14:10:02.901 Info SharedHttpPipelineSource: Closing SharedHttpPipelineSource
2024-09-15 14:10:02.901 Info SharedHttpPipelineSource: Deleting temp files /var/packages/EmbyServer/var/transcoding-temp/332815ebb85740c0b0d0e7b581c3e084.ts
2024-09-15 14:10:02.901 Info MediaSourceManager: Live stream 06044cf0e6f93cdae5f285c9ecfaaeb4_01413a525b3a9622ce6fdf19f7dde354_3fdcca37d52201a9f41aef54376fa89b closed successfully
2024-09-15 14:10:02.901 Info Server: http/1.1 Response 204 to host3. Time: 68ms. http://host2/emby/Sessions/Playing/Stopped?X-Emby-Client=Emby Web&X-Emby-Device-Name=Firefox&X-Emby-Device-Id=d9a076b1-5397-48eb-b935-6dbdf9a15295&X-Emby-Client-Version=4.7.14.0&X-Emby-Language=fr&reqformat=json

@StefanoGiu
Copy link

What shall I do then? I followed the guide with attention...

@StefanoGiu
Copy link

Certificate not valid... is this normal?
Schermata del 2024-09-15 15-29-25

@StefanoGiu
Copy link

This is now weird... I made another restart of the Emby server (after a lot of them) without touching the config, and now I can see the channels...

@amitkhare
Copy link

amitkhare commented Sep 17, 2024

Spinner thinggy keeps spinning, But It Worked!
I and went back to home page Refreshed the page after a few seconds of submitting the random key.

@OrpheeGT
Copy link

Spinner thinggy keeps spinning, But It Worked! I and went back to home page Refreshed the page after a few seconds of submitting the random key.

Got a Badge also!

image

Try this and you won't have the infinite spinning anymore :
https://gist.github.com/danielchc/c159626485a08c76856b2d30ae457e04?permalink_comment_id=5191918#gistcomment-5191918

@StefanoGiu
Copy link

How is it possible to remove the premiere warning when playing a movie/TV series on Emby Samsung Smart TV app?

@OrpheeGT
Copy link

How is it possible to remove the premiere warning when playing a movie/TV series on Emby Samsung Smart TV app?

The device must "trust" the self signed certificate.
On android apps, you have an option to do it.

Maybe you can't do it on Samsung TV. If so, this is not fixable.

@OrpheeGT
Copy link

Here how it is shown under Android TV app :

image

@danielchc you may want to add this screen too in the tutorial for Android TV :)
I don't remember if it is enabled by default when you install the app.

@danielchc
Copy link
Author

Here how it is shown under Android TV app :

image

@danielchc you may want to add this screen too in the tutorial for Android TV :) I don't remember if it is enabled by default when you install the app.

Sure! I just update the gist. Thank you again :)

@abdullahal39
Copy link

i don't can see this option

Emby Theater
Go to
Windows: %appdata%\Emby-Theater\system\electronapp
Linux: /opt/emby-theater/electron/resources/app/
Open main.js with text editor
After this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment