Search found 1251 matches

by kim
20 Aug 2017, 19:17
Forum: Feature Requests and Bug Reports
Topic: HDR
Replies: 30
Views: 18928

Re: HDR

https://video.stackexchange.com/questio ... -bit-depth

so my quess (not tested):

Code: Select all

if (bitdepth == 10 && colour_primaries >= BT.2020) = HDR10
if (bitdepth == 12 && colour_primaries >= BT.2020) = Dolby Vision
by kim
20 Aug 2017, 02:23
Forum: Feature Requests and Bug Reports
Topic: HDR
Replies: 30
Views: 18928

Re: HDR

if you look at the info it should be possible to do now: https://en.wikipedia.org/wiki/High-dynamic-range_video#HDR10 https://pbs.twimg.com/media/CcZy2wKXIAASg6m.jpg:large https://forum.doom9.org/showthread.php?p=1803029 test with these in filebot: BitDepth 10/12 ? colour_primaries found or not ? ma...
by kim
19 Aug 2017, 15:06
Forum: Feature Requests and Bug Reports
Topic: HDR
Replies: 30
Views: 18928

Re: HDR

maybe you can use this info ? https://twitter.com/search?q=%23MediaInfo%20hdr&src=typd Version 0.7.83, 2016-02-29 -------------- + HEVC: Maximum Content Light Level (MaxCLL) and Maximum Frame-Average Light Level (MaxFALL), metadata mandated by CEA-861.3 for HDR support + HEVC: Mastering display ...
by kim
16 Aug 2017, 14:09
Forum: Scripting and Automation
Topic: [amc] wrongly renaming some episodes in same folder
Replies: 2
Views: 2387

Re: [amc] wrongly renaming some episodes in same folder

American Dad is Season +1 on thetvdb https://thetvdb.com/?tab=seasonall&id=73141&lid=7 you can try using dvd order on at least Season 1+2 else: https://www.filebot.net/forums/viewtopic.php?f=6&t=3871&p=21782&hilit=American+Dad&sid=93bd3bb773340c38b1a12435602abb8d#p21782 more ...
by kim
15 Aug 2017, 14:44
Forum: Help and Support
Topic: More than one Director
Replies: 6
Views: 3508

Re: More than one Director

then you need this or it can happen again
{info.Directors.sort().join(', ')}

FYI not same file or the "group" got F'd up
by kim
15 Aug 2017, 11:39
Forum: Episode / Movie Naming Scheme
Topic: HELP RENAME
Replies: 11
Views: 7329

Re: HELP RENAME

if you tried my formats you would see it does what you want ;) https://www.filebot.net/forums/viewtopic.php?f=3&t=2072 if file already has the info use: {ext == 'mp3' ? 'MP3' : 'FLAC'}/{any{media.genre}{'Unknown genre'}}/{media.Performer} - {media.title} else: {ext == 'mp3' ? 'MP3' : 'FLAC'}/{an...
by kim
15 Aug 2017, 00:00
Forum: Episode / Movie Naming Scheme
Topic: HELP RENAME
Replies: 11
Views: 7329

Re: HELP RENAME

you can try this:

Code: Select all

{ext == 'mp3' ? 'MP3' : 'FLAC'}/{any{genre}{media.genre}{'Unknown genre'}}/{artist} - {t}
or

Code: Select all

{ext == 'mp3' ? 'MP3' : 'FLAC'}/{any{media.genre}{'Unknown genre'}}/{media.Performer} - {media.title}
by kim
14 Aug 2017, 23:50
Forum: Episode / Movie Naming Scheme
Topic: HELP RENAME
Replies: 11
Views: 7329

Re: HELP RENAME

you need to give e.g.
how are the folder/file named now ?
how do you want it to be ?
by kim
14 Aug 2017, 23:36
Forum: Episode / Movie Naming Scheme
Topic: help rename folder to file
Replies: 4
Views: 3892

Re: help rename folder to file

You are looking for a format something like this: {file.parentFile.name.replaceFirst(/^(.+(?=.\d{4})).(\d{4}).+/, /$1 ($2)/)/file.parentFile.name} FYI: this only works if ALL files are named like your e.g. else you can make your own regex here: http://regexr.com 1. Drop files into Original Files 2. ...
by kim
14 Aug 2017, 20:23
Forum: Help and Support
Topic: More than one Director
Replies: 6
Views: 3508

Re: More than one Director

weird

try:
info.Director
info.Directors.first()
info.Directors.join(', ')
by kim
14 Aug 2017, 19:43
Forum: Feature Requests and Bug Reports
Topic: Request: AMC/artwork.tvdb.groovy to support TV from TheMovieDB
Replies: 7
Views: 4857

Re: Request: AMC/artwork.tvdb.groovy to support TV from TheMovieDB

rednoah wrote: 14 Aug 2017, 14:20 You'd have to talk to the TheMovieDB artwork API yourself.
if you just tell me how, I will do the rest ?
by kim
14 Aug 2017, 15:33
Forum: Feature Requests and Bug Reports
Topic: Request: AMC/artwork.tvdb.groovy to support TV from TheMovieDB
Replies: 7
Views: 4857

Re: Request: AMC/artwork.tvdb.groovy to support TV from TheMovieDB

looks like TheMovieDB::TV aka "get/tv/{tv_id}" has all needed artwork: "backdrop_path" = fanart.jpg "poster_path" = folder.jpg or poster.jpg "seasons" -> "poster_path" = Season xx / folder.jpg or poster.jpg missing banner.jpg. but don't think TheMovi...
by kim
14 Aug 2017, 15:15
Forum: Feature Requests and Bug Reports
Topic: Request: AMC/artwork.tvdb.groovy to support TV from TheMovieDB
Replies: 7
Views: 4857

