Search found 1251 matches

by kim
30 Nov 2021, 23:33
Forum: Help and Support
Topic: Renaming TV show folders
Replies: 14
Views: 6199

Re: Renaming TV show folders

So this MOVIE ?
https://www.themoviedb.org/tv/103768-sweet-tooth

remember to select "Movie Mode" under Fetch Data ;)
by kim
30 Nov 2021, 23:29
Forum: Windows
Topic: FPS binding reference
Replies: 9
Views: 3953

Re: FPS binding reference

Looks like you are out of luck

maybe better in a new version of MediaInfo ?

https://mediaarea.net/MediaInfoOnline
(Select the MediaInfo output - MediaInfo XML or JSON)
by kim
30 Nov 2021, 22:05
Forum: Windows
Topic: FPS binding reference
Replies: 9
Views: 3953

Re: FPS binding reference

Is your file format = MPEG-TS ? 86 @Define("fps") 987 public FrameRate getFrameRate() { 988 return FrameRate.parse(getMediaInfo(StreamKind.Video, "FrameRate")); 989 } https://www.filebot.net/docs/api/src-html/net/filebot/format/MediaBindingBean.html#line.986 you can also use this...
by kim
29 Nov 2021, 06:06
Forum: Episode / Movie Naming Scheme
Topic: Multiple audio tracks with different codecs and languages
Replies: 110
Views: 151738

Re: Multiple audio tracks with different codecs and languages

Try it out (Not pretty, Not easy): sample: EN DTS-HD MA 7.1 - EN TrueHD Atmos 7.1 - EN DTS 5.1 - EN|FR|IT|ES|NL|CA AC3 5.1 warning you cant use pipes in filename on windows... change "pipes" in it.unique{it.lang}.lang.join('|') { def preferredLang = 'FR' def useChFilter = false def filter ...
by kim
27 Nov 2021, 20:40
Forum: Windows
Topic: Adult content on Anidb
Replies: 9
Views: 5028

Re: Adult content on Anidb

Did you try ?

Sample show ?
by kim
23 Nov 2021, 00:55
Forum: Feature Requests and Bug Reports
Topic: Kodi Movie Nfo
Replies: 1
Views: 5009

Kodi Movie Nfo

Change movie.nfo to <VideoFileName>.nfo If file is movie.nfo it will break "Local information only" unless... movie.nfo Kodi may also scan nfo files named movie.nfo . To use this name, the setting Movies are in separate folders that match the movie title must be Enabled in the Set Content ...
by kim
21 Nov 2021, 21:13
Forum: Anything and Everything else
Topic: Winget - Easy Program Install
Replies: 0
Views: 10172

Winget - Easy Program Install

From the Windows 10/11 command line: FileBot: winget install --id PointPlanck.FileBot --exact --source winget more info: https://www.filebot.net/forums/viewtopic.php?p=54754#p54754 Kodi: winget install --id XBMCFoundation.Kodi --exact --source winget Plex: winget install --id Plex.Plex --exact --sou...
by kim
19 Nov 2021, 14:59
Forum: Windows
Topic: Take one string in filename and make it into 2 substrings
Replies: 3
Views: 4398

Re: Take one string in filename and make it into 2 substrings

I believe replace only works with "Strings" aka plain text but everywhere

you can use { any{}{} }
by kim
19 Nov 2021, 14:53
Forum: Help and Support
Topic: Strange "Bad *Format value" error messages
Replies: 3
Views: 5534

Re: Strange "Bad *Format value" error messages

The correct format is e.g.

Code: Select all

{plex.derive{" [$vf, $vc, $ac]"}}
by kim
16 Nov 2021, 22:07
Forum: Scripting and Automation
Topic: Renaming Multiple Same Language Subtitles
Replies: 36
Views: 31943

Re: Renaming Multiple Same Language Subtitles

So trying to break this down to understand better to prove out with just subtitles like 2_English 3_English { if (f.subtitle) '(' + fn.match(/^(\d+)_/) + ')' } It will only rename 1 file not multiples ? you need rednoah for that works ok for me in [Plain File Mode] Batch Rename any type of file htt...
by kim
16 Nov 2021, 21:58
Forum: Scripting and Automation
Topic: Renaming Multiple Same Language Subtitles
Replies: 36
Views: 31943

Re: Renaming Multiple Same Language Subtitles

Test in GUI: { '2_English'.match(/_(\d{1,2})$|\((\d{1,2})\)$|^(\d+)_$/) } Why put _$ at the end ? _$ = match e.g. 2_English_.srt Is the number always just single number ? { '2_English'.match(/_(\d)$ | \((\d)\)$ | ^(\d)/) } *remove the spaces { 'eng(1)'.match(/\((\d)\)$/) } { 'english_2'.match(/_(\d)...
by kim
16 Nov 2021, 20:27
Forum: Scripting and Automation
Topic: Renaming Multiple Same Language Subtitles
Replies: 36
Views: 31943

Re: Renaming Multiple Same Language Subtitles

Here you go ;) https://regexr.com/69lo0 play around with it and learn ;) ^abc$ start / end of the string () = Groups multiple tokens together and creates a capture group for extracting a substring or using a backreference. \d = Matches any digit character (0-9). Equivalent to [0-9]. + = Matches 1 or...
by kim
16 Nov 2021, 15:08
Forum: Scripting and Automation
Topic: Renaming Multiple Same Language Subtitles
Replies: 36
Views: 31943

Re: Renaming Multiple Same Language Subtitles

What have you got (tried) now ?

https://regexr.com/69l3u
HINT: mouse over for info ;)

(group) = output

[quote=kim post_id=56051 time=1636847555 user_id=1543]

Code: Select all

_(\d+)$/)
=
_1digitnumOrMore and nothing after this
by kim
16 Nov 2021, 00:05
Forum: Scripting and Automation
Topic: Renaming Multiple Same Language Subtitles
Replies: 36
Views: 31943

