• 1
  • 10
  • 11
  • 12(current)
  • 13
  • 14
  • 53
Release MyPicsDB: Pictures DB with EXIF, IPTC & XMP tags
(2013-01-07, 23:11)peppe_sr Wrote: always the same result on the same image!!
i need help

Please upload the debug log to xbmclogs.com
(2012-12-27, 01:16)akovia Wrote: 1. Aeon Nox has a "Pictures" menu item but it is the only menu item that has completely transparent menus which makes it hard to read depending on the background pictures. Since this the only menu item like this I thought it might be a plugin setting.
It's not the plugin.

(2012-12-27, 01:16)akovia Wrote: 2. I would like to add some sub-menus to the main menu item for easy access to my most used functions. Aeon Nox allows for custom button functions, but I'm not sure how to make them for a plugin. This way I could go directly to keywords or a collection from the sub menu.

something like:
function = XBMC.RunScript(plugin.image.mypicsdb,0,?action='setproperties'&method ='Keywords'&sort ='Name')
or
function = XBMC.RunScript(plugin.image.mypicsdb,0,?action='setproperties'&method ='Collection'&collname ='Pets'&sort ='Name')
Please use Frodo and the last version from my git repository. It prints the parameters to the debug log. That means that you select a menu and can look in the debug log for the parameters to use with RunScript().


(2012-12-27, 01:16)akovia Wrote: Lastly, I wondered if it would be possible to add a menu item to "add to collection" in the fullscreen mode or the info mode? There are times when I have a series of similar pictures and I want to pick the best ones for a collection and the thumbs aren't big enough to to distinguish between them which means a lot of going back and forth and button clicking to add items to a collection.
As far as I know it's not possible to display a context menu in if you view a fullscreen picture.
No log no help.
Main page: https://github.com/Xycl
Repository: Xycl Repository Leia
Repository: Xycl Repository Matrix
Reply
(2013-01-08, 20:57)Xycl Wrote:
(2013-01-07, 23:11)peppe_sr Wrote: always the same result on the same image!!
i need help

here is my log:

http://xbmclogs.com/show.php?id=27080



Reply
I'm really having fun using the filter wizard to look for pictures with different sets of people. Thanks for the addon.

I see that there is a menu item called "Browse by Geography", but it never shows up in my pictures database menu. I do have lots of pictures that have been geotagged. I have been able to see them on the map using the context menu. Is there something else I have to do to be able to browse by geography?
Reply
(2013-01-09, 10:41)peppe_sr Wrote: here is my log:

http://xbmclogs.com/show.php?id=27080

I think it wasn't a picture but a video.
Please try the new 1.9.7 version from my repository.
No log no help.
Main page: https://github.com/Xycl
Repository: Xycl Repository Leia
Repository: Xycl Repository Matrix
Reply
(2013-01-09, 15:46)sfontes Wrote: I see that there is a menu item called "Browse by Geography"

It's old needless code after DB schema cleanup.
It was used to display country and city tag.
No log no help.
Main page: https://github.com/Xycl
Repository: Xycl Repository Leia
Repository: Xycl Repository Matrix
Reply
(2013-01-09, 21:03)Xycl Wrote:
(2013-01-09, 15:46)sfontes Wrote: I see that there is a menu item called "Browse by Geography"

It's old needless code after DB schema cleanup.
It was used to display country and city tag.

Originally it was designed as a 4 level hierarchy for browsing: see all countries, select 1 of them, drill down to all province/state of the selected country, drill down to city and sublocation. On each level the slideshow can be started. Unfortunately this feature is gone by the new DB design. It looks like the drill down on year, month, day. But datetimeoriginal is in one tag and code survived. Geography is 4 seperate tags, so an additional redesign is necessary
Reply
(2013-01-09, 20:08)Xycl Wrote:
(2013-01-09, 10:41)peppe_sr Wrote: here is my log:

http://xbmclogs.com/show.php?id=27080


I think it wasn't a picture but a video.
Please try the new 1.9.7 version from my repository.

I think you are right, the firsr file of the subsequent subfolder is a video.
I will try 1.9.7 tomorrow.

[EDIT]

after the installation of 1.9.7 the scan of the incriminated folder gone fine.
now i'm scanning the whole pictures folder. i will let you know.
peppe


