Search found 17 matches

by OrangeDog
2012-12-19T02:37:50-07:00
Forum: Users
Topic: Difference between +map and +remap
Replies: 4
Views: 7528

Re: Difference between +map and +remap

Can you dig out the equivalent of +map's operations using actually documented features so I can switch to those?
Ideally I don't want to have the next person come along and have no way to find out what this command is doing.
by OrangeDog
2012-12-14T07:42:00-07:00
Forum: Users
Topic: Standardising colorspaces
Replies: 20
Views: 22414

Re: Standardising colorspaces

Me trying to do that is what this whole thread's about, but changing CMYK to sRGB changes the appearance!
by OrangeDog
2012-12-14T06:55:01-07:00
Forum: Users
Topic: Standardising colorspaces
Replies: 20
Views: 22414

Re: Standardising colorspaces

There's the problem - I have no idea what the uploader intends, and am trying to not change it from what they're likely to think it looks like.
by OrangeDog
2012-12-14T04:12:49-07:00
Forum: Users
Topic: Standardising colorspaces
Replies: 20
Views: 22414

Re: Standardising colorspaces

Right, here are the ones starting with the CMYK original: http://postimage.org/image/dvwkfrxz5/ And here is the opposite problem, starting from an sRGB original (iPhone screenshot in Safari): http://postimage.org/image/5ybr18ltz/ As an aside, you can see Safari has done a horrible job, which is why ...
by OrangeDog
2012-12-13T12:27:30-07:00
Forum: Users
Topic: Standardising colorspaces
Replies: 20
Views: 22414

Re: Standardising colorspaces

Hardly suprising that there is a massive difference in the pixel values. Then why did you mention it in the first place? Do you see the same difference in all viewers? If every image appears the same in all viewers, then yes, the differences are also all the same. Perhaps you can post a screenshot ...
by OrangeDog
2012-12-13T10:20:28-07:00
Forum: Users
Topic: Standardising colorspaces
Replies: 20
Views: 22414

Re: Standardising colorspaces

Each image on its own appears consistently across all viewers (Microsoft Photo Viewer, Paint, Paint.NET, Explorer and Nautilus thumbnails, eog). Here's the ouput using the sRGB.icc from 6.7.6: $ compare -metric RMSE Channel_digital_image_CMYK_color.jpg out.jpg null: 88.7424 (0.348009) Using -colorsp...
by OrangeDog
2012-12-13T03:34:38-07:00
Forum: Users
Topic: Standardising colorspaces
Replies: 20
Views: 22414

Re: Standardising colorspaces

I can see a significant difference on a variety of both Windows and Linux viewers. Additionally, using -colorspace RGB on that image gives output that does look exactly the same. Are you using the same version as me? I know colorspace conversions have been pretty broken previously. Have just checked...
by OrangeDog
2012-12-12T10:32:51-07:00
Forum: Users
Topic: Standardising colorspaces
Replies: 20
Views: 22414

Re: Standardising colorspaces

It certainly looks nicer, but the output still does not exactly match the colours of the input.
I don't want to affect the appearance at all - just standardise the representation for maximum compatibility.
by OrangeDog
2012-12-12T08:09:04-07:00
Forum: Users
Topic: Standardising colorspaces
Replies: 20
Views: 22414

Re: Standardising colorspaces

by OrangeDog
2012-12-12T02:33:52-07:00
Forum: Users
Topic: Standardising colorspaces
Replies: 20
Views: 22414

Re: Standardising colorspaces

That still ends up lightening CMYK input, whether there's a -strip or not.
by OrangeDog
2012-12-11T08:55:10-07:00
Forum: Users
Topic: Standardising colorspaces
Replies: 20
Views: 22414

Standardising colorspaces

I have input images from various sources in various colorspaces and need to standardise them, removing all embedded profile stuff, but leaving the resulting images looking the same. Basically I want to achieve what happens when you open them in MSPaint and re-save as a bitmap (then convert back to j...
by OrangeDog
2012-12-11T06:46:43-07:00
Forum: Users
Topic: Difference between +map and +remap
Replies: 4
Views: 7528

Re: Difference between +map and +remap

Not in documentation but in my working production code (6.7.9-6) convert -dispose Background in-%02d.png[1-50] -set delay 10 -loop 0 -dither FloydSteinberg +map out.gif No warnings, and different results from +remap or omitting it. The high speed of +map vs. +remap is desirable, and I was after some...
by OrangeDog
2012-11-15T08:34:21-07:00
Forum: Users
Topic: Difference between +map and +remap
Replies: 4
Views: 7528

Difference between +map and +remap

The two commands clearly do different things to an image sequence: +map is much faster and +remap gives more accurate colours in the output. However, there doesn't seem to be any documentation for +map (but it appears in lots of code around the place). What is different in the way these commands ope...
by OrangeDog
2012-11-15T05:35:48-07:00
Forum: Developers
Topic: [SOLVED] reading multiple images over standard input
Replies: 11
Views: 63015

Re: [SOLVED] reading multiple images over standard input

For example, suppose I want to apply a convolution matrix (sharpening in this case) to every frame. In such a case you should really use ffmpeg's own filters - saving potentially massive amounts of time and space. ffmpeg -i input.mpg -filter:v "unsharp" output.mpg The "unsharp" ...
by OrangeDog
2012-06-19T12:00:02-07:00
Forum: Users
Topic: Ignore missing images
Replies: 8
Views: 12652

Re: Ignore missing images

No, being able to redirect the stderr stream to arbitrary places does not help with a non-zero exit code.