Search found 22995 matches

by rednoah
05 Mar 2014, 05:36
Forum: Scripting and Automation
Topic: Automating my server to do all the hard work
Replies: 19
Views: 7950

Re: Automating my server to do all the hard work

Sure donations are always appreciated. Format: Movies/{n} {y}/{n} ({y}){" CD$pi"} Console (CMD escaped): --format "Movies/{n} {y}/{n} ({y}){\" CD$pi\"}" Though it's probably easier to just avoid special characters so you don't need to escape them: --format "Movies/...
by rednoah
05 Mar 2014, 05:23
Forum: Help and Support
Topic: Cant Drag/Drop Windows 8
Replies: 2
Views: 2334

Re: Cant Drag/Drop Windows 8

Pretty sure that you can't drag files between applications in different user-modes.

I can confirm that it doesn't work, and that it never has, and possibly never will. No idea what the issue is but I guess it's a restriction imposed by Windows on purpose.
by rednoah
05 Mar 2014, 05:10
Forum: Feature Requests and Bug Reports
Topic: UNASKED restart of Windows on Version 4.0 installation!!!!!!
Replies: 4
Views: 3059

Re: UNASKED restart of Windows on Version 4.0 installation!!

The NSIS installer does no such thing, nor the the MSI require Feel free to look at the code. According to that screen shot it is Windows Installer that initiates a reboot, so it's a bug in Windows Installer on your specific system.
by rednoah
04 Mar 2014, 13:48
Forum: Help and Support
Topic: CLI only on a linux headless server
Replies: 6
Views: 6940

Re: CLI only on a linux headless server

I suppose the system proxy Java implementation for Linux doesn't work on your server:

Code: Select all

-Djava.net.useSystemProxies=false
by rednoah
04 Mar 2014, 05:54
Forum: Scripting and Automation
Topic: Automating my server to do all the hard work
Replies: 19
Views: 7950

Re: Automating my server to do all the hard work

1. FAQ Q: I'm trying to run FileBot from the console, but I'm having trouble passing in --format because of spaces or double-quotes A: You need to pass in arguments correctly. "..." allows you to pass in one argument that may contains spaces. Of course since " is a special character i...
by rednoah
04 Mar 2014, 02:31
Forum: Help and Support
Topic: CLI only on a linux headless server
Replies: 6
Views: 6940

Re: CLI only on a linux headless server

Produces using instructions: filebot -help 64-bit Java is better. But it doesn't matter as long as you don't need any of the native libraries. Pure Java application are platform-independent, including architecture. Only when FileBot starts loading libmediainfo or lib7zip then bitness becomes importa...
by rednoah
03 Mar 2014, 18:10
Forum: Help and Support
Topic: Does not match with cache version
Replies: 1
Views: 1832

Re: Does not match with cache version

That's a message telling you that it is clearing the cache because the version got updated. It does not effect program flow and certainly doesn't require any input.
by rednoah
03 Mar 2014, 15:27
Forum: Announcements and Releases
Topic: FileBot 4.0
Replies: 0
Views: 54281

FileBot 4.0

FileBot 4.0 is finally out! Get it here! This new major release comes with massive improvements in all the core functionalities and lots of bugfixes. It's smarter, faster, superior in every aspect and generally more streamlined to get things done fast and exactly the way you want. Features: * Massi...
by rednoah
03 Mar 2014, 14:07
Forum: Scripting and Automation
Topic: Help with --def clean=y
Replies: 4
Views: 3085

Re: Help with --def clean=y

Code: Select all

filebot -help
--action move is default if not specified otherwise.
by rednoah
03 Mar 2014, 14:05
Forum: Scripting and Automation
Topic: Feature Reqest: Rename without forced online lookup
Replies: 3
Views: 2545

Re: Feature Reqest: Rename without forced online lookup

