Search found 23050 matches

by rednoah
26 Jun 2013, 16:17
Forum: Scripting and Automation
Topic: Any script for handling documentaries & sports?
Replies: 3
Views: 3493

Re: Any script for handling documentaries & sports?

You can send me some example filenames. If it's something like a TV show or daily show maybe you can add the missing data to TheTVDB. Or find a different docu/sports tv database with public API.
by rednoah
26 Jun 2013, 16:11
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 600839

Re: Automated Media Center

You've set --action copy so it's gonna copy... [COPY] => COPY (copy as in copy, no delete) [MOVE] => MOVE (as in rename) How exactly that operation is performed is platform dependent. You probably wanna look into using --action hardlink and/or running filebot on that smb server. Understanding hardli...
by rednoah
26 Jun 2013, 02:16
Forum: Feature Requests and Bug Reports
Topic: Is TheTVdb down? TVrage works
Replies: 2
Views: 2687

Re: Is TheTVdb down? TVrage works

I've tried some tests and works perfectly fine from here. Try running from console and see if there's any exceptions, if it doesn't work there must be a reason why the network requests fail.
by rednoah
25 Jun 2013, 15:58
Forum: Feature Requests and Bug Reports
Topic: 3.61 Hangs during install win 8-64bit
Replies: 4
Views: 3786

Re: 3.61 Hangs during install win 8-64bit

Added some timeouts, now it should never hang more than 3min no matter what's going wierd.

Other than that you can always grab the .msi bundle for you platform manually from the sourceforge downloads, or even better, use chocolatey:
http://chocolatey.org/packages/filebot/
by rednoah
25 Jun 2013, 02:43
Forum: Help and Support
Topic: Having troubles with format scripting.
Replies: 15
Views: 6655

Re: Having troubles with format scripting.

With r1649 I added some convenience functions for these kinda use-cases:

Code: Select all

{csv('D:/pg.csv').get(n) ?: info.certification ?: 'No Rating'}
Didn't make it into the v3.61 release though.
by rednoah
25 Jun 2013, 01:51
Forum: Feature Requests and Bug Reports
Topic: 3.61 Hangs during install win 8-64bit
Replies: 4
Views: 3786

Re: 3.61 Hangs during install win 8-64bit

At what point is it hanging? At "Initializing..." or later on?
by rednoah
25 Jun 2013, 01:49
Forum: Help and Support
Topic: issue with special caracters
Replies: 33
Views: 18829

Re: issue with special caracters

Still not working? I the latest release I do normalize with NFD, that should be the right one but it still didn't work I guess. Other than that I have no clue. I guess updating to the latest libmediainfo also doesn't help? Not much I can do on my said at this point.
by rednoah
25 Jun 2013, 01:38
Forum: Help and Support
Topic: Having troubles with format scripting.
Replies: 15
Views: 6655

Re: Having troubles with format scripting.

So you really just wanna hardcode the PG rating for certain shows? That logic is pretty much the same as forcing a series name. {def a; new File('D:/pg.csv').splitEachLine(';'){ if (n == it[0]) a = it[1]}; a ?: info.certification ?: "No Known Rating"} Where pg.csv would look like this: Fir...
by rednoah
24 Jun 2013, 17:20
Forum: Help and Support
Topic: Clear "Rename History"
Replies: 12
Views: 14970

Re: Clear "Rename History"

Just delete history.xml in application.dir . On Linux that should be in ~/.filebot . You can delete the whole ~/.filebot if you want. Here's a filebot script that'll delete the history file: filebot -script "g:net.sourceforge.filebot.HistorySpooler.instance.persistentHistoryFile.delete()"
by rednoah
24 Jun 2013, 17:06
Forum: Help and Support
Topic: Having troubles with format scripting.
Replies: 15
Views: 6655

Re: Having troubles with format scripting.

