Search found 17 matches

by beamer145
26 Dec 2017, 12:18
Forum: Feature Requests and Bug Reports
Topic: Terminating bracket is lost in renaming process
Replies: 6
Views: 3026

Re: Terminating bracket is lost in renaming process

Great, thanks for the tips !

I am indeed not really interested in the [ ] part, so i decided to go for

Code: Select all

{n}.{s00e00}.{t}.{vc}.{ac}{".${group.replaceAll(/\[.+\]?/,'')}"}{".$lang"}{fn.match(/[.]HI(?\=\\.)/)}{fn.match(/[.]HI$/)}
by beamer145
24 Dec 2017, 13:53
Forum: Feature Requests and Bug Reports
Topic: Terminating bracket is lost in renaming process
Replies: 6
Views: 3026

Re: Terminating bracket is lost in renaming process

My complete format string is {n}.{s00e00}.{t}.{vc}.{ac}{".$group"}{".$lang"}{fn.match(/[.]HI(?\=\\.)/)}{fn.match(/[.]HI$/)} (can't say i remember why i prefixed with .$ , it's 4 years ago that i made this and i do not know the syntax anymore) An generic example that has the probl...
by beamer145
23 Dec 2017, 15:50
Forum: Feature Requests and Bug Reports
Topic: Terminating bracket is lost in renaming process
Replies: 6
Views: 3026

Terminating bracket is lost in renaming process

Hi,

I recently noticed that if a field (eg group) has xxxx[yyy] in the source name, the end result will be xxxx[yyy (so without the ending ])
Problable some interference with it being a regex symbol ?
Version 4.7.9
by beamer145
24 Aug 2013, 13:42
Forum: Scripting and Automation
Topic: Update from 3.3 to 3.62 breaks format results ?
Replies: 3
Views: 2601

Re: Update from 3.3 to 3.62 breaks format results ?

Ah damn, I took the portable zip, and it does not contain the necessary DLL's. It's probably useful to add the "This package does not include the MediaInfo and 7-Zip native libraries" remark for the portable version as well (currently it is only there for the jar) Unless it is the intentio...
by beamer145
20 Aug 2013, 19:34
Forum: Scripting and Automation
Topic: Update from 3.3 to 3.62 breaks format results ?
Replies: 3
Views: 2601

Update from 3.3 to 3.62 breaks format results ?

Hi, I have a version filebot-3.3-r1439-vslang.jar which works fine with the following formatting string {n}.{s00e00}.{t}.{vc}.{ac}{".$group"}{".$lang"}{fn.match(/[.]HI(?=\.)/)}{fn.match(/[.]HI$/)} I just upgraded to the latest and greatest 3.62 and now it seems the vc and ac tags...
by beamer145
01 Feb 2013, 16:57
Forum: Feature Requests and Bug Reports
Topic: hearing impaired subtitle files (.HI) problems
Replies: 22
Views: 11656

Re: hearing impaired subtitle files (.HI) problems

Sorry to bother you again, but I am bumping into something new. I have files names: Haven.S01E01.DVDRip.XviD-SAiNTS.avi Haven.S01E01.DVDRip.XviD-SAiNTS.idx Haven.S01E01.DVDRip.XviD-SAiNTS.sub ... I don't know if .idx/.sub is supported by Filebot, since he tries to pick a language for the idx files I...
by beamer145
31 Jan 2013, 09:39
Forum: Feature Requests and Bug Reports
Topic: hearing impaired subtitle files (.HI) problems
Replies: 22
Views: 11656

Re: hearing impaired subtitle files (.HI) problems

