Search found 12 matches

by utnuc
2016-09-03T18:34:05-07:00
Forum: Users
Topic: Building with PNG Delegate problems
Replies: 6
Views: 13154

Re: Building with PNG Delegate problems

@modrickthebrave, When I try your method I'm unable to get the compile to include the png delegate still. Getting the following warning on compile: libtool: warning: '/usr/local//lib/libpng16.la' seems to be moved Here's the commands I ran: export INS="/usr/local" export CPPFLAGS="-I$...
by utnuc
2016-09-02T12:36:54-07:00
Forum: Developers
Topic: Compile standalone convert for Mac OSX
Replies: 8
Views: 14174

Re: Compile standalone convert for Mac OSX

Has anyone been able to crack this yet? I need convert for my app as well.
by utnuc
2015-12-11T08:16:31-07:00
Forum: Users
Topic: trim set of images same amount
Replies: 2
Views: 3656

Re: trim set of images same amount

this worked brilliantly with a little bash scripting. Thanks fmw42!
by utnuc
2015-12-10T20:19:50-07:00
Forum: Users
Topic: trim set of images same amount
Replies: 2
Views: 3656

trim set of images same amount

I've got a set of stills extracted from a video that I'd like to process the same way, but when I apply -trim to each still they are getting trimmed a tad different each time (when they should have the exact amount of black space on every still. Is there a way to get the average trim of a set and ap...
by utnuc
2015-09-15T17:46:03-07:00
Forum: Users
Topic: convert wont accept image2pipe ppm format
Replies: 1
Views: 2654

Re: convert wont accept image2pipe ppm format

just figured it out:

Code: Select all

ffmpeg -i 001.mp4 -y -t 00:00:01 -vframes 1 -f image2pipe -vcodec ppm - | convert - out.jpg
by utnuc
2015-09-15T17:43:38-07:00
Forum: Users
Topic: convert wont accept image2pipe ppm format
Replies: 1
Views: 2654

convert wont accept image2pipe ppm format

I'm trying to grab the first frame of a video using ffmpeg and pipe it to convert to process: ffmpeg -i 001.mp4 -y -t 00:00:01 -vframes 1 -f image2pipe -vcodec ppm | convert - out.jpg But it throws an error: convert.im6: no decode delegate for this image format `/tmp/magick-95YoBo1i' @ error/constit...
by utnuc
2015-09-01T19:25:47-07:00
Forum: Users
Topic: create mask for constant (nonchanging) portion of video
Replies: 3
Views: 3679

Re: create mask for constant (nonchanging) portion of video

@snibgo

Brilliant post. Can you format that code for linux / bash?

@fmw42

Great suggestion, I can write the code with the text values.
by utnuc
2015-09-01T08:32:58-07:00
Forum: Users
Topic: create mask for constant (nonchanging) portion of video
Replies: 3
Views: 3679

create mask for constant (nonchanging) portion of video

I have been a long time ImageMagick user, huge fan. This question is more about theory than syntax. I have a compressed ultrasound video clip that has a portion at the top (usually 25-75 pixels) that has personal patient information. I'd like to get this value automatically. This upper portion of th...
by utnuc
2014-09-18T09:42:21-07:00
Forum: Users
Topic: crop a rotated box out of an image
Replies: 5
Views: 5043

Re: crop a rotated box out of an image

once I figured out the bash syntax, this works well. Thanks again for a quick response.
by utnuc
2014-09-18T06:34:09-07:00
Forum: Users
Topic: crop a rotated box out of an image
Replies: 5
Views: 5043

Re: crop a rotated box out of an image

snibgo,

I have run into an issue with this code. Specifically the cropping that happens with -distort when the line goes primarily horizontal (0,202) (792,280) is unacceptable. Is there any way to use +distort and know the location of the line?

Ben
by utnuc
2014-09-17T08:16:32-07:00
Forum: Users
Topic: crop a rotated box out of an image
Replies: 5
Views: 5043

Re: crop a rotated box out of an image

snibgo, thanks! this is exactly what I was looking for.
by utnuc
2014-09-17T06:56:05-07:00
Forum: Users
Topic: crop a rotated box out of an image
Replies: 5
Views: 5043

crop a rotated box out of an image

Hello, I am having a hard time wrapping my head around this one. I have an image that the user is able to draw a 3px line across, and that line is extended to the edges of the image. What I'd like to do is crop the image to the pixels under the line and rotate them to have a 3px width portrait-orien...