Reply
Slideshow works in reverse order.
For example I choose "The 50 latest pics".
In the list pictures are in order: img01, img02, ... img50.
From the left menu I run the slideshow.
Pictures are displayed in the reverse order: img50, img49, ... img01
Reply
today i found my scan ended....i gave a look into "browse by folder" and i found a lot of subfolders empty, with 0 pictures.
Image
for some reason they have been ignored, there are a lot of folders in this situation.
i rescanned one of this folder with the log on.
here is it.
http://xbmclogs.com/show.php?id=27426 (line 2224)
thankyou for your effort.
peppe
Reply
(2013-01-11, 10:53)peppe_sr Wrote: today i found my scan ended....i gave a look into "browse by folder" and i found a lot of subfolders empty, with 0 pictures.
for some reason they have been ignored, there are a lot of folders in this situation.
i rescanned one of this folder with the log on.
here is it.
http://xbmclogs.com/show.php?id=27426
thankyou for your effort.
peppe

I think this is caused because of the + sign in the folder name. I had simmular issues with tagnames including a & sign.
It looks like there are some reserved characters because of the URL handling in the backside of XBMC. So do not use & + = for example
Reply
(2013-01-11, 10:55)mhdebokx Wrote:
(2013-01-11, 10:53)peppe_sr Wrote: today i found my scan ended....i gave a look into "browse by folder" and i found a lot of subfolders empty, with 0 pictures.
for some reason they have been ignored, there are a lot of folders in this situation.
i rescanned one of this folder with the log on.
here is it.
http://xbmclogs.com/show.php?id=27426
thankyou for your effort.
peppe

I think this is caused because of the + sign in the folder name. I had simmular issues with tagnames including a & sign.
It looks like there are some reserved characters because of the URL handling in the backside of XBMC. So do not use & + = for example

you are right, the problem was there.... do you think i have to rename everything or is there an easiest workaround?
Peppe
Reply
(2013-01-11, 11:07)peppe_sr Wrote:
(2013-01-11, 10:55)mhdebokx Wrote: I think this is caused because of the + sign in the folder name. I had simmular issues with tagnames including a & sign.
It looks like there are some reserved characters because of the URL handling in the backside of XBMC. So do not use & + = for example

you are right, the problem was there.... do you think i have to rename everything or is there an easiest workaround?
Peppe

Wait for an answer of Xycl, In my case he managed to fix MPD, but know he knows what the exact problem is Blush
Reply
i will wait, in the meantime i'm starting the translation of mypicsdb via transifex. Rofl
Peppe
Reply
Hi all,Wink

I have a problem with the addon installed with xbmc of HP Proliant microserver.
The OS is OS Windows Home Server 2011
and xbmc indicate in data info wbmc : of Windows Server 2008 R2 SP1 64, build 7601

I have realise the same operations with xbmc installed with windows 8 on dell pc and it works !
So, let's go :
- I create a directory called c:\TEST2 with 4 pictures in it.
- From home screen, I select the Pictures menu.
- I add in the source the path 'c:\Test'
- From home screen, I select the Add-ons submenu under Pictures.
- I Select My Pictures Database
- I Select Paths of picture folders
- I Select Add a path to database
- I add 'c:\TEST2)' and I select Yes for the next three dialog boxes ( a box indicate the path added)
- A have the info box form My Pictures Databe : '4 scanned/ 4 added / 0 deleted / 0 modified' (I hope the translation is good)
- I gook back and I select the first item ('Added last 10 days')
... and I have 0 object in the box Confused !!! and no warning info.


here is the log file :
http://xbmclogs.com/show.php?id=27657

The time in the logfile correspond to
16:10 Go to pictures menu
16:11 Go to pictures database
16:12 Go to Paths of picture folders
16:13 Add directory TEST2
16:14 Click on OK,OK,OK
16:15 Go to ..
16:16 And I select First item



Is someone have an idea please ?Huh
Reply
Plus sign.

I found the issue.
Will be corrected soon.

Xycl
(2013-01-12, 17:33)herve502 Wrote: I have realise the same operations with xbmc installed with windows 8 on dell pc and it works !

Do you really use Frodo RC3 on your other windows pc or is it Eden or an older Frodo version?
No log no help.
Main page: https://github.com/Xycl
Repository: Xycl Repository Leia
Repository: Xycl Repository Matrix
Reply
  • 1
  • 10
  • 11
  • 12(current)
  • 13
  • 14
  • 53

Logout Mark Read Team Forum Stats Members Help
MyPicsDB: Pictures DB with EXIF, IPTC & XMP tags1