Will not implement. Just doesn't fit into the UI at all as it is. Writing a Groovy script to do the same is a 1-liner. Something like: args.getFiles{ it.isVideo() }.each{ it.renameTo(getMediaInfo(file:it, format:'''{fn} [{resolution}_{media.DurationString.replaceAll(/[\sn]/)}_{vc}_{ac}].{ext}''')) }
by rednoah
03 Mar 2014, 14:01
Forum: Help and Support
Topic: CLI only on a linux headless server
Replies: 6
Views: 6940

Re: CLI only on a linux headless server

1. The only real dependency is Java. Though it's good to have libmediainfo as well which is bundled with the filebot packages anyway. 2. The portable package is, as it says, portable, and will not touch anything outside of it's own folder. Not sure how you're confused about filebot.sh, it's a simple...
by rednoah
03 Mar 2014, 13:54
Forum: Scripting and Automation
Topic: Script help
Replies: 5
Views: 3144

Re: Script help

This looks like Windows to me. But if it's the same on Linux what's the issue?
by rednoah
03 Mar 2014, 10:38
Forum: Scripting and Automation
Topic: Script help
Replies: 5
Views: 3144

Re: Script help

Got a link to the docs for how to run external programs?
by rednoah
03 Mar 2014, 02:21
Forum: Scripting and Automation
Topic: Feature Reqest: Rename without forced online lookup
Replies: 3
Views: 2545

Re: Rename without forced "Fetch Episode/Music/Movie"

Not possible.

A hacky work around would be to fetch a random long episode list and drag it over so you have fake episode data to evaluate the format in which you then just don't use any episode bindings.
by rednoah
02 Mar 2014, 17:00
Forum: Scripting and Automation
Topic: [GUIDE] Fully Automated Media Center with Transmission (Mac)
Replies: 121
Views: 636491

Re: [GUIDE] Fully Automated Media Center with Transmission (

1. RTFM
--def clean=y Automatically empty folders and clutter files that may be left behind after moving the video files or temporary extracted files after copying

2. Yes, it's very easy for anyone who knows a bit of programming
by rednoah
02 Mar 2014, 16:17
Forum: Scripting and Automation
Topic: [GUIDE] Fully Automated Media Center with Transmission (Mac)
Replies: 121
Views: 636491

Re: [GUIDE] Fully Automated Media Center with Transmission (

1. Do some programming courses

2. Set --action move instead of --action copy
by rednoah
02 Mar 2014, 15:50
Forum: Scripting and Automation
Topic: [GUIDE] Fully Automated Media Center with Transmission (Mac)
Replies: 121
Views: 636491

Re: [GUIDE] Fully Automated Media Center with Transmission (

See how ut_dir is passed in correctly now? Looks like it's doing what it's supposed to be doing. 1. Rename artwork? Not possible. You can do it yourself or have some script do it afterwards. 2. Look at the logs, it says COPY which means it'll COPY files. There rest is in the docs. 3. Ignore the xatt...
by rednoah
02 Mar 2014, 15:40
Forum: Scripting and Automation
Topic: Help with --def clean=y
Replies: 4
Views: 3085

Re: Help with --def clean=y

Log?

Nevermind... if you're setting --action copy why would you think it's moving them, it's copying them as specified by you.
by rednoah
02 Mar 2014, 03:00
Forum: Feature Requests and Bug Reports
Topic: Law & Order SVU
Replies: 6
Views: 4977

Re: Law & Order SVU

Works with the latest revision: Parameter: ut_kind = multi Parameter: minFileSize = 0 Parameter: minLengthMS = 0 Parameter: ut_dir = D:\workspace\testdata\AMC-TEST Input: D:\workspace\testdata\AMC-TEST\Law.and.Order.SVU.S15E15.HDTV.x264-LOL.mp4 Group: [tvs:law order special victims unit] => [Law.and...
by rednoah
01 Mar 2014, 20:26
Forum: Scripting and Automation
Topic: [GUIDE] Fully Automated Media Center with Transmission (Mac)
Replies: 121
Views: 636491

Re: [GUIDE] Fully Automated Media Center with Transmission (

It looks like you're doing everything wrong. Sorry you're running into issues, but without some basic console skills on your side and some initiative with testing things to find where the issue is neither me nor rb07 can do much about it. PS: I've read the thread you've linked above, undoubtedly rb...
by rednoah
01 Mar 2014, 19:43
Forum: Help and Support
Topic: Sort by Language
Replies: 2
Views: 2256

Re: Sort by Language

1. Not possible for .avi files, but for .mkv and similar container formats this will work: {media.AudioLanguageList} 2. I don't know what you want, but genres[9] doesn't make sense. That translates to "just take the 10th Genre" and will naturally fail for media belonging to less then 10 ge...
by rednoah
28 Feb 2014, 17:30
Forum: Scripting and Automation
Topic: [GUIDE] Fully Automated Media Center with Transmission (Mac)
Replies: 121
Views: 636491

Re: [GUIDE] Fully Automated Media Center with Transmission (

Probably, you're telling filebot to rename your entire system, everything. Luckily filebot will ignore most of that since system libraries rarely have extensions like .avi or what not. Probably this includes partial downloads, what it definitely includes is all the files that have already been renam...