Display EXIF comment during slideshow
#16
(2013-10-01, 20:11)mikebzh44 Wrote: Don't know, maybe Picasa store this information in a dedicated place.

BTW, can't see your screenshot, use imgur.com Wink
You cannot see my screenshot in my post ?
http://forum.xbmc.org/showthread.php?tid...pid1518182
I always used imageshack without problem at this time..
Its a .png and it's direct link is
http://img542.imageshack.us/img542/3723/sout.png

I just put it in .jpg on imgur.com:
Image

Can you see it ?

PS1 : Do you know an freeware which displays ALL the EXIF tags present in a Photo ?

PS2: How to enlarge the characters of the Exif info written by your Slideshow.xml on each photo during XBMC slideshow ?
(Reading text is difficult)
Is it only these 2 lines ?:
<font>font10</font>
<textcolor>white</textcolor>

Thanks Smile
Jean-Max

OpenELEC on 2 ZBOX
KODI on 4 Windows PC
Reply
#17
OK, I can see your screenshot now, don't know what happen :S

For adding EXIF comment, I'm using EXIFmanager.

For enlarge font, I guess those 2 lines are the good ones.

PS : I know this picture, is it Isle sur la sorge ? I've spend my summer holydays in Le Thor in 2012 Wink
Sorry for my english, but, you know, I'm French so ...

Main HTPC : Odroid-C2 running CoreELEC with Titan Bingie
Secondary HTPC : Freebox Mini 4K running Android TV with Titan Bingie
Reply
#18
(2013-10-02, 08:56)mikebzh44 Wrote: OK, I can see your screenshot now, don't know what happen :S
For adding EXIF comment, I'm using EXIFmanager.
For enlarge font, I guess those 2 lines are the good ones.
PS : I know this picture, is it Isle sur la sorge ? I've spend my summer holydays in Le Thor in 2012 Wink
Not, it's Annecy Wink

Yes, putting 20 instead of 10 makes the text perfect Smile

I know Exif manager but it cannot display all the Exif tags present in a Photo...

By right click on a Photo inside XBMC, the label previously written by Picasa is founded under "caption" tag :

Question:
-> What is the Exif right code I could use in slideshow.xml to replace "exifcomment" and display this "caption" tag ?

I tried "exifcaption" but it doesn't display anything... Sad

Thanks for all Smile
Jean-Max

OpenELEC on 2 ZBOX
KODI on 4 Windows PC
Reply
#19
Info availables :

http://forum.xbmc.org/showthread.php?tid...#pid211246

Caption sound to be IPTC information :

Code:
else if (info.Equals("caption")) return SLIDE_IPTC_CAPTION;

So you can try :

Code:
$INFO[slideshow.iptccaption]

PS : Annecy looks beautiful Wink My sister in law live near (La Roche Sur Foron). If I visit here, we could drink a beer Tongue
Sorry for my english, but, you know, I'm French so ...

Main HTPC : Odroid-C2 running CoreELEC with Titan Bingie
Secondary HTPC : Freebox Mini 4K running Android TV with Titan Bingie
Reply
#20
Work with $INFO[slideshow.caption]
Sorry for my english, but, you know, I'm French so ...

Main HTPC : Odroid-C2 running CoreELEC with Titan Bingie
Secondary HTPC : Freebox Mini 4K running Android TV with Titan Bingie
Reply
#21
Hello

iptccaption is not understood Sad

Image

(look at the better result with 20 instead 10 in character size)

Code:
<window>
    <defaultcontrol>2</defaultcontrol>
    <controls>
        <control type="label">
            <description>Picture comment</description>
            <posx>0</posx>
            <posy>667</posy>
            <width>1280</width>
            <height>35</height>
            <align>center</align>
            <aligny>center</aligny>
            <font>!font10</font>
            <font>font20</font>
            <textcolor>white</textcolor>
            <label>$INFO[slideshow.cameramake] - $INFO[slideshow.cameramodel] - $INFO[slideshow.exiftime] - $INFO[slideshow.iptccaption]</label>
        </control>
    </controls>