I just showed you my test cases. You can work with specific values and see what happens. Just test things step by step like this. This works with the default sample data: {n} {certification} => {def pg = info.certification; (n =~ 'Firefly' ? pg.match('TV-14':'TV-G', 'TV-PG':'TV-G', null:'No Rating')...
by rednoah
24 Jun 2013, 16:39
Forum: Help and Support
Topic: Having troubles with format scripting.
Replies: 15
Views: 6655

Re: Having troubles with format scripting.

This is the test for empty string like in your code: {''.match('TV-14':'TV-G', 'TV-PG':'TV-G', '':'No Rating')} This is the test for null value: {null.match('TV-14':'TV-G', 'TV-PG':'TV-G', null:'No Rating')} I think certification will be null and not empty string if undefined, so use null-check inst...
by rednoah
24 Jun 2013, 16:25
Forum: Help and Support
Topic: Having troubles with format scripting.
Replies: 15
Views: 6655

Re: Having troubles with format scripting.

With that much custom logic it's gonna get messy either way. I'd use =~ regex so you can easily add more shows via a|b|c|d regex syntax. And then with my custom match function you can have multiple mappings. It's kinda like switch/case but you pass in the mappings like below: {def pg = info.certific...
by rednoah
24 Jun 2013, 13:13
Forum: Announcements and Releases
Topic: FileBot 3.6
Replies: 2
Views: 66113

FileBot 3.61 is out!

FileBot 3.61 is out! Get it here! This update brings lots of little tweaks for movie and episode detection and fixes various issues that have come up since the last release. Changes: * Many little tweaks for movie/series/episode matching and detection * Improved filename validation as trailing spac...
by rednoah
24 Jun 2013, 12:52
Forum: Episode / Movie Naming Scheme
Topic: Renaming and removing (:)
Replies: 4
Views: 7176

Re: Renaming and removing (:)

There you go:

Code: Select all

{t.tr(':','.')}
by rednoah
24 Jun 2013, 12:35
Forum: Episode / Movie Naming Scheme
Topic: Renaming and removing (:)
Replies: 4
Views: 7176

Re: Renaming and removing (:)

Works just fine: D:\testdata\AMC-TEST>filebot -rename "CSI Miami 1x01.mp4" --format "{n}.{s00e00}.{t}" Rename episodes using [TheTVDB] Auto-detected query: [CSI Miami] Fetching episode data for [CSI: Miami] Stripping invalid characters from new path: CSI: Miami.S01E01.Golden Para...
by rednoah
24 Jun 2013, 01:21
Forum: Help and Support
Topic: issue with special caracters
Replies: 33
Views: 18829

Re: issue with special caracters

btw are you using Apples JDK 6 or Oracles JDK 7? If you only tried Apple JDK 6 please try again with Oracle JDK 7.

This is a hard one...
by rednoah
24 Jun 2013, 01:12
Forum: Feature Requests and Bug Reports
Topic: How to retrieve Foriegn/Alien subtitles
Replies: 1
Views: 2190

Re: How to retrieve Foriegn/Alien subtitles

You'd have to download subtitles twice. With cmdline it's easy since you can just call filebot twice with different --lang options, once with --lang en and other with --lang de or something. In the GUI you'll have to switch the language combo box and basically download subs twice for the 2 languages.
by rednoah
23 Jun 2013, 08:32
Forum: Help and Support
Topic: issue with special caracters
Replies: 33
Views: 18829

Re: issue with special caracters

Updates? Is any of the test jars working?
by rednoah
22 Jun 2013, 23:15
Forum: Feature Requests and Bug Reports
Topic: FileBot 3.6 MAC
Replies: 2
Views: 2760

Re: FileBot 3.6 MAC

You mean you DnD episode data from Episode panel to Rename panel? If you want to filter by seasion, set the season filter before and then grab the episode list. That's since DnD always takes the contents of the list regardless of selection. Selection works for copy/paste though. So you can copy/past...
by rednoah
21 Jun 2013, 22:33
Forum: Help and Support
Topic: uTorrent and Filebot error?
Replies: 1
Views: 2007

Re: uTorrent and Filebot error?

Havent seen this error but this looks wrong:
Argument: F:\

You're forcing standalone usage by passing in file arguments. Remove the file argument after -script fn:amc. As it is configured now it'll always process ALL media files in F: and NOT just the new ones, that's a waste of free resources.
by rednoah
21 Jun 2013, 10:15
Forum: Help and Support
Topic: issue with special caracters
Replies: 33
Views: 18829

Re: issue with special caracters

Nevermind console charsets. Try the other test jars with different Unicode NFs. Hopefully one of the four will just work.
by rednoah
20 Jun 2013, 07:12
Forum: Help and Support
Topic: Integrating FileBot in a LFTP auto-download setup
Replies: 8
Views: 5560

Re: Integrating FileBot in a LFTP auto-download setup

Yes, that's the whole point of keeplink. It'll work.
by rednoah
20 Jun 2013, 06:24
Forum: Help and Support
Topic: Integrating FileBot in a LFTP auto-download setup
Replies: 8
Views: 5560

Re: Integrating FileBot in a LFTP auto-download setup

keeplink and symlink should both work since it'll keep the original file. Maybe symlink works best as it only creates symlinks and never touches the original file. Keeplinks moves the original file and then creates a symlink back at the original location. Really depends on what LFTP mirror will work...
by rednoah
20 Jun 2013, 03:49
Forum: Help and Support
Topic: issue with special caracters
Replies: 33
Views: 18829

Re: issue with special caracters

The ? means the console can't display that unicode character. It's not actually the ? character.

Added two more test jars for NFKC and NFD. Maybe one of those works.
by rednoah
20 Jun 2013, 03:21
Forum: Help and Support
Topic: Naming sheme + Moving
Replies: 3
Views: 3315

Re: Naming sheme + Moving

1. {collection} is defined by the database. FileBot doesn't count how many movies of a collection you have. 2. {genres} is a list of all genres as specified by the database. Guess what this will do? {genres.take(2).join(', ')} 3. {group} => @see http://www.filebot.net/forums/viewtopic.php?f=5&t=...