Search found 22570 matches

by rednoah
Yesterday, 18:48
Forum: Feature Requests and Bug Reports
Topic: Post-Processing script -> Refresh Plex
Replies: 2
Views: 41

Re: Post-Processing script -> Refresh Plex

:?: Are you using the GUI or the CLI? :idea: If you already have a bash script then you could just call that . :idea: If you're using the amc script then what you're asking for is built-in behaviour . The Custom Post-Processing Scripts › Refresh Plex example favors simplicity (3 lines; easy to under...
by rednoah
Yesterday, 09:29
Forum: Feature Requests and Bug Reports
Topic: [MISMATCH] Anime/86 Eighty Six (2021)
Replies: 2
Views: 76

Re: CLI renaming Anime help needed

:arrow: Please read Q: How do I fix misidentified files? and note the --q and --filter options: If you're using the command-line you can do the same via the --q and --filter options. Please read --q manual lookup and --filter and fine-tuning manual . The --mapper option may also come in handy. If yo...
by rednoah
Yesterday, 06:51
Forum: Episode / Movie Naming Scheme
Topic: Need help renaming Naruto/Bleach/One Piece (hundreds of eps)
Replies: 22
Views: 15936

Re: Need help renaming Naruto/Bleach/One Piece (hundreds of eps)

Presets › Convert Absolute numbers to SxE numbers should take care of this kind of use case nowadays: https://i.imgur.com/6Y1Pn7O.png Alternatively, [Anime] Convert Absolute to SxE numbers › Option A: Align files and episodes manually may work better if your episodes are in order but somehow badly ...
by rednoah
01 Dec 2023, 18:05
Forum: Help and Support
Topic: unable to purchase on filebot.net
Replies: 1
Views: 55

Re: unable to purchase on filebot.net

:?: What exactly is not working for you? Screenshots ? :idea: The checkout buttons are working: https://www.filebot.net/purchase.html :idea: If something is not working then it's likely an issue your end, since things seem to be working for everyone else. You may find more information via Inspect ➔ ...
by rednoah
01 Dec 2023, 08:07
Forum: Scripting and Automation
Topic: What does "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D" mean?
Replies: 13
Views: 1872

Re: What does "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D" mean?

defines.qtags will give you a single String value, hence: $ filebot -mediainfo . \ --format "{defines} | {defines.qtags} | C1={ defines.qtags.contains('One') } | { defines.qtags.tokenize(',') } | C2={ defines.qtags.tokenize(',').contains('One') } | C3={ defines.qtags.tokenize(',').contains('On...
by rednoah
01 Dec 2023, 07:44
Forum: Scripting and Automation
Topic: What does "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D" mean?
Replies: 13
Views: 1872

Re: What does "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D" mean?

So something like --def qtags="%1" would let me use {qtags} ? No. The binding is {defines} and it will give you a Map of all the --def name=value pairs: defines.qtags defines['qtags'] e.g. $ filebot -mediainfo . --format "{defines} | {defines.x} | {fn}" --def x=1 y=2 z=3 {x=1, y...
by rednoah
01 Dec 2023, 06:58
Forum: Scripting and Automation
Topic: What does "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D" mean?
Replies: 13
Views: 1872

Re: What does "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D" mean?

{tags} is a List so you can easily check if that List contains a certain value in a variety of ways. e.g. Operators › Find tags =~ /REMASTERED/ e.g. Operators › Membership 'REMASTERED' in tags e.g. List.contains(Object) tags.contains('REMASTERED') :!: Note that {tags} is unrelated to qBT . Please r...
by rednoah
01 Dec 2023, 05:14
Forum: Episode / Movie Naming Scheme
Topic: Help naming 3D films (H-SBS and H-OU in different folders) and help with expressions in general.
Replies: 1
Views: 64

Re: Help naming 3D films and help with expressions in general.

Since you're using text patterns (format expression) to generate text patterns (file path) it's pretty much what-you-see-is-what-you-get by nature. You can write complex code if necessary, but you can get away with simple replacement patterns for most use cases. :idea: You can use the action.format ...
by rednoah
28 Nov 2023, 17:13
Forum: Scripting and Automation
Topic: How to have Filebot create appropriately name Season folders and move the files into those folders
Replies: 5
Views: 246

Re: How to have Filebot create appropriately name Season folders and move the files into those folders

:!: Note that the format above only works for single-episodes but not multi-episodes. I recommend using the built-in {s00e00} binding. Alternatively, we also have a built-in {emby.id} binding. :!: The bit that adds ".en" to all subtitles files (regardless of subtitle language) should proba...
by rednoah
28 Nov 2023, 07:44
Forum: Help and Support
Topic: Doctor Who (2023) - The Star Beast
Replies: 0
Views: 71

Doctor Who (2023) - The Star Beast

:?: How do I rename the latest episode The Star Beast of Doctor Who? TV Shows/Doctor Who {tmdb-239770}/Specials/Doctor Who - S00E01 - The Star Beast :idea: Note that Doctor Who (2005) and Doctor Who (2023) are different TV Shows for all accounts and purposes. Please read Doctor Who → Content Issues ...
by rednoah
26 Nov 2023, 08:31
Forum: Synology NAS & Embedded Linux
Topic: Synology NAS Music via FileBot Node
Replies: 1
Views: 128

Re: Synology NAS Music via FileBot Node

:?: What does the console output say? :idea: If the files don't have ID3 tags then you indeed will not be able to process them reliably. That said, you will want to look at the console output at the end. You will get [TEST] from [/path/to/A] to [/path/to/B] lines that tell you what FileBot would be ...
by rednoah
26 Nov 2023, 04:43
Forum: Anything and Everything else
Topic: convert anidb to tvdb to tmdb recursively
Replies: 1
Views: 62

Re: convert anidb to tvdb to tmdb recursively

The task at hand is very difficult. AniDB / TMDB episode information does not match 1:1 so be prepared to figure things out for each series one by one. If you're lucky, most will just work. :arrow: [Anime] Convert Absolute to SxE numbers will get you started. The Anime-Lists/anime-lists project prov...
by rednoah
26 Nov 2023, 04:30
Forum: Windows
Topic: How to rename folder with no date or brackets?
Replies: 1
Views: 56

Re: How to rename folder with no date or brackets?

You'll want to organize files into a new file and folder structure. Please read Q: Can I move files? Can I rename folders? Can I change how files are named? for details. https://www.youtube.com/watch?v=cihWAvDW7MM You can get the file paths you want by changing your custom format to something like t...
by rednoah
26 Nov 2023, 04:04
Forum: Scripting and Automation
Topic: [Addendum] Find Duplicate Movie or Episode Files
Replies: 0
Views: 136

[Addendum] Find Duplicate Movie or Episode Files

The Find Duplicate Movie or Episode Files script requires xattr metadata to instantly and reliably identify files, so that it can then find Movie and Episode duplicates: In --mode logical , this script will not parse or guess any information from the filename. Files that do not have xattr metadata w...
by rednoah
24 Nov 2023, 11:47
Forum: Episode / Movie Naming Scheme
Topic: separate HD, 4K and genre
Replies: 1
Views: 155

Re: separate HD, 4K and genre

I guess you could just add 4K somewhere in the file path? { height > 2000 ? '4K' : '' } e.g. { if (genres =~ /Animation/) return "Séries d'animations" if (genres =~ /Documentaire|Reality/) return "Séries Documentaires" else return "Séries" } { if (height > 2000) return ...
by rednoah
24 Nov 2023, 04:44
Forum: Help and Support
Topic: SFV Verification do not recognize special characters as á,é,í,ó,ú
Replies: 7
Views: 263

Re: SFV Verification do not recognize special characters as á,é,í,ó,ú

:idea: FileBot r10152 fixes charset auto-detection for UTF-8 encoded files generated by FileBot itself.
by rednoah
24 Nov 2023, 02:39
Forum: Windows
Topic: Rename File, Create Folder In Current Location, Put Newly Renamed File In New Folder
Replies: 6
Views: 5002

Re: Rename File, Create Folder In Current Location, Put Newly Renamed File In New Folder

:?: What is the real path of C:\Tool\A\Output though? (NOTE: behaviour may depend on the real file path) What I understood so far, is that, Filebot takes the path of the video files, and, from that point, the parent directories starts to count. If you use ../{plex} or {folder}/{plex} or ../../{plex}...
by rednoah
23 Nov 2023, 08:14
Forum: Windows
Topic: Rename File, Create Folder In Current Location, Put Newly Renamed File In New Folder
Replies: 6
Views: 5002

Re: Rename File, Create Folder In Current Location, Put Newly Renamed File In New Folder

:idea: . refers to the current directory. .. refers to the parent directory. You can do ../../.. to refer to the parent of the parent of the parent and so on. See What are "." and ".." in a directory? for details. :?: What is the real path of C:\Tool\A\Output ? This is likely a m...
by rednoah
22 Nov 2023, 03:36
Forum: Help and Support
Topic: SFV Verification do not recognize special characters as á,é,í,ó,ú
Replies: 7
Views: 263

Re: SFV Verification do not recognize special characters as á,é,í,ó,ú

Alternatively, you can add any UTF-8 character into the first 8000 bytes to nudge the charset detector towards the correct charset:

Code: Select all

; ✔
; Generated by FileBot 5.1.2 on 2023-11-20 at 13:04:50
; charset=UTF-8
;
by rednoah
21 Nov 2023, 17:50
Forum: Help and Support
Topic: SFV Verification do not recognize special characters as á,é,í,ó,ú
Replies: 7
Views: 263

Re: SFV Verification do not recognize special characters as á,é,í,ó,ú

:idea: You'll want to create one *.sfv file per series. Then it'll likely always work. Alternatively, you can add any UTF-8 character into the first 8000 bytes (e.g. Pokémon lines first; or add a character like ✔ to the comments on the first line) to nudge the charset detector towards the correct ch...
by rednoah
21 Nov 2023, 17:34
Forum: Scripting and Automation
Topic: sort series movies with genre in different folder
Replies: 4
Views: 156

Re: sort series movies with genre in different folder

You'll want to prototype your format in the GUI:
Screenshot


Once you have prototyped your format and tested it on a variety of files, then you can paste it into a *.groovy text file and reference it like so:

Shell: Select all

--def movieFormat=@/path/to/MovieFormat.groovy
by rednoah
21 Nov 2023, 10:59
Forum: Scripting and Automation
Topic: sort series movies with genre in different folder
Replies: 4
Views: 156

Re: sort series movies with genre in different folder

Yes, you can use {genres} to access the list of genres from the database and the generate file paths accordingly. e.g. Conditional Structures (if-then-else) e.g. Move Documentary episodes and normal TV series episodes into different folders: { genre ==~ /Documentary|News/ ? 'Documentaries' : 'TV Sho...
by rednoah
21 Nov 2023, 04:38
Forum: Help and Support
Topic: SFV Verification do not recognize special characters as á,é,í,ó,ú
Replies: 7
Views: 263

Re: SFV Verification do not recognize special characters as á,é,í,ó,ú

:?: Can you provide a sample file? (please provide text as as binary file; copy & paste of text won't be useful for debugging text encoding issues; i.e. share via gdrive, dropbox, etc) :?: What tool / text encoding is used to generate the *.sfv files at hand? :idea: FileBot generally expecteds U...
by rednoah
20 Nov 2023, 08:19
Forum: Synology NAS & Embedded Linux
Topic: FileBot Node vs. Custom Video Length Setting?
Replies: 1
Views: 83

Re: FileBot Node vs. Custom Video Length Setting?

:?: What custom video length setting do you want? 10 minutes? 15 minutes? 20 minutes? 25 minutes? :idea: The default is 10 minutes so that would fit nicely in between 5 minutes and 30 minutes. :idea: The --def minLengthMS option of the amc script script accepts a number in milliseconds, so you can e...