</window>

Have a look :
The label "Annecy" is wrightly present in the "caption" zone inside EXIF ifos :
Image
Jean-Max

OpenELEC on 2 ZBOX
KODI on 4 Windows PC
Reply
#22
yes, I have made some tests.

You have to use $INFO[slideshow.caption] not $INFO[slideshow.iptccaption] (it was only a guess) Wink
Sorry for my english, but, you know, I'm French so ...

Main HTPC : Odroid-C2 running CoreELEC with Titan Bingie
Secondary HTPC : Freebox Mini 4K running Android TV with Titan Bingie
Reply
#23
YES !!
Thats'it !

Thanks for all Smile

Image
Jean-Max

OpenELEC on 2 ZBOX
KODI on 4 Windows PC
Reply
#24
I followed this thread and sure, I can see the metadata during the slideshow. But when using the element $INFO[slideshow.keywords] in some pictures all 5 values are shown (like value1, value2... value5) and sometimes the not complete length of the value is shown. Sounds this failiar to somebody ? And how can that be fixed :-)
When looking to the EXIF info using EXIFTOOL everything is OK with the JPG/EXIF metadata
Reply
#25
Good news : accented caracters are handle properly in latest Gotham release.

http://trac.xbmc.org/ticket/14188
Sorry for my english, but, you know, I'm French so ...

Main HTPC : Odroid-C2 running CoreELEC with Titan Bingie
Secondary HTPC : Freebox Mini 4K running Android TV with Titan Bingie
Reply
#26
Currently I'm using element $INFO[slideshow.caption] to show information during the slideshow. But the corresponding exif-tag contains some CRLF.
What I want is to show all info in 1 line.
- Question1: is it possible remove all CRLF when showing the infolabel $INFO[slideshow.caption]
- Question2: is it possible to show only the first line from the infolabel $INFO[slideshow.caption]
Hopefully somebody can help me to figure this out
Reply
#27
I have another question. I geo-edited all my pics with GeoSetter (Exiftool) and edited the SlideShow.xml with this info
<label>$INFO[slideshow.headline]$INFO[slideshow.caption, ~ ][CR]$INFO[slideshow.exifdate] $INFO[slideshow.city] ($INFO[slideshow.countrycode]) $INFO[slideshow.sublocation][CR]$INFO[Slideshow.Keywords] </label>

Many pics are show correctly during the slideshow, but a number are showing only the the element [slideshow.exifdate]
The XBMC debug log does not give me any clue of the problems why no additional info is shown. Does somebody else experience the simular problems ?

kind regards
Reply
#28
(2013-09-17, 16:23)Jean-Max Wrote: Hello,

On an W8 PC, I tested the new syntax for the SlideShow.xml file
in C:\users\jean-Max\AppData\Roaming\XBMC\addons\skin.modded.confluence2\720p\SlideShow.xml

Hi,

I'm running a fresh installed Gotham 13.2 on a W7 machine.
With Aeon Nox skin, I can locate the proper location for slideshow.xml file.
I preffer the Confluence skin - using an older low-end computer.
But can't find a proper place to put my slideshow.xml
I been testing with the path above, and several other variants without success.
Where will the proper path be for standard Confluence skin?

best regards
Bodozer


eceie email notification of new replies
Reply
#29
For Confluence skin, you have to look in XBMC installation folder.

For exemple, C:\Program files\XBMC\addons\skin.confluence
Sorry for my english, but, you know, I'm French so ...

Main HTPC : Odroid-C2 running CoreELEC with Titan Bingie
Secondary HTPC : Freebox Mini 4K running Android TV with Titan Bingie
Reply
#30
Thanx alot mikebzh44,

It did the trickSmile


best regards
Biodozer
Reply

Logout Mark Read Team Forum Stats Members Help
Display EXIF comment during slideshow0