I hate to be a bother once more but I had one other question: is it possible to lower the quality of an outputted file with NConvert? I know XnConvert lets you set the quality in the output tab but I'm not seeing anything to do something similar with NConvert.
If you're outputting to a JPEG there ...
Search found 6 matches
- Thu Dec 15, 2016 3:00 pm
- Forum: NConvert
- Topic: Integrating NConvert with Powershell
- Replies: 10
- Views: 2406
- Thu Dec 15, 2016 2:19 pm
- Forum: NConvert
- Topic: Integrating NConvert with Powershell
- Replies: 10
- Views: 2406
Re: Integrating NConvert with Powershell
I hate to be a bother once more but I had one other question: is it possible to lower the quality of an outputted file with NConvert? I know XnConvert lets you set the quality in the output tab but I'm not seeing anything to do something similar with NConvert.
- Wed Dec 14, 2016 9:01 pm
- Forum: NConvert
- Topic: Integrating NConvert with Powershell
- Replies: 10
- Views: 2406
Re: Integrating NConvert with Powershell
Well, the issue was with Powershell, not with NConvert. Myself and one of the guys I work with managed to cobble together a working script (which is below if anyone wants to use it for the same reason).
$Dir = "C:\Users\Me\Desktop\Test_Folder\"
ForEach ($File in (Get-ChildItem $Dir -Recurse ...
$Dir = "C:\Users\Me\Desktop\Test_Folder\"
ForEach ($File in (Get-ChildItem $Dir -Recurse ...
- Wed Dec 14, 2016 3:33 pm
- Forum: NConvert
- Topic: Integrating NConvert with Powershell
- Replies: 10
- Views: 2406
Re: Integrating NConvert with Powershell
Well, without that it doesn't do anything to ANY of the files in the folder. I tried using the $Dir in place of the path, but it errored out.xnview wrote:you usefor nconvert arguments, so all filesCode: Select all
"C:\Users\Me\Desktop\Test folder\*.jpg"
- Wed Dec 14, 2016 2:09 pm
- Forum: NConvert
- Topic: Integrating NConvert with Powershell
- Replies: 10
- Views: 2406
Re: Integrating NConvert with Powershell
Same deal, it applies to all the files in the folder.xnview wrote:and without -rflag decr?
- Tue Dec 13, 2016 7:49 pm
- Forum: NConvert
- Topic: Integrating NConvert with Powershell
- Replies: 10
- Views: 2406
Integrating NConvert with Powershell
Hello, I'm looking to create a Powershell script that will allow me to process images based on their file size: any image that comes in over 1 MB gets processed, the rest get ignored. Unfortunately I'm having a bit of trouble integrating NConvert with Powershell, and I'm honestly not sure if this is ...