Search found 23343 matches
- 16 Aug 2024, 03:43
- Forum: macOS
- Topic: post processing and "set creation date" for dates before 1970
- Replies: 3
- Views: 1444
Re: post processing and "set creation date" for dates before 1970
macOS / APFS do not fundamentally disallow dates before 1970 on the file system level at the very least: $ touch -d 1968-01-0100:00:00 a.txt $ stat -x a.txt ... Access: Mon Jan 1 00:00:00 1968 Modify: Mon Jan 1 00:00:00 1968 Change: Fri Aug 16 03:30:00 2024 Birth: Fri Aug 16 03:30:00 2024 :!: But i...
- 15 Aug 2024, 13:35
- Forum: Windows
- Topic: How to limit the lenght of episode title?
- Replies: 5
- Views: 1232
Re: How to limit the lenght of episode title?
:idea: Note that {s00e00} gives you S00E01 for specials by default. Your custom code is unnecessarily complex / redundant, so you can just do: { s00e00 } :idea: Note that the outermost {...} is semantically completely different from any {...} within the Groovy context , so I would recommend not addi...
- 15 Aug 2024, 11:57
- Forum: Windows
- Topic: How to limit the lenght of episode title?
- Replies: 5
- Views: 1232
Re: How to limit the lenght of episode title?
:?: Why though? Do you get an error message? What series / episode are you testing with? :idea: You can take the first n characters from any given String value like so: { t.take(5) } :idea: Note that {t} is limited to ~150 characters by default. {plex} also limits the length of each file path compon...
- 15 Aug 2024, 05:41
- Forum: Scripting and Automation
- Topic: AMC Script - Clean=y not working (when using default script for qbittorent for unraid)
- Replies: 13
- Views: 2746
Re: AMC Script - Clean=y not working (when using default script for qbittorent for unraid)
:?: What does the console output say when you do a test run? :idea: Keep in mind that when you do a test run, then you must pass positional arguments $1 , $2 and $3 along when you do the fb.sh call, because that's what your fb.sh expects you to do: ut_dir="$1" \ ut_title="$2" \ u...
- 15 Aug 2024, 05:35
- Forum: Scripting and Automation
- Topic: AMC Script - Clean=y not working (when using default script for qbittorent for unraid)
- Replies: 13
- Views: 2746
Re: AMC Script - Clean=y not working (when using default script for qbittorent for unraid)
:?: What is this? Parameter: ut_title = --output :idea: The log tells us that you're not specifying --def ut_kind=multi which is the root cause of the problem at hand as explained above . EDIT: You seem to not understand that the filebot command-line tool and your fb.sh script are not the same. Your...
- 15 Aug 2024, 05:16
- Forum: Scripting and Automation
- Topic: AMC Script - Clean=y not working (when using default script for qbittorent for unraid)
- Replies: 13
- Views: 2746
Re: AMC Script - Clean=y not working (when using default script for qbittorent for unraid)
:idea: I have identified the issue in my previous reply . You'll need to fix your fb.sh script (notably not one of ours) by adding --def ut_kind=multi to the filebot command. See Setup for qBittorrent on Windows, Linux and macOS for filebot / amc script usage examples. :arrow: If your script is not ...
- 15 Aug 2024, 04:43
- Forum: Scripting and Automation
- Topic: AMC Script - Clean=y not working (when using default script for qbittorent for unraid)
- Replies: 13
- Views: 2746
Re: AMC Script - Clean=y not working
:!: I have reviewed the code and it seem that the author of the script you're using did not follow the Setup for qBittorrent on Windows, Linux and macOS guide. --def ut_kind=multi and --def ut_dir=%F must be specified in tandem. Your script specifies --def ut_dir but not --def ut_kind and thus inadv...
- 15 Aug 2024, 04:21
- Forum: Scripting and Automation
- Topic: AMC Script - Clean=y not working (when using default script for qbittorent for unraid)
- Replies: 13
- Views: 2746
Re: AMC Script - Clean=y not working
:!: I cannot reproduce the issue with the sample file paths given above. Looks good to me: $ filebot -script fn:amc downloads --output output -non-strict --def clean=y ... Parameter: clean = y ... Input: downloads/House.of.the.Dragon.S02E08.WEB.x264-TORRENTGALAXY[TGx]/House.of.the.Dragon.S02E08.WEB....
- 15 Aug 2024, 03:48
- Forum: Scripting and Automation
- Topic: AMC Script - Clean=y not working (when using default script for qbittorent for unraid)
- Replies: 13
- Views: 2746
Re: AMC Script - Clean=y not working
Please run ls -l in the console and copy & paste the output so that we can check and verify:
Shell: Select all
ls -l "/downloads/House.of.the.Dragon.S02E08.WEB.x264-TORRENTGALAXY[TGx]"
- 15 Aug 2024, 03:34
- Forum: Scripting and Automation
- Topic: AMC Script - Clean=y not working (when using default script for qbittorent for unraid)
- Replies: 13
- Views: 2746
Re: AMC Script - Clean=y not working
:?: What does ls say? ls -l "/downloads/House.of.the.Dragon.S02E08.WEB.x264-TORRENTGALAXY[TGx]" NOTE: --def clean=y will not delete folders / files where the folder seem to contain important files, e.g. large files, video files, files of unknown type, etc. :?: What does /media/y do? Parame...
- 11 Aug 2024, 07:43
- Forum: Scripting and Automation
- Topic: [Script] Copy Xattr Metadata from Video Files to Companion Files
- Replies: 0
- Views: 1691
[Script] Copy Xattr Metadata from Video Files to Companion Files
Find video files that have xattr metadata and then copy that xattr metadata to all the companion files (e.g. subtitle files) in the same folder that share the same file name: filebot -find /path/to/input --filter 'f.video && f.metadata' --apply '{ source, target -> target.dir.listFiles{ it.i...
- 11 Aug 2024, 06:25
- Forum: Help and Support
- Topic: Help with sorting to different drives
- Replies: 4
- Views: 1926
Re: Help with sorting to different drives
Seems repetitive / hard to read / certainly does not express well the rules you mean to codify... I'd probably do it like this, because you might want to read / understand / modify the code in the future: { vc ==~ /x264|AVC/ ? 'F:/' : 'I:/' } { hd ==~ /UHD/ ? 'Movies 4K' : 'Movies' } ({ vc.replace('...
- 10 Aug 2024, 04:25
- Forum: Help and Support
- Topic: Help with sorting to different drives
- Replies: 4
- Views: 1926
Re: Help with sorting to different drives
e.g.
Conditional Structures (if-then-else)
Format: Select all
{ vc == 'x264' ? 'F:/Movies (x264)' : 'I:/Movies' }/{ ~plex.id }
- 08 Aug 2024, 19:19
- Forum: Windows
- Topic: Small Font on Windows 10 (in RDP session)
- Replies: 0
- Views: 2055
Small Font on Windows 10 (in RDP session)
If you are using the FileBot Desktop application via RDP on Windows 10 then you may run into font size / scale issues: https://i.snag.gy/kVWG7t.jpg :arrow: The issue seems to be exclusive to the System Theme , so you can use Dark Theme instead to fix the font size issues at hand. :idea: Press Win+R ...
- 08 Aug 2024, 19:00
- Forum: Anything and Everything else
- Topic: Screenshot Collection
- Replies: 0
- Views: 3292
Screenshot Collection
https://i.imgur.com/QuKFQCU.png https://i.imgur.com/bcvSeoJ.png https://i.imgur.com/5oRSF8B.png https://i.imgur.com/LyslIJ9.png https://i.imgur.com/GtS06cL.png https://i.imgur.com/omfgbSm.png https://i.imgur.com/EXx3XJa.png https://i.imgur.com/zLWFwcl.png https://i.imgur.com/HJukxvG.png https://i.i...
- 08 Aug 2024, 16:10
- Forum: Windows
- Topic: Reget license file
- Replies: 1
- Views: 1431
Re: Reget license file
:arrow: :arrow: [FAQ] How do I recover a lost license key? EDIT: The email address used to register on this forum owns FileBot License PX34297876 . We can resend FileBot License PX34297876 to that email address. Note that reissuing your license to a different email address would require additional v...
- 08 Aug 2024, 03:01
- Forum: Windows
- Topic: Bought in windows store but wanted to use in linux?
- Replies: 4
- Views: 1703
Re: Bought in windows store but wanted to use in linux?
:!: Your Microsoft Store or Mac App Store purchase notably does not include a universal license key . Your purchase is stored in your Microsoft Account or Apple Account and cannot be transferred to other Store or non-Store license systems. Please read FileBot Pricing Explained for details. :!: Unfo...
- 08 Aug 2024, 02:47
- Forum: Synology NAS & Embedded Linux
- Topic: How do I use FileBot on Synology NAS?
- Replies: 0
- Views: 2096
How do I use FileBot on Synology NAS?
This is a stupid question. I have Synology NAS and I installed FileBot on it, but I can't figure out for the life of me how to use Filebot on my Synology. Can you direct me to a place/information that could be of assistance ? filebot is a command-line tool, so you can use it by logging in via SSH a...
- 07 Aug 2024, 08:06
- Forum: Windows
- Topic: Match Button Episode Mode Order
- Replies: 4
- Views: 2139
- 07 Aug 2024, 08:06
- Forum: Help and Support
- Topic: Episodes out of order
- Replies: 8
- Views: 4536
- 07 Aug 2024, 08:06
- Forum: Feature Requests and Bug Reports
- Topic: Feature Request: Bluray Episode Ordering
- Replies: 12
- Views: 13418
- 07 Aug 2024, 08:06
- Forum: Episode / Movie Naming Scheme
- Topic: Use Airdate Order for matching and DVD Order for renaming
- Replies: 7
- Views: 10589
- 06 Aug 2024, 05:34
- Forum: Ubuntu & Desktop Linux
- Topic: Generate NFO files from custom CSV database post-processing
- Replies: 4
- Views: 2110
Re: Generate NFO files from custom CSV database post-processing
FileBot uses NFO files to help identify files, i.e. it'll only parse the ID number and that's about it. AFAIK, Plex / Jellyfin / etc do not really rely much on offline NFO information unless configured to do so, but you'd have to run your own tests to confirm. Best to ask the Plex or Jellyfin commun...
- 06 Aug 2024, 04:01
- Forum: Ubuntu & Desktop Linux
- Topic: Generate NFO files from custom CSV database post-processing
- Replies: 4
- Views: 2110
Re: Generate NFO files from custom CSV database post-processing
:idea: Unfortunately, the built-in --apply nfo post-processing feature does not allow for customization. :arrow: If you mean to read your own CSV files, and then write new NFO files, perhaps in combination with existing NFO files or xattr metadata , then that is unfortunately out-of-scope here. It's...
- 05 Aug 2024, 04:21
- Forum: Help and Support
- Topic: [OpenSubtitles] 401 Unauthorized
- Replies: 6
- Views: 14320
Re: [OpenSubtitles] 401 Unauthorized
:idea: 401 Unauthorized Request suggests that you're using the wrong username / password. :?: Are you using the correct username and password? Keep in mind that opensubtitles.org (old API) and opensubtitles.com (new API) do not share user data, so the username / password that works for one may not w...