Search found 1251 matches

by kim
23 Jan 2021, 22:16
Forum: Anything and Everything else
Topic: Renaming Music Videos
Replies: 37
Views: 74141

Re: Renaming Music Videos

so always the same number ?

try add:

Code: Select all

[number?.pad(2), artist
by kim
23 Jan 2021, 21:43
Forum: Anything and Everything else
Topic: Renaming Music Videos
Replies: 37
Views: 74141

Re: Renaming Music Videos

so the "number" was never in the right place? try: { def artist = file.dir.dir.name.space(' ').tokenize(',').reverse()*.trim().join(' '); def year = any{file.name.match(/((?:19|20)\d{2})/)}{file.dir.name.match(/((?:19|20)\d{2})/)}; def number = any{fn.before(year).match(/\d{2}/)}{fn.match(...
by kim
23 Jan 2021, 20:03
Forum: Anything and Everything else
Topic: Renaming Music Videos
Replies: 37
Views: 74141

Re: Renaming Music Videos

because wanted filename NEED info from path you NEED to write the path (ALL needed info or bad code)
by kim
22 Jan 2021, 22:34
Forum: Anything and Everything else
Topic: Renaming Music Videos
Replies: 37
Views: 74141

Re: Renaming Music Videos

I'm not sure what the pre-renamed filename/path is and the wanted filename/path ? ... but try this: { def artist = file.dir.dir.name.space(' ').tokenize(',').reverse()*.trim().join(' '); def year = any{fn.matchAll(/\d{2,4}/).last()}{file.dir.name.match(/((?:19|20)\d{2})/)}; def number = any{fn.befor...
by kim
22 Jan 2021, 02:37
Forum: Anything and Everything else
Topic: Renaming Music Videos
Replies: 37
Views: 74141

Re: Renaming Music Videos

"renamed as well"
to what ?

Code: Select all

{
   any{def artist
...
.join(' -- ')}{fn}
}
@rednoah
you really need to do something... cant even post SAME CODE AS ABOVE
BAD REQUEST
by kim
21 Jan 2021, 02:04
Forum: Episode / Movie Naming Scheme
Topic: HDR / Dolby Vision?
Replies: 39
Views: 36487

Re: HDR / Dolby Vision?

rednoah has not updated it yet: https://www.filebot.net/forums/viewtopic.php?f=7&t=1609 do your TV detect it as HDR ? FYI: Video BitDepth >= 10 && "colour_primaries" == "BT.2020" ? "HDR" : null https://www.filebot.net/docs/api/src-html/net/filebot/format/Med...
by kim
20 Jan 2021, 21:18
Forum: Episode / Movie Naming Scheme
Topic: HDR / Dolby Vision?
Replies: 39
Views: 36487

Re: HDR / Dolby Vision?

NO HDR_Format.* data in the first file = fail if it really is HDR

@titooo7 can you try the first file here or update the mediainfo:
https://mediaarea.net/MediaInfoOnline
(Selec t the MediaInfo output - MediaInfo XML or JSON)
by kim
19 Jan 2021, 22:36
Forum: Episode / Movie Naming Scheme
Topic: HDR / Dolby Vision?
Replies: 39
Views: 36487

Re: HDR / Dolby Vision?

same result: { any{video["HDR_Format"]*.match('Dolby Vision')}{'[' + hdr + ']'}{''} } I don't think this will ever show "HDR10+" ? for this you need something like "SMPTE ST 2094 App 4": "HDR10+", "HDR10 Dolby Vision" BUT WHY... this is not a thing.....
by kim
13 Jan 2021, 14:02
Forum: Episode / Movie Naming Scheme
Topic: HDR / Dolby Vision?
Replies: 39
Views: 36487

Re: HDR / Dolby Vision?

if you are lucky maybe this will be enough? { any{ hdr }{ video[0]["HDR_Format"].match('Dolby Vision') } } btw: with your sample it does work HDR format : Dolby Vision, Version 1.0, dvhe.07.06, BL+EL+RPU, Blu-ray compatible / SMPTE ST 2086, HDR10 compatible demo: { "Dolby Vision, Vers...
by kim
13 Jan 2021, 02:51
Forum: Episode / Movie Naming Scheme
Topic: HDR / Dolby Vision?
Replies: 39
Views: 36487

Re: HDR / Dolby Vision?

something like this { def HDRMap = [ "HDR10": "HDR10", "SMPTE ST 2086": "HDR10", "SMPTE ST 2094 App 4": "HDR10+", "Dolby Vision": "Dolby Vision", "Dolby Vision / SMPTE ST 2086": "Dolby Vision", "...
by kim
06 Jan 2021, 15:12
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 569539

Re: Conditional Structures (if-then-else)

my take on it ;) { def pathList = ['SD' : 'H:/DVDRIPS','HD720p' : 'B:/720p','HD1080ptrue' : 'B:/1080p - Sagas','HD1080pfalse' : 'B:/1080p','UHD2160p' : 'B:/2160P']; any{pathList.get(hd)}{pathList.get(hd + vf)}{pathList.get(hd + vf + any{collection ? true : true}{false})}{'UNKNOWN_PATH'}} {hdr}/{coll...
by kim
04 Jan 2021, 15:47
Forum: Scripting and Automation
Topic: Movie renaming based on video resolution
Replies: 6
Views: 8934

Re: Movie renaming based on video resolution

e.g.

Code: Select all

movieFormat=Movies/{ny} - {any{fn.match(/1080p|720p|480p/)}{vf}.replace('1080p' : 'FHD', '720p' : 'HD', '480p' : 'SD')}

btw: how LAME is this "Internal Server Error"
why the F cant i use in forum

Code: Select all

{' - ' + any{
by kim
04 Jan 2021, 02:12
Forum: Help and Support
Topic: Issue matching subtitles with AMC
Replies: 4
Views: 7004

Re: Issue matching subtitles with AMC

space ?

Code: Select all

--def subtitles=en-non-strict
by kim
01 Jan 2021, 21:45
Forum: Help and Support
Topic: OpenSubtitles.org blocked in Denmark
Replies: 10
Views: 10340

Re: OpenSubtitles.org blocked in Denmark

I just tried https://www.opensubtitles.org
... When did it start working again and why ?
by kim
31 Dec 2020, 18:58
Forum: Scripting and Automation
Topic: Movie renaming based on video resolution
Replies: 6
Views: 8934

Re: Movie renaming based on video resolution

Code: Select all

{any{fn.match(/1080p|720p|480p/)}{vf}.replace('1080p' : 'FHD', '720p' : 'HD', '480p' : 'SD')}
by kim
31 Dec 2020, 18:16
Forum: Episode / Movie Naming Scheme
Topic: Naming Issues: PBS Show The Piano Guy
Replies: 2
Views: 4815

Re: Naming Issues: PBS Show The Piano Guy

The Piano Guy vs The Piano Guys
+ "wrong" year
https://thetvdb.com/series/the-piano-guys
by kim
23 Dec 2020, 05:41
Forum: Windows
Topic: Actors Binding
Replies: 4
Views: 8345

Re: Actors Binding

maybe ?

Code: Select all

{any{info.crew.find{!it.department && !it.actor}.name}{actors.take(1).collect { i -> "$i" }.join(', ')}}
or

Code: Select all

{any{info.crew.find{it.department == null}.name}{actors.take(1).collect { i -> "$i" }.join(', ')}}
by kim
20 Dec 2020, 19:42
Forum: Feature Requests and Bug Reports
Topic: myepisodes.com stopped updating
Replies: 16
Views: 15300

Re: myepisodes.com stopped updating

Adding println session reveals that login() just isn't called. I had this info here, I just could not get the why and how to fix :( Probably a strange Groovy runtime bug Sounds like the "format is more strict = not working anymore" problem ? anyhoo it works now :) btw: you better change h...
by kim
20 Dec 2020, 07:19
Forum: Feature Requests and Bug Reports
Topic: myepisodes.com stopped updating
Replies: 16
Views: 15300

Re: myepisodes.com stopped updating

I believe I already did this ?
kim wrote: 18 Dec 2020, 19:24 the "session" does not contain __cfduid, PHPSESSUID and PHPSESSGID
compared to older Filebot (working version)
by kim
20 Dec 2020, 03:07
Forum: Help and Support
Topic: FileBot and TheTVDB
Replies: 5
Views: 27486

Re: FileBot and TheTVDB

FYI: https://www.reddit.com/r/kodi/comments/jvyapq/thetvdb_subscription_discussion/ TheTVDB Subscription Discussion Two things to start: I received permission from the mods to post this. I'm aware this is an unpopular decision, but also want other users to see this post. I don't care about karma, bu...
by kim
19 Dec 2020, 19:29
Forum: Episode / Movie Naming Scheme
Topic: Is there any way to deal with contradictive episode information in path?
Replies: 2
Views: 4653

Re: Is there any way to deal with contradictive episode information in path?

try this

Code: Select all

{fn.replaceFirst(f.name.match(/S\d+E\d+|\d+x\d+/), f.path.match(/S\d+E\d+|\d+x\d+/))}