Re: Request: AMC/artwork.tvdb.groovy to support TV from TheMovieDB

You'd have to talk to the TheMovieDB artwork API yourself. Can you help me get started then ? (new artwork.tmdbTV.groovy and modify htpc) https://developers.themoviedb.org/3/search/search-tv-shows = not needed ? https://developers.themoviedb.org/3/tv/get-tv-details = TheMovieDB::TV ? https://develo...
by kim
14 Aug 2017, 14:11
Forum: Feature Requests and Bug Reports
Topic: Request: AMC/artwork.tvdb.groovy to support TV from TheMovieDB
Replies: 7
Views: 4857

Re: Request: AMC/artwork.tvdb.groovy to support TV from TheMovieDB

can you make the "behind the scenes" stuff work then ? Then I can make my own local amc/artwork/htpc work... cant be that hard... most of the functions is already here... get info = TheMovieDB::TV get artwork = it works with movies so most be ok what I need done: make new artwork.tmdbTV.gr...
by kim
13 Aug 2017, 21:22
Forum: Feature Requests and Bug Reports
Topic: Request: AMC/artwork.tvdb.groovy to support TV from TheMovieDB
Replies: 7
Views: 4857

Request: AMC/artwork.tvdb.groovy to support TV from TheMovieDB

TheMovieDB now has better artwork then TheTVDB and most TV shows, but we can't use it because no support for "--db TheMovieDB" on AMC/artwork.tvdb.groovy
(TheTVDB is hard-coded and changing it to "TheMovieDB::TV" dont work proper)
by kim
02 Aug 2017, 22:32
Forum: Windows
Topic: How is FileBot determining the resolution? Cause its doing it wrong
Replies: 5
Views: 4940

Re: How is FileBot determining the resolution? Cause its doing it wrong

I think this is better

Code: Select all

{((dim[0]<=720&&dim[0]>=700)&&video.displayAspectRatio.join('').toBigDecimal() <= 2.6) ? '576p' : vf}
by kim
02 Aug 2017, 22:01
Forum: Windows
Topic: How is FileBot determining the resolution? Cause its doing it wrong
Replies: 5
Views: 4940

Re: How is FileBot determining the resolution? Cause its doing it wrong

try

Code: Select all

{height<=576 && height>=480 ? '576p' : vf}
by kim
31 Jul 2017, 04:35
Forum: Feature Requests and Bug Reports
Topic: Issue with Scaling of Windows on High DPI Display
Replies: 16
Views: 9160

Re: Issue with Scaling of Windows on High DPI Display

--mode interactive Works ok on my Linux pc (the displayed size is a bit small, not all filename in view) BUT NOT on my CMD on Win 10 64 bit Looks like this ONLY works on Linux ? Cannot run program "/bin/stty": CreateProcess error=2, The system cannot find the file specified java.io.IOExce...
by kim
30 Jul 2017, 16:02
Forum: Feature Requests and Bug Reports
Topic: Issue with Scaling of Windows on High DPI Display
Replies: 16
Views: 9160

Re: Issue with Scaling of Windows on High DPI Display

Looks like this ONLY works on Linux ? Cannot run program "/bin/stty": CreateProcess error=2, The system cannot find the file specified java.io.IOException: Cannot run program "/bin/stty": CreateProcess error=2, The system cannot find the file specified at com.googlecode.lanterna....
by kim
25 Jul 2017, 22:19
Forum: Help and Support
Topic: No autorenaming of "Trailer Park Boys"?
Replies: 8
Views: 6247

Re: No autorenaming of "Trailer Park Boys"?

FYI why Sample/Trailer files will not be excluded under any circumstance if the file size is 256 MB or more. This is not correct, no matter the filesize using AMC "Parameter: ut_label = Movie Ignore extra: D:\test\movies\Trailer.Park.Boys.2014.mkv No files selected for processing" Now: if...
by kim
23 Jul 2017, 14:24
Forum: Feature Requests and Bug Reports
Topic: Movie title mismatch ("S.W.A.T. Under Siege (2017)")
Replies: 6
Views: 3592

Re: Movie title mismatch ("S.W.A.T. Under Siege (2017)")

Match Mode - Opportunistic
should this not be equal to NON-strict ?
by kim
22 Jul 2017, 15:37
Forum: Feature Requests and Bug Reports
Topic: Movie title mismatch ("S.W.A.T. Under Siege (2017)")
Replies: 6
Views: 3592

Re: Movie title mismatch ("S.W.A.T. Under Siege (2017)")

Use "shift" key... press & hold "shift", then press "TheMovieDB" to enter the movie name https://www.themoviedb.org/search?query=s+w+a+t+under+siege = BAD https://www.themoviedb.org/search?query=swat+under+siege = OK https://www.themoviedb.org/search?query=s.w.a.t+u...
by kim
21 Jul 2017, 17:00
Forum: Scripting and Automation
Topic: AMC: Subs for movies, not TV?
Replies: 11
Views: 5853

Re: AMC: Subs for movies, not TV?

2. I still don't WHEN "encoding" has any effect ? 4. Just add if each command can be used with script or not or something like that? also add this to the bottom of help as text: Examples for FileBot commands are here: https://www.filebot.net/cli.html More examples for usages you might not ...