[BUG] Pictureviewer's PicInformation, Exif User Comment does not show. - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111) +---- Forum: OS independent / Other (https://forum.kodi.tv/forumdisplay.php?fid=228) +---- Thread: [BUG] Pictureviewer's PicInformation, Exif User Comment does not show. (/showthread.php?tid=117625) Pages:
1
2
|
[BUG] Pictureviewer's PicInformation, Exif User Comment does not show. - realjobe - 2011-12-25 Hi there. Using Eden Beta 1 Win32. When User selects one jpg that has "User Comment" field inside EXif structure, "Picture Information" window shows only One char of the "Comment" field, when there are a lot of text. Comment, just for info... ronie Wrote:nope, currently only the resolution and date exif fields are available to the skin.Could this be extended to have User Comment atleast? EDIT. I also found Code: 14:32:49 T:1576 DEBUG: SECTION:LoadDLL(special://xbmcbin/system/libexif.dll) Pics are plain regular pictures with Exif 2.x - sbuckmann - 2011-12-26 This happens when the "User Comment" is stored as unicode (UTF-8). In ExifParse.cpp, the 8 byte header ("UNICODE\0") is removed, but the remaining string terminates after the first null character (most unicode characters consist of one null byte). - realjobe - 2011-12-26 sbuckmann Wrote:This happens when the "User Comment" is stored as unicode (UTF-8). In ExifParse.cpp, the 8 byte header ("UNICODE\0") is removed, but the remaining string terminates after the first null character (most unicode characters consist of one null byte). Thank you Very much for this! User Comments are created with AcDsee 4.0 application, so their ought to be "legit". Can someone do something about this issue? Also how problematic is to expose User Comments to skin, like those 2 other Exif specs.. Code: $INFO[ListItem.PictureDateTime and Code: $INFO[ListItem.PictureResolution (confluence/720p/ViewsPictures.xml) - realjobe - 2012-02-11 Eden Beta3 still does not show EXIF UserComment but one the 1st char.. - ronie - 2012-02-11 realjobe Wrote:Eden Beta3 still does not show EXIF UserComment but one the 1st char.. please create a bugreport on trac, so the devs can look into it. - realjobe - 2012-02-11 http://trac.xbmc.org/ticket/12628 - Robotica - 2012-02-12 There is a link to a patch to retrieve EXIF-data overhere RE: - Robotica - 2012-06-29 sorry RE: - Robotica - 2012-08-08 (2011-12-26, 22:29)realjobe Wrote:sbuckmann Wrote:This happens when the "User Comment" is stored as unicode (UTF-8). In ExifParse.cpp, the 8 byte header ("UNICODE\0") is removed, but the remaining string terminates after the first null character (most unicode characters consist of one null byte). Take a look at this: https://github.com/xbmc/xbmc/commit/d9ce56ebd1927da5d7bc441078164175b38d1afe There are more fields exposed to the skin only your skin/view (confluence?) doesn't use them. so you can probably do something like this in viewspictures.xml: Code: $INFO[ListItem.LISTITEM_PICTURE_COMMENT For a better example: https://github.com/fetzerch/xbmc/commit/89a4c760263a89aa170879b978fd2b5e67a9e114 RE: - fetzerch - 2012-09-13 (2012-02-11, 15:14)realjobe Wrote: http://trac.xbmc.org/ticket/12628 https://github.com/xbmc/xbmc/pull/1417 RE: [BUG] Pictureviewer's PicInformation, Exif User Comment does not show. - realjobe - 2012-10-03 Well. now that this bug has been taken care of, will there be possibility to Show EXIF:user Comment field on the bottom of the showing picture in any view mode? Has the field been exposed to skin level to use? RE: [BUG] Pictureviewer's PicInformation, Exif User Comment does not show. - Robotica - 2012-10-03 yes it is... See the status of the remaining: http://forum.xbmc.org/showthread.php?tid=113290&pid=1204200#pid1204200 RE: [BUG] Pictureviewer's PicInformation, Exif User Comment does not show. - realjobe - 2012-10-03 (2012-10-03, 11:14)Robotica Wrote: yes it is... See the status of the remaining: http://forum.xbmc.org/showthread.php?tid=113290&pid=1204200#pid1204200 EXCELENT!!! I have been waiting for this over 1,5 years now! FINALLY! I write all my picture realted info inside EXIF user comment field as it is intended to be used. GeoLocation is also included in the EXIF.. any possibility to use GoogleMaps to pinpoint the location? RE: [BUG] Pictureviewer's PicInformation, Exif User Comment does not show. - Robotica - 2012-10-03 btw, see the commit for all available fields. https://github.com/xbmc/xbmc/pull/827 yes, geo coordinates are also stored and avaiable to skinners. The picture addon xcyl is providing the option to show a google map. RE: [BUG] Pictureviewer's PicInformation, Exif User Comment does not show. - realjobe - 2012-10-03 (2012-10-03, 11:47)Robotica Wrote: yes, geo coordinates are also stored and avaiable to skinners. The picture addon xcyl is providing the option to show a google map. THIS IS the best news for a loo-ong time. Everything is coming together here! MARVELLOUS! Can't wait for Frodo to compleate!!! |