--mode test
--mode move
I used them both in my script
(Calling filebot twice) for reviewing before an action is taken (-q need to check). So yes, all is loaded twice, and TMDB is queried twice... per file!!! So all this is multiplied by hundreds.
The goal is to mass rename with one by one review ...
Search found 15 matches
- 23 Nov 2016, 16:37
- Forum: Feature Requests and Bug Reports
- Topic: Feature Request: CLI interactive mode
- Replies: 4
- Views: 5880
- 23 Nov 2016, 16:18
- Forum: Feature Requests and Bug Reports
- Topic: Feature Request: CLI interactive mode
- Replies: 4
- Views: 5880
Feature Request: CLI interactive mode
It would be great to have a
-i
--interactive
for the cli
to be asked before any action is taken
Possibility 1 (when filebot has aleady the destination file name)
(yes/no)?
n would be like test mode
y like the real modes
Possibility 2 (when filebot decides to skip due to multiple matches)
Chosen ...
-i
--interactive
for the cli
to be asked before any action is taken
Possibility 1 (when filebot has aleady the destination file name)
(yes/no)?
n would be like test mode
y like the real modes
Possibility 2 (when filebot decides to skip due to multiple matches)
Chosen ...
- 22 Nov 2016, 12:35
- Forum: Help and Support
- Topic: Variables in formats
- Replies: 6
- Views: 6028
Variables in formats
I have my movie format as
Movie/{myLang = any {language detection logic}}/...
This expands to Movies/English/...
And I can reuse myLang later on as needed.
What I have failed to achieve is to do variable assignments that do not expand/alter my format.
Ie.: I would like to create a boolean ...
Movie/{myLang = any {language detection logic}}/...
This expands to Movies/English/...
And I can reuse myLang later on as needed.
What I have failed to achieve is to do variable assignments that do not expand/alter my format.
Ie.: I would like to create a boolean ...
- 21 Nov 2016, 14:04
- Forum: Feature Requests and Bug Reports
- Topic: Language inconsistently detected
- Replies: 13
- Views: 8922
Re: Language inconsistently detected
The newline was never an issue for me. It suddenly appeared with the latest version when I tested audioLanguages and my existing format got broken.
That being said, i have tested your new patch and it works!
The audio channel detection, I think it is a mediainfo bug with HE-AAC (will investigate ...
That being said, i have tested your new patch and it works!
The audio channel detection, I think it is a mediainfo bug with HE-AAC (will investigate ...
- 20 Nov 2016, 18:13
- Forum: Feature Requests and Bug Reports
- Topic: Language inconsistently detected
- Replies: 13
- Views: 8922
Re: Language inconsistently detected
1. Yes. NEWLINES in the literal area were in the past ignored. But with the latest version they are not ignored anymore. There must be some regression in one of the latest commits. Do you know which might have caused it?
2. I hardly use the UI, so it would not be for me. But your format editor is ...
2. I hardly use the UI, so it would not be for me. But your format editor is ...
- 20 Nov 2016, 17:43
- Forum: Feature Requests and Bug Reports
- Topic: channles/af wrong values
- Replies: 1
- Views: 2032
channles/af wrong values
I have some videos wrongly renamed while using {channels}
I need to investigate further but I have one test case
ffmpeg says:
Stream #0:1: Audio: aac (HE-AAC), 48000 Hz, 5.1, fltp (default)
mediainfo says:
Channel(s) : 6
Channel(s) : 6 channels
Channel(s)_Original : 18
Channel(s)_Original : 18 ...
I need to investigate further but I have one test case
ffmpeg says:
Stream #0:1: Audio: aac (HE-AAC), 48000 Hz, 5.1, fltp (default)
mediainfo says:
Channel(s) : 6
Channel(s) : 6 channels
Channel(s)_Original : 18
Channel(s)_Original : 18 ...
- 20 Nov 2016, 14:39
- Forum: Feature Requests and Bug Reports
- Topic: Language inconsistently detected
- Replies: 13
- Views: 8922
Re: Language inconsistently detected
There is no intended behaviour either way. Please post some examples.
The following code goes into a file, wich I load with
--def movieFormat=@filebot/movie.groovy
{ // Movies directory }
Movies/
{// Language Directory Name}
{any {audio.first().LanguageString} // Audio Stream 1 Language ...
- 20 Nov 2016, 01:33
- Forum: Feature Requests and Bug Reports
- Topic: Language inconsistently detected
- Replies: 13
- Views: 8922
Re: Language inconsistently detected
Before you reply, I can tell you I have seen your additions:
Now, for my test case
Info.originalLanguage
returns "en"
Info.originalLanguage.toLocale().displayName
Returns "English"
audioLanguages
returns in this case an empty array (and not null, i will need to use a different test case, I guess ...
Now, for my test case
Info.originalLanguage
returns "en"
Info.originalLanguage.toLocale().displayName
Returns "English"
audioLanguages
returns in this case an empty array (and not null, i will need to use a different test case, I guess ...
- 17 Nov 2016, 08:34
- Forum: Feature Requests and Bug Reports
- Topic: Language inconsistently detected
- Replies: 13
- Views: 8922
Re: Language inconsistently detected
2. Everything is so clear now. Or almost.
How do I get iso3 from string English in
media.Audio_Language_List?
"English".tolocale() returns and object with empty properties except for several where the string english (lower case) goes.
1. Please include original_language, it's more meaningful than ...
How do I get iso3 from string English in
media.Audio_Language_List?
"English".tolocale() returns and object with empty properties except for several where the string english (lower case) goes.
1. Please include original_language, it's more meaningful than ...
- 17 Nov 2016, 00:52
- Forum: Feature Requests and Bug Reports
- Topic: Language inconsistently detected
- Replies: 13
- Views: 8922
Re: Language inconsistently detected
1.
spoken_languages and original_language are separte pieces of data. {language} will give you whatever TheMovieDB sends as spoken_languages data which may or may not be an empty list.
So on one hand I was correct:
languages=info.SpokenLanguages (=TMDB spoken_languages)
But I cannot find any ...
spoken_languages and original_language are separte pieces of data. {language} will give you whatever TheMovieDB sends as spoken_languages data which may or may not be an empty list.
So on one hand I was correct:
languages=info.SpokenLanguages (=TMDB spoken_languages)
But I cannot find any ...
- 16 Nov 2016, 11:11
- Forum: Feature Requests and Bug Reports
- Topic: Language inconsistently detected
- Replies: 13
- Views: 8922
Language inconsistently detected
Hi,
1)
I have a movie that returns an empty array for
languages
Info.SpokenLanguages
(BTW, are they the same thing?)
Do they come from the TMDB as I think?
However in the TMDB page, the OriginalLanguage is defined (filebot info.OriginalLanguage does not exist either)
The movie in question is ...
1)
I have a movie that returns an empty array for
languages
Info.SpokenLanguages
(BTW, are they the same thing?)
Do they come from the TMDB as I think?
However in the TMDB page, the OriginalLanguage is defined (filebot info.OriginalLanguage does not exist either)
The movie in question is ...
- 05 Oct 2016, 07:41
- Forum: Synology NAS & Embedded Linux
- Topic: Native libraries (libzen) do not load (x86_64)
- Replies: 13
- Views: 13466
Re: Native libraries (libzen) do not load (x86_64)
Hello Noah,
QTS4.2 on 64 systems have in fact a mix of 32 and 64 libraries, with many important 64bit libraries missing. I did not research that too deep but you could see in the forums ppl creating x64libs packages to cope with the lack of them.
The good news is the prealpha QTS4.3 ended up being ...
QTS4.2 on 64 systems have in fact a mix of 32 and 64 libraries, with many important 64bit libraries missing. I did not research that too deep but you could see in the forums ppl creating x64libs packages to cope with the lack of them.
The good news is the prealpha QTS4.3 ended up being ...
- 04 Oct 2016, 18:54
- Forum: Synology NAS & Embedded Linux
- Topic: Native libraries (libzen) do not load (x86_64)
- Replies: 13
- Views: 13466
Re: Native libraries (libzen) do not loead (x86_64)
[pid 16878] open("/opt/share/filebot/libzen.so", O_RDONLY) = 18
How do you get output like that? Can you do that with standard Linux tools?
Hello Noah,
yes, you can see all the system calls on linux with strace (system trace)
strace <your_command>
In this case I needed -f to trace also child ...
How do you get output like that? Can you do that with standard Linux tools?
Hello Noah,
yes, you can see all the system calls on linux with strace (system trace)
strace <your_command>
In this case I needed -f to trace also child ...
- 04 Oct 2016, 09:03
- Forum: Synology NAS & Embedded Linux
- Topic: Native libraries (libzen) do not load (x86_64)
- Replies: 13
- Views: 13466
Re: Native libraries (libzen) do not loead (x86_64)
Java embedded is only 32bit.
http://www.oracle.com/technetwork/java/ ... 09751.html
I will need to see how to compile the libs for 32bit, or try a full JRE 64bit
http://www.oracle.com/technetwork/java/ ... 09751.html
I will need to see how to compile the libs for 32bit, or try a full JRE 64bit
- 04 Oct 2016, 08:28
- Forum: Synology NAS & Embedded Linux
- Topic: Native libraries (libzen) do not load (x86_64)
- Replies: 13
- Views: 13466
Native libraries (libzen) do not load (x86_64)
System: QNAP 453A x86_64 GNU/Linux Celeron CPU N3150
filebot_4.7.2_noarch.ipk + latest jar
FileBot 4.7.2 (r4334)
JNA Native: 4.0.1
MediaInfo: java.lang.UnsatisfiedLinkError: Unable to load library 'zen': Native library (linux-x86/libzen.so) not found in resource path ([file:/share/CACHEDEV1 ...
filebot_4.7.2_noarch.ipk + latest jar
FileBot 4.7.2 (r4334)
JNA Native: 4.0.1
MediaInfo: java.lang.UnsatisfiedLinkError: Unable to load library 'zen': Native library (linux-x86/libzen.so) not found in resource path ([file:/share/CACHEDEV1 ...