Re: Renaming Multiple Same Language Subtitles

Learn Regular Expression
I made this, all you need to do is add the last one ;)
https://regexr.com/69j81
by kim
15 Nov 2021, 16:03
Forum: Anything and Everything else
Topic: TVDB policy regarding out of order series
Replies: 28
Views: 39159

Re: TVDB policy regarding out of order series

filebot -find /volume1/video/ --file-filter "f.video || f.subtitles" > excludes.txt https://www.filebot.net/forums/viewtopic.php?f=4&t=12867&p=55865&hilit=file+filter#p55865 = you can't use in only e.g. movieFormat BUT don't use --mapper "episode.number(null)" on ALL...
by kim
13 Nov 2021, 23:52
Forum: Scripting and Automation
Topic: Renaming Multiple Same Language Subtitles
Replies: 36
Views: 31943

Re: Renaming Multiple Same Language Subtitles

did you put { if (f.subtitle) '(' + fn.match(/_(\d+)$/) + ')' } after ? {[source]}{subt} was the input file e.g. ?: Movie Name (2021) - [1080p x265 AAC 5.1] [BluRay].eng_2.srt _(\d+)$/) = _1digitnumOrMore and nothing after this try: { if (f.subtitle) '(' + fn.match(/_(\d{1,2})$|\((\d{1,2})\)$/) + ')...
by kim
09 Nov 2021, 15:21
Forum: Anything and Everything else
Topic: TVDB policy regarding out of order series
Replies: 28
Views: 39159

Re: TVDB policy regarding out of order series

There is no all in one solution I don't think you can use --mapper "episode.number(null)" and not be active on some files ? but maybe you can do it via the format ? like so { def norm = { it.derive{' {thetvdb-'}{id}{'}'}{' - ['+allOf{tags}{vf}{vs}{crc32}.join(' ')}{']'}{if (dc > 1) '.'+di}...
by kim
06 Nov 2021, 18:49
Forum: Anything and Everything else
Topic: TVDB policy regarding out of order series
Replies: 28
Views: 39159

Re: TVDB policy regarding out of order series

if it ain't broke don't fix it
by kim
05 Nov 2021, 19:39
Forum: Help and Support
Topic: FLAC files and Vorbis tags
Replies: 7
Views: 9190

Re: FLAC files and Vorbis tags

Try MediaInfo Inspector and see if your files has the info you're looking for https://www.filebot.net/forums/viewtopic.php?t=4285 FLAC has it's own native tagging system which is mostly identical to that of OGG Vorbis described above, indeed they are sometime called alternately "FLAC tags"...
by kim
05 Nov 2021, 19:04
Forum: Anything and Everything else
Topic: TVDB policy regarding out of order series
Replies: 28
Views: 39159

Re: TVDB policy regarding out of order series

Alternatively, you can also use --conflict index which adds .1 .2 .3 to file paths as we're moving files, to resolve "duplicate destination path" conflicts even if the format doesn't account for (or can't easily account for) overlapping paths. https://www.filebot.net/forums/viewtopic.php?...
by kim
05 Nov 2021, 01:40
Forum: Scripting and Automation
Topic: Read a compressed file (GZ) without unpacking it?
Replies: 15
Views: 13884

Re: Read a compressed file (GZ) without unpacking it?

Is it possible to do this with a local file ? { import net.filebot.Cache import net.filebot.CacheType import java.util.zip.GZIPInputStream def url = 'https://files.tmdb.org/p/exports/tv_series_ids_11_01_2021.json.gz' def bytes = Cache.getCache('exports', CacheType.Persistent).bytes(url, { new URL(it...
by kim
04 Nov 2021, 23:28
Forum: Scripting and Automation
Topic: Read a compressed file (GZ) without unpacking it?
Replies: 15
Views: 13884

Re: Read a compressed file (GZ) without unpacking it?

This in the GUI creates the 2 files raw_0.data and string_0.data BUT both are clean string and Filebot stops responding ? Tried with 4.9.4 and an older version { import net.filebot.Cache import net.filebot.CacheType import java.util.zip.GZIPInputStream def url = 'https://files.tmdb.org/p/exports/tv_...