IMDB does list 13 episodes (http://www.imdb.com/title/tt1641349/episodes). Ah, the reason is mentioned on the wikipedia page (http://en.wikipedia.org/wiki/Terra_Nova_%28TV_series%29) : "Note: As first and last episodes are two hours, some senders cut them up to air as 13 episodes." Now I a...
by beamer145
30 Jan 2013, 19:32
Forum: Feature Requests and Bug Reports
Topic: hearing impaired subtitle files (.HI) problems
Replies: 22
Views: 11656

Re: hearing impaired subtitle files (.HI) problems

>The folder "TerraNova" parent folder messed things up due to missing space. Doesn't match "Terra Nova" while "NOVA" is a substring. Ah i was not aware the folder name was taken into account when doing the match. I am not a big fan of spaces in my names, especially not ...
by beamer145
30 Jan 2013, 11:16
Forum: Feature Requests and Bug Reports
Topic: hearing impaired subtitle files (.HI) problems
Replies: 22
Views: 11656

Re: hearing impaired subtitle files (.HI) problems

[2] Mmmm, I did not use the installer, I just downloaded the jar file filebot-3.3-r1424-revref.jar (at the moment, originally I was using the one linked from the home page) and the libs http://sourceforge.net/p/filebot/code/HEAD/tree/trunk/lib/native/win32-x64/ and put them together in a folder. I d...
by beamer145
29 Jan 2013, 23:36
Forum: Feature Requests and Bug Reports
Topic: hearing impaired subtitle files (.HI) problems
Replies: 22
Views: 11656

Re: hearing impaired subtitle files (.HI) problems

[1] {file.name.match(/[.]HI[.]/} : that fails for subtitles ending on .HI? That is why I had to split it up for the 2 cases. Also it returns .HI. giving you an extra . at the end (i think) ? The second expression is a cool idea :) If I open a few .HI subtitles is seems [] are the delimiters....but I...
by beamer145
28 Jan 2013, 23:27
Forum: Feature Requests and Bug Reports
Topic: hearing impaired subtitle files (.HI) problems
Replies: 22
Views: 11656

Re: hearing impaired subtitle files (.HI) problems

.HI\b will get confused for http://www.imdb.com/title/tt0132213/?ref_=fn_al_tt_5 :) (I think, now I am not sure if a - counts :) ) And there is no way anyone can deal with http://www.imdb.com/title/tt1588694/?ref_=fn_al_tt_1 :) I just ran into a new unrelated problem Eg Terra.Nova.S01E01.720p.HDTV.x...
by beamer145
27 Jan 2013, 18:38
Forum: Feature Requests and Bug Reports
Topic: hearing impaired subtitle files (.HI) problems
Replies: 22
Views: 11656

Re: hearing impaired subtitle files (.HI) problems

Ah, that explains the strange occurrence of always the same group for some files. BTW maybe interesting for other ppl ending up in this thread: i added an extra match for the xxx.hi.xxx case (yours was only for xxx.hi) {fn.match(/[.]HI(?=\.)/)}{fn.match(/[.]HI$/)} ( or my full string {n}.{s00e00}.{t...
by beamer145
27 Jan 2013, 17:05
Forum: Feature Requests and Bug Reports
Topic: hearing impaired subtitle files (.HI) problems
Replies: 22
Views: 11656

Re: hearing impaired subtitle files (.HI) problems

>Yes, it's two stacks. Ah crap, with that in mind everything I am seeing makes perfect sense. I thought pressing delete was suppose to affect both lists, as the fact that both lists have matching solid blue selections kind of insinuates that ( if only one is affected, it would be more intuitive if t...
by beamer145
27 Jan 2013, 15:42
Forum: Feature Requests and Bug Reports
Topic: hearing impaired subtitle files (.HI) problems
Replies: 22
Views: 11656

Re: hearing impaired subtitle files (.HI) problems

I just ran into a related minor issue with the r1424 When I have 2 versions of the subtitles file, eg a normal and a .HI version, they will both be transformed to the same filename. So I get a conflict message when I select rename. I can fix this by deleting one of the subtitle files before running ...
by beamer145
27 Jan 2013, 15:03
Forum: Feature Requests and Bug Reports
Topic: hearing impaired subtitle files (.HI) problems
Replies: 22
Views: 11656

Re: hearing impaired subtitle files (.HI) problems

I just tried r1424 and it seems to solve both problems, so I assume there is no longer a need for a list of example filenames which show the problem.
Thanks !!
by beamer145
27 Jan 2013, 02:15
Forum: Feature Requests and Bug Reports
Topic: hearing impaired subtitle files (.HI) problems
Replies: 22
Views: 11656

Re: hearing impaired subtitle files (.HI) problems

Mmm sometimes the vc tag of the subtitle file also differs from the video file. How is this tag determined for the subtitle file (I assumed it just took the corresponding tags from the video file, but apparently that is not (always) the case.....) ?
by beamer145
27 Jan 2013, 02:01
Forum: Feature Requests and Bug Reports
Topic: hearing impaired subtitle files (.HI) problems
Replies: 22
Views: 11656

hearing impaired subtitle files (.HI) problems

Filebot renaming (V3.3) seems to not like subtitle files which have a .HI tag (hearing impaired) in the name : both the group and the lang bindings give often wrong results. I can understand it gets confused wrt to the lang binding. Though it should be possible to deal with a lot of cases by checkin...