Search found 20 matches

by salmen
2016-04-08T13:16:37-07:00
Forum: Users
Topic: Remove too dark photos from batch
Replies: 35
Views: 28944

Re: Remove too dark photos from batch

Obviously new to all of this.. Think I have a problem with the mean returning a float value which bash can not handle? #!/bin/bash toodark=29000 avgluz=$(identify -format "%[mean]" file.dng) echo $avgluz if ((avgluz < toodark)); then echo "too damn dark!" else echo "reasonab...
by salmen
2016-04-08T10:44:46-07:00
Forum: Kudos and Rants
Topic: IM used by "producers" (non-developers)?
Replies: 2
Views: 60029

Re: IM used by "producers" (non-developers)?

I wonder if there are also those that would say something like "I am not a coder, but sometimes I prefer to roll up my sleeves to get better control" . Instead of using the common readymade software. In 3d-production I think its not uncommon that artists/producers are also programmers to s...
by salmen
2016-04-08T01:43:56-07:00
Forum: Users
Topic: Remove too dark photos from batch
Replies: 35
Views: 28944

Re: Remove too dark photos from batch

Ok, thanks. "Version: ImageMagick 6.8.9-9 Q16 x86_64 2015-08-06 ". Now trying to write a shellscript
by salmen
2016-04-07T15:36:16-07:00
Forum: Kudos and Rants
Topic: IM used by "producers" (non-developers)?
Replies: 2
Views: 60029

IM used by "producers" (non-developers)?

I am curious, is IM used by producers, photographers, motion-graphics-people and such? That use it as a tool in production. Or is it exclusively for the more technical users like engineers, programmers, developers etc?
by salmen
2016-04-07T15:09:52-07:00
Forum: Users
Topic: Remove too dark photos from batch
Replies: 35
Views: 28944

Remove too dark photos from batch

Putting together a video of a construction site. I have a batch of photos all taken from the same exact point during a few years. Now I want to remove those that make the video too flickery. First that would be all taken at night. I guess identify -format "%[fx:mean]\n" filename is useful....