Jump to content

MediaInfo For Emby Plugin(HDR, Vision, Atmos, DTS:X)


Cheesegeezer

Recommended Posts

FrostByte

How did you install the tools?  Did you install them from SynoCommunity?

Here are the paths.   They are in appstore, not appdata

/volume1/@appstore/mediainfo/bin/mediainfo
/volume1/@appstore/mkvtoolnix/bin/mkvpropedit

 

Edited by FrostByte
Link to comment
Share on other sites

Ok its working fine for that movie

image.thumb.png.5430ad93dafac4a1d76828d9d477e254.png

 

But for the other movies, its not working

 

image.thumb.png.a0c1b8c6d9031685af9a6a2a00927c18.png

 

Do i have to configure something else?

I did a new Scan of the complete libary and startet the task mediatoolbox manually but no luck

thank you

Edited by Regista
Link to comment
Share on other sites

Ok i think i found the issue. If i remove the movies, step by step from the database, do a rescan, and add the removed movies to the database again, the mediainfo plugin is working

Edited by Regista
Link to comment
Share on other sites

17 hours ago, Regista said:

image.png.0765a6f4a718d898549d52b215869caf.png

This is interesting, I have seen this kind of weird text in the "Video:" section before. Mediainfo would fail to scan these files.

I solved it by completely removing all metadata saved within the folder, using TinyMediaManager to create new metadata, scanning the Emby library one more time and finally running Mediainfo again.

Link to comment
Share on other sites

Cheesegeezer
2 hours ago, mbguy said:

This is interesting, I have seen this kind of weird text in the "Video:" section before. Mediainfo would fail to scan these files.

I solved it by completely removing all metadata saved within the folder, using TinyMediaManager to create new metadata, scanning the Emby library one more time and finally running Mediainfo again.

can you share the MediaInfo Json for the file please.

 

Link to comment
Share on other sites

17 hours ago, Cheesegeezer said:

can you share the MediaInfo Json for the file please.

Sorry, didn't keep track of which files. I just remember removing all saved metadata and did a re-scan which solved the issue. I will pay attention from now on, if I come across one again, will share right away!

Link to comment
Share on other sites

Cheesegeezer
1 minute ago, mbguy said:

Sorry, didn't keep track of which files. I just remember removing all saved metadata and did a re-scan which solved the issue. I will pay attention from now on, if I come across one again, will share right away!

That’s great and appreciate it. It’s a constant learning and tweaking road with the mediaInfo side. But we should get there

glad you are all sorted fella 👍

  • Like 1
Link to comment
Share on other sites

On 10/23/2022 at 5:04 PM, MrLinford said:

I got this working on Docker version of emby server !

Care to provide instructions? Thanks!

Link to comment
Share on other sites

MrLinford
On 08/11/2022 at 12:35, rbjtech said:

@MrLinford Yes please do provide this info if you can - I can then add to the Wiki as currently it states Docker is not supported .. :(

Thanks.

https://github.com/Cheesegeezer/MediaInfoWiki/wiki/Various-OS-Installation-Help


 

I have now created a shell script to run with "emby" docker container, you can find it here: https://github.com/MrLinford/Docker-MediaInfo-PreReq

 

Here is my quick guide on how to install the dependencies for Media Toolbox when running EMBY in a Docker Container.

A few notes:

You must be running the https://github.com/linuxserver/docker-emby container

You will have to reinstall the dependencies when a new docker image is used.

image.png.5b56a376b629c0cbcfb43ca4df32899b.png

# **MediaInfo For Emby running in Docker**

**A few notes:**

You must be running the https://github.com/linuxserver/docker-emby container

You will have to reinstall the dependencies when a new docker image is used.

---

**First you need to connect to the emby container:**

`docker exec -it <container> bash`

---

**Install mediainfo (https://mediaarea.net/en/MediaInfo/Download/Ubuntu):**

`apt update`

`apt-get install mediainfo`

---

**Install mkvtoolnix (https://mkvtoolnix.download/downloads.html#ubuntu):**

`curl -o /usr/share/keyrings/gpg-pub-moritzbunkus.gpg https://mkvtoolnix.download/gpg-pub-moritzbunkus.gpg`

`cd /etc/apt/sources.list.d`

`touch mkvtoolnix.download.list`

`cat > mkvtoolnix.download.list << EOF
deb [signed-by=/usr/share/keyrings/gpg-pub-moritzbunkus.gpg] https://mkvtoolnix.download/ubuntu/ jammy main
deb-src [signed-by=/usr/share/keyrings/gpg-pub-moritzbunkus.gpg] https://mkvtoolnix.download/ubuntu/ jammy main
EOF`

Now run `apt update` followed by `apt install mkvtoolnix=70.0.0-0~ubuntu2204bunkus01 mkvtoolnix-gui=70.0.0-0~ubuntu2204bunkus01`



---

**Download BifTool Executables:**

`curl -Lo /tmp/biftool_linux.zip https://github.com/rokudev/samples/raw/master/utilities/bif%20tool/biftool_linux.zip`

**Installed unzip:**

`apt-get install unzip`


**Extract BifTool zip file to /bin/:**

`unzip /tmp/biftool_linux.zip -d /bin`

---

Configure the Media Toolbox plugin, applications installed will be located in `/bin/`

 

Edited by MrLinford
Updated Guide 13/12/2022
  • Like 3
Link to comment
Share on other sites

rbjtech
1 hour ago, MrLinford said:

 

Here is my quick guide on how to install the dependencies for Media Toolbox when running EMBY in a Docker Container.

A few notes:

I run the https://github.com/linuxserver/docker-emby container

You will have to reinstall the dependencies when a new docker image is used.

image.png.5b56a376b629c0cbcfb43ca4df32899b.png

# **MediaInfo For Emby running in Docker**

**First you need to connect to the emby containter:**

`docker exec -it <container> bash`

---

**Install mediainfo (https://mediaarea.net/en/MediaInfo/Download/Ubuntu):**

`apt-get install mediainfo`

---

**Install mkvtoolnix (https://mkvtoolnix.download/downloads.html#ubuntu):**

`curl -o /usr/share/keyrings/gpg-pub-moritzbunkus.gpg https://mkvtoolnix.download/gpg-pub-moritzbunkus.gpg`

`cd /etc/apt/sources.list.d`

`touch mkvtoolnix.download.list`

`cat > mkvtoolnix.download.list`

**Paste the below the Crtl+D to exit:**

    deb [signed-by=/usr/share/keyrings/gpg-pub-moritzbunkus.gpg] https://mkvtoolnix.download/ubuntu/ jammy main
    deb-src [signed-by=/usr/share/keyrings/gpg-pub-moritzbunkus.gpg] https://mkvtoolnix.download/ubuntu/ jammy main

Now simply run `apt update` followed by `apt install mkvtoolnix mkvtoolnix-gui`

---

**Download BifTool Executables:**

`curl -Lo /tmp/biftool_linux.zip https://github.com/rokudev/samples/raw/master/utilities/bif%20tool/biftool_linux.zip`

**Installed unzip:**

`apt-get install unzip`


**Extract BifTool zip file to /bin/:**

`unzip /tmp/biftool_linux.zip -d /bin`

---

Configure the Media Toolbox plugin, applications installed will be located in `/bin/`

 

Fantastic - thankyou.

I have added into the Wiki via a link to your post and also copied verbatim into Wiki itself - I trust this is ok.

Various OS Installation Help · Cheesegeezer/MediaInfoWiki Wiki (github.com)

👍

 

 

Edited by rbjtech
  • Like 1
  • Thanks 1
Link to comment
Share on other sites

MrLinford
7 minutes ago, rbjtech said:

Fantastic - thankyou.

I have added into the Wiki via a link to your post and also copied verbatim into Wiki itself - I trust this is ok.

Various OS Installation Help · Cheesegeezer/MediaInfoWiki Wiki (github.com)

👍

 

 

Of course, i even added an issue on git for it :)

https://github.com/Cheesegeezer/MediaInfoWiki/issues/1

 

 

  • Thanks 1
Link to comment
Share on other sites

rbjtech
5 minutes ago, MrLinford said:

You may also want to update this:
image.png.56f9857dfb56279c064e60d307a8fc49.png

I missed that - fixed - thanks !

Link to comment
Share on other sites

MrLinford

Updated Docker instructions as new version of mkvtoolnix is out 71, but not support by you yet.

So change `apt install mkvtoolnix mkvtoolnix-gui` to `apt install mkvtoolnix=70.0.0-0~ubuntu2204bunkus01 mkvtoolnix-gui=70.0.0-0~ubuntu2204bunkus01`

  • Like 2
  • Thanks 1
Link to comment
Share on other sites

Cheesegeezer
3 minutes ago, MrLinford said:

Updated Docker instructions as new version of mkvtoolnix is out 71, but not support by you yet.

So change `apt install mkvtoolnix mkvtoolnix-gui` to `apt install mkvtoolnix=70.0.0-0~ubuntu2204bunkus01 mkvtoolnix-gui=70.0.0-0~ubuntu2204bunkus01`

and it wont be because it's not been tested and there was a huge bug in that release.

Really appreciate your contribution MrLindford

  • Like 1
Link to comment
Share on other sites

rbjtech
5 minutes ago, MrLinford said:

Updated Docker instructions as new version of mkvtoolnix is out 71, but not support by you yet.

So change `apt install mkvtoolnix mkvtoolnix-gui` to `apt install mkvtoolnix=70.0.0-0~ubuntu2204bunkus01 mkvtoolnix-gui=70.0.0-0~ubuntu2204bunkus01`

Updated - thanks - this is key as v71 corrupts some MKV's ... 😲 

Link to comment
Share on other sites

sydlexius
5 hours ago, rbjtech said:

Fantastic - thankyou.

I have added into the Wiki via a link to your post and also copied verbatim into Wiki itself - I trust this is ok.

Various OS Installation Help · Cheesegeezer/MediaInfoWiki Wiki (github.com)

👍

 

 

Just FYI, this will not work for the official Emby container...still, the LinuxServer container has a great reputation and is widely used.  Thanks @MrLinford!

  • Thanks 1
Link to comment
Share on other sites

sydlexius
2 hours ago, MrLinford said:

Not sure what the official emby container is built on. But you can always switch.

Given some of the headaches recently experienced by the LSIO team with missing artifacts for the beta builds (from what I understand, this is an issue with Emby itself), I'll probably wait until that gets sorted.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...