MediaInfo giving wrong info

Support for Synology NAS, QNAP NAS and other Embedded Linux systems
Post Reply
nekromantik
Posts: 22
Joined: 13 Jul 2015, 21:25

MediaInfo giving wrong info

Post by nekromantik »

I got filebot installed on my NAS.
This is output of filebot check

Code: Select all

Diskstation> filebot -script fn:sysinfo
FileBot 4.6 (r3052)
JNA Native: 4.0.0
MediaInfo: MediaInfoLib - v0.7.68
p7zip: Version 9.20 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,2 CPUs)
chromaprint-tools: java.io.IOException: Cannot run program "/usr/local/chromaprint/bin/fpcalc": error=2, No such file or directory
Extended Attributes: OK
Groovy Engine: 2.4.3
JRE: Java(TM) SE Embedded Runtime Environment 1.8.0_51 (headless)
JVM: 32-bit Java HotSpot(TM) Embedded Client VM
CPU/MEM: 2 Core / 121 MB Max Memory / 12 MB Used Memory
OS: Linux (arm)
uname: Linux Diskstation 3.2.40 #5592 SMP Mon Jun 29 17:28:05 CST 2015 armv7l GNU/Linux synology_armada375_ds215j
Done ヾ(@⌒ー⌒@)ノ
I have added {sdhd} to my movie format but a 720p file I just tried ended up being renamed with SD instead of HD.
Any suggestions?

Code: Select all

Parameter: music = n
Parameter: artwork = n
Parameter: seriesFormat = /volume1/Stuff/TV/{n}/{episode.special ? 'Special' : 'Season '+s}/{n} - {episode.special ? 'S00E'+special.pad(2) : s00e00} - {t}
Parameter: movieFormat = /volume1/Stuff/Movies/{n} {y}/{n} ({y}) {sdhd}
Parameter: ut_dir = /volume1/Stuff/downloads/Dark.Places.2015.720p.WEBRip.x264.AC3-m2g
Parameter: ut_kind = multi
Parameter: ut_title = Dark.Places.2015.720p.WEBRip.x264.AC3-m2g
Parameter: ut_label =
Parameter: excludeList = amc.txt
Using excludes: /volume1/Stuff/amc.txt (109)
Input: /volume1/Stuff/downloads/Dark.Places.2015.720p.WEBRip.x264.AC3-m2g/Dark.Places.2015.720p.WEBRip.x264.AC3-m2g.mkv
Exclude: /volume1/Stuff/downloads/Dark.Places.2015.720p.WEBRip.x264.AC3-m2g/Dark.Places.2015.720p.WEBRip.x264.AC3-m2g.(Sample).mkv
Exclude: /volume1/Stuff/downloads/Dark.Places.2015.720p.WEBRip.x264.AC3-m2g/Torrent-Downloaded-From-ExtraTorrent.cc.txt
Exclude: /volume1/Stuff/downloads/Dark.Places.2015.720p.WEBRip.x264.AC3-m2g/readme.txt
Dark.Places.2015.720p.WEBRip.x264.AC3-m2g.mkv [series: null, movie: Dark Places (2015)]
Group: [tvs:null, mov:dark places 2015, anime:null] => [Dark.Places.2015.720p.WEBRip.x264.AC3-m2g.mkv]
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/volume1/Stuff/downloads/Dark.Places.2015.720p.WEBRip.x264.AC3-m2g/Dark.Places.2015.720p.WEBRip.x264.AC3-m2g.mkv]
[MOVE] Rename [/volume1/Stuff/downloads/Dark.Places.2015.720p.WEBRip.x264.AC3-m2g/Dark.Places.2015.720p.WEBRip.x264.AC3-m2g.mkv] to [/volume1/Stuff/Movies/Dark Places 2015/Dark Places (2015) SD.mkv]
Processed 1 files
Done ヾ(@⌒ー⌒@)ノ 
User avatar
rednoah
The Source
Posts: 22999
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: MediaInfo giving wrong info

Post by rednoah »

If you check the {resolution} you'll see why. The {sdhd} binding is based on the actual video resolution, not wether or not 720p is in the filename.

{sdhd} code:

Code: Select all

w >= 1280 || h >= 720 ? "HD" : "SD"
:idea: Please read the FAQ and How to Request Help.
Post Reply