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.
Search found 17 matches
- 2012-12-19T02:37:50-07:00
- Forum: Users
- Topic: Difference between +map and +remap
- Replies: 4
- Views: 7774
- 2012-12-14T07:42:00-07:00
- Forum: Users
- Topic: Standardising colorspaces
- Replies: 20
- Views: 23340
Re: Standardising colorspaces
Me trying to do that is what this whole thread's about, but changing CMYK to sRGB changes the appearance!
- 2012-12-14T06:55:01-07:00
- Forum: Users
- Topic: Standardising colorspaces
- Replies: 20
- Views: 23340
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.
- 2012-12-14T04:12:49-07:00
- Forum: Users
- Topic: Standardising colorspaces
- Replies: 20
- Views: 23340
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 ...
- 2012-12-13T12:27:30-07:00
- Forum: Users
- Topic: Standardising colorspaces
- Replies: 20
- Views: 23340
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 ...
- 2012-12-13T10:20:28-07:00
- Forum: Users
- Topic: Standardising colorspaces
- Replies: 20
- Views: 23340
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 ...
- 2012-12-13T03:34:38-07:00
- Forum: Users
- Topic: Standardising colorspaces
- Replies: 20
- Views: 23340
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 ...
- 2012-12-12T10:32:51-07:00
- Forum: Users
- Topic: Standardising colorspaces
- Replies: 20
- Views: 23340
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.
I don't want to affect the appearance at all - just standardise the representation for maximum compatibility.
- 2012-12-12T08:09:04-07:00
- Forum: Users
- Topic: Standardising colorspaces
- Replies: 20
- Views: 23340
Re: Standardising colorspaces
http://upload.wikimedia.org/wikipedia/e ... _color.jpgthe URL of a sample file
- 2012-12-12T02:33:52-07:00
- Forum: Users
- Topic: Standardising colorspaces
- Replies: 20
- Views: 23340
Re: Standardising colorspaces
That still ends up lightening CMYK input, whether there's a -strip or not.
- 2012-12-11T08:55:10-07:00
- Forum: Users
- Topic: Standardising colorspaces
- Replies: 20
- Views: 23340
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 ...
- 2012-12-11T06:46:43-07:00
- Forum: Users
- Topic: Difference between +map and +remap
- Replies: 4
- Views: 7774
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 ...
- 2012-11-15T08:34:21-07:00
- Forum: Users
- Topic: Difference between +map and +remap
- Replies: 4
- Views: 7774
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 ...
- 2012-11-15T05:35:48-07:00
- Forum: Developers
- Topic: [SOLVED] reading multiple images over standard input
- Replies: 11
- Views: 65434
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" filter has various ...
- 2012-06-19T12:00:02-07:00
- Forum: Users
- Topic: Ignore missing images
- Replies: 8
- Views: 13174
Re: Ignore missing images
No, being able to redirect the stderr stream to arbitrary places does not help with a non-zero exit code.