Search found 22561 matches

by rednoah
Today, 07:44
Forum: Help and Support
Topic: Doctor Who (2023) - The Star Beast
Replies: 0
Views: 33

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: 114

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: 46

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: 45

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: 129

[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: 142

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: 232

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: 4973

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: 4973

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: 232

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: 232

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: 138

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: 138

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: 232

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: 77

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...
by rednoah
16 Nov 2023, 13:38
Forum: Scripting and Automation
Topic: "No input files" in music directory
Replies: 3
Views: 171

Re: "No input files" in music directory

Thank you for the bug report. FileBot r10146 fixed the issue.
by rednoah
16 Nov 2023, 06:05
Forum: Episode / Movie Naming Scheme
Topic: Airdate value (season year) stays empty
Replies: 2
Views: 138

Re: Airdate value stays empty

:arrow: You can use the {sy} season year binding:

Format: Select all

{ sy }

Format: Select all

{ sy.min() }
:arrow: https://www.filebot.net/naming.html#sy
by rednoah
14 Nov 2023, 22:35
Forum: Windows
Topic: Can I manually add a database to FileBot? Trying to add a porn database
Replies: 3
Views: 181

Re: Can I manually add a database to FileBot? Trying to add a porn database

i was hoping it would be as easy as adding some website like how filebot has TheMovieDB for example. Unfortunately, it's not that easy. Each database implementation you see in the GUI is thousands of lines of code that "talk" to the unique webservice API of that specific database. But tha...
by rednoah
14 Nov 2023, 21:22
Forum: Scripting and Automation
Topic: "No input files" in music directory
Replies: 3
Views: 171

Re: "No input files" in music directory

The --db option is generally required for good results if you know in advance what kind of content your processing: --db ID3 :arrow: https://www.filebot.net/cli.html#db EDIT: :idea: Investigation reveals that trailing .s and -s in the file name / folder name is interpreted as "sample file"...
by rednoah
14 Nov 2023, 21:08
Forum: Windows
Topic: Can I manually add a database to FileBot? Trying to add a porn database
Replies: 3
Views: 181

Re: Can I manually add a database to FileBot? Trying to add a porn database

You can "add a database" in a sense by writing the code that transforms the file names you have into the file names you want, possibly by making network requests to some external service.

See [POC] Custom Format Server for inspiration.
by rednoah
14 Nov 2023, 06:33
Forum: Feature Requests and Bug Reports
Topic: Music files are being duplicated when attempting to rename
Replies: 1
Views: 108

Re: Music files are being duplicated when attempting to rename

Good catch. Looks like Smart Mode isn't very smart and matches files with both ID3 Tags and AcoustID thus yielding duplicate matches if both ID3 Tags and AcoustID yield results. This is a bug. Fixed with FileBot r10141. :arrow: Please use Music Mode: ID3 Tags when processing music files in the meanw...
by rednoah
14 Nov 2023, 05:42
Forum: Feature Requests and Bug Reports
Topic: OpenSubtitles REST API
Replies: 0
Views: 209

OpenSubtitles REST API

:!: OpenSubtitles has announced shutting down the XML-RPC API in favour of a new OpenSubtitles REST API . This would mean that all OpenSubtitles clients that use the XML-RPC API (i.e. all of them; any code written before 2022) will stop functioning. :idea: However, OpenSubtitles has already announce...