<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to feature-requests</title><link>https://sourceforge.net/p/mapivi/feature-requests/</link><description>Recent changes to feature-requests</description><atom:link href="https://sourceforge.net/p/mapivi/feature-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Fri, 27 Dec 2024 11:18:33 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/mapivi/feature-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>#26 How to use exif field Orientation?</title><link>https://sourceforge.net/p/mapivi/feature-requests/26/?limit=25#76c5</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Thanks for the quick help.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sven H.</dc:creator><pubDate>Fri, 27 Dec 2024 11:18:33 -0000</pubDate><guid>https://sourceforge.net4a5b006a22fefbcc6195e184e0ee21ec4b18a5cc</guid></item><item><title>#26 How to use exif field Orientation?</title><link>https://sourceforge.net/p/mapivi/feature-requests/26/?limit=25#245a</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi, sure, if you select one or several  images and press button "0" (zero) the images are rotated according to the exif orientation attribute .&lt;br/&gt;
It's also possible to auto rotate the images alteady during picture import .&lt;br/&gt;
Best regards&lt;br/&gt;
Martin&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Herrmann</dc:creator><pubDate>Fri, 27 Dec 2024 10:22:10 -0000</pubDate><guid>https://sourceforge.netf8af5c97bca225a7e876f5fad087b272ea8a0a40</guid></item><item><title>How to use exif field Orientation?</title><link>https://sourceforge.net/p/mapivi/feature-requests/26/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Is there a way to use the Orientation attribute from the jpg metadata? I mean for example for autorotation when viewing images.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sven H.</dc:creator><pubDate>Thu, 26 Dec 2024 17:00:57 -0000</pubDate><guid>https://sourceforge.netb6ae9d27652512c7d2211299116acfe606b68721</guid></item><item><title>#25 More keybindings / shortcuts in Comment window</title><link>https://sourceforge.net/p/mapivi/feature-requests/25/?limit=25#2a06</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;That was fast. Thanks. No, I didn't known about IPTC.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sven H.</dc:creator><pubDate>Sat, 02 Dec 2023 16:36:34 -0000</pubDate><guid>https://sourceforge.net01761973d5ebd7bbf5649a70f429dd7268d3ce70</guid></item><item><title>#25 More keybindings / shortcuts in Comment window</title><link>https://sourceforge.net/p/mapivi/feature-requests/25/?limit=25#853d</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Thanks for the nice feedback!&lt;br/&gt;
Wow, the first feature request after 12 years! :)&lt;br/&gt;
I added the requested keybinding Ctrl-l (add last comment) and documented the existing keybinding for Ctrl-c (add copyright), see revision 456. &lt;br/&gt;
BTW, I don't use the JPEG comment section any more, I completely switched to use IPTC data which offers more structure and thus better searches. Have you ever tried it?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Herrmann</dc:creator><pubDate>Sat, 02 Dec 2023 13:39:04 -0000</pubDate><guid>https://sourceforge.net53dae8de090d6a211bb104c9a922f5d188bb6025</guid></item><item><title>More keybindings / shortcuts in Comment window</title><link>https://sourceforge.net/p/mapivi/feature-requests/25/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Excellent tool - I have been using it for decades. Some more keybindings / shortcuts in Comment window would be awesome. Especially, Ctrl-l for "Last comment"&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sven Hartrumpf</dc:creator><pubDate>Sun, 26 Nov 2023 10:34:28 -0000</pubDate><guid>https://sourceforge.netc9edd9e51cb0e356adf7ab71483702baad893e50</guid></item><item><title>Speed up thumbnail generation for RAW files (incl. howto)</title><link>https://sourceforge.net/p/mapivi/feature-requests/24/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Currently, mapivi uses ufraw to generate thumbnails for RAW files. However, the procedure is very CPU expensive and thus slow. From the command used&lt;/p&gt;
&lt;p&gt;sh -c "ufraw-batch" --silent --wb=camera --black-point=auto --exposure=auto --create-id=also --out-type=png --out-depth=16 "--output=/tmp/magick-XXCyuyPe.png" "/tmp/magick-XXUdycXg"&lt;/p&gt;
&lt;p&gt;it seems that mapivi is calling image magick which is calling ufraw as delegate. From the delecation it becomes clear that the slowness of this procedure results primarily from the fact that a full raw development is done here (note: even in 16bit colour depth!) then the image is scaled down to some 160x120pixels and reduced to 8bit jpg for the thumbnail usage. Thus, a very high quality intermediate step is used without any need or reuse.&lt;/p&gt;
&lt;p&gt;Thus it seems possible to speed up thumbnail generation considerably by using cheaper procedures. Instead of developing the RAW one could just extract the embedded preview images already available and just scale them down. To extract embedded JPG preview images one might use&lt;/p&gt;
&lt;p&gt;$ ufraw-batch --embedded-image input.nef --out-type=jpg --output=.thumbs/input.nef&lt;/p&gt;
&lt;p&gt;This pure extraction is done in nearly no time, only scaling is left to consume CPU cycles. Probably, this call could be included in extractThumb in case no Exif-thumbnail is found.&lt;/p&gt;
&lt;p&gt;Given the procedure currently used by mapivi one might on the other end consider it a feature: if the above mentioned expensive procedure is used one should probably just store the fully developed jpg file along with the RAW files and thus incorporate them in the general jpg-centric workflow of mapivi. One would then end up with the usual JPG+RAW type of images that work flawlessly with mapivi. It only seems advisable to tag those automatic files then with a special keyword for easy reference so the user can easily redevelop them in case necessary.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexander Wagner</dc:creator><pubDate>Sat, 15 Oct 2011 14:22:25 -0000</pubDate><guid>https://sourceforge.net7526bf20c8e45b1b6dcec5d6e1f2bdf774debde2</guid></item><item><title>Renaming upon ingest</title><link>https://sourceforge.net/p/mapivi/feature-requests/23/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Usually, Mapivi renames files upon ingest. This works perfectly in case of JPG files. It also works in case the SD Card contains JPG+RAW files. Unfortunately, Mapivi doesn't rename the images in case it finds a sole RAW file. This is quite unfortunate as it breaks the logic of renaming in this case.&lt;/p&gt;
&lt;p&gt;Therefore, it would be great if Mapivi could adopt renaming procedures to all image files and not only if a proper JPG is available. This also makes increasing sense with the additional support of RAW in recent svn revisions of Mapivi.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexander Wagner</dc:creator><pubDate>Fri, 14 Oct 2011 17:21:49 -0000</pubDate><guid>https://sourceforge.net5c6425389a599b35265b444ab32dcaf8a959a88a</guid></item><item><title>Keyword hierarchy collapse/expand</title><link>https://sourceforge.net/p/mapivi/feature-requests/22/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;It would be helpful (especially for larger hierarchies of keywords) if it would be possible to collapse/expand the whole tree at once. Especially, collapsing can help in digging to the right category when adding/searching for subitems.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexander Wagner</dc:creator><pubDate>Wed, 17 Aug 2011 09:20:08 -0000</pubDate><guid>https://sourceforge.netc990eab51cf089ebe67d597eb4ca19bbb20bd6d0</guid></item><item><title>Enhance Lighttable</title><link>https://sourceforge.net/p/mapivi/feature-requests/21/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Currently, the light table is only used for slide shows. It would, however, be very nice and helpful if the light table could be enhanced to some sort of intelligent clipboard that allows for all major image operations, ie. enhance it's menus by the context menu of the images thumbnail. This would ease up selections for web galleries export, copy to print from various sources and so on.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexander Wagner</dc:creator><pubDate>Tue, 16 Aug 2011 09:55:09 -0000</pubDate><guid>https://sourceforge.net1c30f4d204dd1bf8a81b4920ac33cc65ccff12bc</guid></item></channel></rss>