
If you're looking for automation, then the docker image might be worth a look.
I live in the US, in the state of Louisiana. I am a Licensed Master Social Worker (LMSW) currently working on my Doctorate in Health Administration. I also have an undergraduate degree in Social Work. I have worked in nonprofits my entire adult life and took on $40,000 in student loan debt for the credentials I needed to practice in this helping profession. Despite my credentials, pay in nonprofits (especially in Louisiana) is abysmal. LMSWs at our organization make less than $30,000 annually. I am also supporting my wife as she is a nonprofit professional as well and has been on the job search for 8 months. The social services/nonprofit landscape in New Orleans is nearly non-existent right now due to lack of funding.rednoah wrote:You can post a few lines describing your circumstances (please include average income and home country) and then I'll PM you a code.
Thank you so much!rednoah wrote:Thank you for your service! I've PMed you a code.
Code: Select all
FileBot 4.7.8 (r4842)
JNA Native: 5.1.0
MediaInfo: 0.7.92.1
7-Zip-JBinding: 9.20
Chromaprint: 1.4.2
Extended Attributes: OK
Unicode Filesystem: OK
Script Bundle: 2017-03-24 (r490)
Groovy: 2.4.8
JRE: Java(TM) SE Runtime Environment 1.8.0_121
JVM: 64-bit Java HotSpot(TM) 64-Bit Server VM
CPU/MEM: 4 Core / 3 GB Max Memory / 17 MB Used Memory
OS: Windows 10 (amd64)
Package: APPX
Data: C:\Users\HTPC\AppData\Roaming\FileBot
Done ?(?????)?
Code: Select all
filebot.launcher -script fn:amc --output "D:/Media" --action copy --conflict skip -non-strict --log-file amc.log --def unsorted=y music=y artwork=n "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D"
Code: Select all
--log-file D:/Media/amc.log
Code: Select all
C:\Users\${USER}\AppData\Local\Microsoft\WindowsApps
Code: Select all
filebot.launcher.exe -script fn:amc --output "D:/Media" --action copy --conflict skip -non-strict --log-file D:\Media\amc.log --def unsorted=y music=y artwork=n "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D"
I must be the exception to the rule, then.rednoah wrote:The Windows Store will make sure that these things are added to the path.
Commands like "filebot" and "filebot.launcher" will just work. If you're not using a system call (%PATH% is ignored) to call filebot and not CMD or PowerShell, you may need explicitly have cmd do the call.
e.g.Code: Select all
cmd /c filebot -version
Code: Select all
echo $ENV:PATH
Code: Select all
PS C:\Users\Joey> echo $ENV:PATH
C:\ProgramData\Oracle\Java\javapath;C:\Python27\;C:\Python27\Scripts;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\OpenCL SDK\3.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\3.0\bin\x64;D:\development\xampp\php;C:\ProgramData\ComposerSetup\bin;C:\Program Files (x86)\WinSCP\;C:\Program Files\nodejs\;C:\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Plantronics\Spokes3G\;C:\Program Files (x86)\Common Files\Plantronics\;C:\Program Files (x86)\Plantronics\MyHeadsetUpdater\;C:\Users\Joey\AppData\Roaming\npm;%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;
Code: Select all
"%USERPROFILE%\AppData\Local\Microsoft\WindowsApps"
Code: Select all
PS C:\Users\Joey> filebot
filebot : The term 'filebot' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ filebot
+ ~~~~~~~
+ CategoryInfo : ObjectNotFound: (filebot:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
PS C:\Users\Joey> filebot.exe
filebot.exe : The term 'filebot.exe' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ filebot.exe
+ ~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (filebot.exe:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
PS C:\Users\Joey> filebot.launcher
filebot.launcher : The term 'filebot.launcher' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ filebot.launcher
+ ~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (filebot.launcher:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
PS C:\Users\Joey> filebot.launcher.exe
filebot.launcher.exe : The term 'filebot.launcher.exe' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ filebot.launcher.exe
+ ~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (filebot.launcher.exe:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Code: Select all
%USERPROFILE%\AppData\Local\Microsoft\WindowsApps
Code: Select all
C:\Users\<USER>\AppData\Local\Microsoft\WindowsApps
Code: Select all
C:\ProgramData\Oracle\Java\javapath
C:\WINDOWS\system32
C:\WINDOWS
C:\WINDOWS\System32\Wbem
C:\WINDOWS\System32\WindowsPowerShell\v1.0\
C:\Program Files\nodejs\
%USERPROFILE%\AppData\Local\Microsoft\WindowsApps
Code: Select all
C:\ProgramData\Oracle\Java\javapath
C:\Program Files\nodejs\
Cheers man, I didn't think of that.rednoah wrote:When running echo $ENV:PATH variables such as %USERPROFILE% should not be in the output.
[...]
You can use %USERPROFILE% in the "Edit Environment Variable" dialog in the Windows settings, but when using %PATH% it should always appear in it's resolved form.
[...]
Either the Java installer or the NodeJS installer fucked up your PATH. My money is on NodeJS.