Kodi Community Forum
[Release] Backup (formerly XBMC Backup) - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151)
+---- Thread: [Release] Backup (formerly XBMC Backup) (/showthread.php?tid=129499)



RE: [Release] Backup (formerly XBMC Backup) - robweber - 2019-12-01

(2019-12-01, 19:30)elhifinio Wrote:
(2019-12-01, 19:29)elhifinio Wrote:
(2019-12-01, 19:23)robweber Wrote: Sorry, I should have mentioned to please run that with Debug logging turned on. The log statement won't show up without it. It should be in the log right before that error is thrown.  
mhmm...no difference with debugging enabled: https://paste.kodi.tv/fegobetuva.kodi  
adding some more lines: https://paste.kodi.tv/otixijuday.kodi 
That's really odd. Did you re-download the zip file from GitHub before running? I added a log line directly above the line that is causing this error. It should be there.


RE: [Release] Backup (formerly XBMC Backup) - elhifinio - 2019-12-07

(2019-12-01, 22:57)robweber Wrote:
(2019-12-01, 19:30)elhifinio Wrote:
(2019-12-01, 19:29)elhifinio Wrote: mhmm...no difference with debugging enabled: https://paste.kodi.tv/fegobetuva.kodi  
adding some more lines: https://paste.kodi.tv/otixijuday.kodi  
That's really odd. Did you re-download the zip file from GitHub before running? I added a log line directly above the line that is causing this error. It should be there. 
Yes, I did. But I will try it again tomorrow.


RE: [Release] Backup (formerly XBMC Backup) - elhifinio - 2019-12-08

Hi robweber,

I re-installed 1.5.2-beta2 and still have the following error: https://paste.kodi.tv/ecoridojot.kodi


RE: [Release] Backup (formerly XBMC Backup) - robweber - 2019-12-13

(2019-12-08, 11:45)elhifinio Wrote: Hi robweber,

I re-installed 1.5.2-beta2 and still have the following error: https://paste.kodi.tv/ecoridojot.kodi

Do you have debug logging turned on? I'm at a loss as to why that additional log line isn't showing up. It's literally in the code directly above the line causing this error.


RE: [Release] Backup (formerly XBMC Backup) - elhifinio - 2019-12-14

That's the log with debug enabled https://paste.kodi.tv/awikodupig.kodi

Do I have to enable sth else to get a more detailed log?


RE: [Release] Backup (formerly XBMC Backup) - elhifinio - 2019-12-14

is this maybe the issue:

CGUIDialogDSManager::LoadDsXML Error loading special://masterprofile/dsplayer/filtersconfig.xml, Line 0 (Failed to open file)


RE: [Release] Backup (formerly XBMC Backup) - robweber - 2019-12-15

(2019-12-14, 19:39)elhifinio Wrote: is this maybe the issue:

CGUIDialogDSManager::LoadDsXML Error loading special://masterprofile/dsplayer/filtersconfig.xml, Line 0 (Failed to open file)

I think you might be on to something, although I'm not 100% sure what the content of that file should look like. I posted more in the GitHub issue, I see you're on there now.


RE: [Release] Backup (formerly XBMC Backup) - alphaomega16 - 2019-12-18

Will this addon not create nfo files for your library?

I am trying to find something that will create nfo files for a destination of my choosing.

I did try searching for NFO in this thread but its too short.


RE: [Release] Backup (formerly XBMC Backup) - Rainey222 - 2019-12-18

(2019-12-18, 02:09)alphaomega16 Wrote: Will this addon not create nfo files for your library?

I am trying to find something that will create nfo files for a destination of my choosing.

I did try searching for NFO in this thread but its too short.
This app is used to backup Kodi a full backup. If you want to backup just the nfos then you just export your library under the Kodi system menu library> export library that will export all the Nfo's and save them either in a remote location or in the location of where every movie file is.


RE: [Release] Backup (formerly XBMC Backup) - alphaomega16 - 2019-12-18

(2019-12-18, 02:24)Rainey222 Wrote:
(2019-12-18, 02:09)alphaomega16 Wrote: Will this addon not create nfo files for your library?

I am trying to find something that will create nfo files for a destination of my choosing.

I did try searching for NFO in this thread but its too short.
This app is used to backup Kodi a full backup. If you want to backup just the nfos then you just export your library under the Kodi system menu library> export library that will export all the Nfo's and save them either in a remote location or in the location of where every movie file is. 

I know but my understanding is it will put them in the folders where the movies are, trying to find an alternative way of creating the nfo's to a directory of my choosing.


RE: [Release] Backup (formerly XBMC Backup) - DarrenHill - 2019-12-18

You can't. It's either individual files (which as noted go directly beside the media that they correspond to) or a single file (whose location you can choose).


RE: [Release] Backup (formerly XBMC Backup) - robweber - 2019-12-18

(2019-12-18, 03:22)alphaomega16 Wrote:
(2019-12-18, 02:24)Rainey222 Wrote:
(2019-12-18, 02:09)alphaomega16 Wrote: Will this addon not create nfo files for your library?

I am trying to find something that will create nfo files for a destination of my choosing.

I did try searching for NFO in this thread but its too short.
This app is used to backup Kodi a full backup. If you want to backup just the nfos then you just export your library under the Kodi system menu library> export library that will export all the Nfo's and save them either in a remote location or in the location of where every movie file is.   

I know but my understanding is it will put them in the folders where the movies are, trying to find an alternative way of creating the nfo's to a directory of my choosing.  
If you're looking to automate it check out the JSON RPC server, it has a method to do the export. You could put this on some kind of a timer. There are also "builtin" functions for this you could use with an existing addon made to run things off a timer. 

https://kodi.wiki/view/JSON-RPC_API/v8#VideoLibrary.Export
https://kodi.wiki/view/List_of_built-in_functions#Library_built-in.27s
https://github.com/robweber/cronxbmc


RE: [Release] Backup (formerly XBMC Backup) - CiNcH - 2019-12-18

I just tried to install the Matrix brunch on a recent nightly but failed. Obviously dropbox-sdk-python wasn't new enough. So I downloaded 9.4.0 and tried to install from ZIP which also failed.

Code:
2019-12-18 19:16:24.780 T:6953   ERROR: CAddonInfoBuilder::Generate: Unable to load 'zip://smb%3a%2f%2f192.168.233.4%3a445%2fKodi%2fAddons%2fdropbox-sdk-python-9.4.0.zip/dropbox-sdk-python-9.4.0/addon.xml', Line 0
                                            Failed to open file

Am I installing the dependency the wrong way?


RE: [Release] Backup (formerly XBMC Backup) - robweber - 2019-12-20

(2019-12-18, 20:29)CiNcH Wrote: I just tried to install the Matrix brunch on a recent nightly but failed. Obviously dropbox-sdk-python wasn't new enough. So I downloaded 9.4.0 and tried to install from ZIP which also failed.
Code:
2019-12-18 19:16:24.780 T:6953   ERROR: CAddonInfoBuilder::Generate: Unable to load 'zip://smb%3a%2f%2f192.168.233.4%3a445%2fKodi%2fAddons%2fdropbox-sdk-python-9.4.0.zip/dropbox-sdk-python-9.4.0/addon.xml', Line 0
                                            Failed to open file

Am I installing the dependency the wrong way?  
Yes, you won't be able to just dump the existing Dropbox library code without some effort. Right now the Matrix branch in Github is prepared for eventually merge of an updated Dropbox library addon for Kodi that is currently in the review process

You can install version 1.6.0 from the releases page though. This contains the Dropbox code embedded with the addon code. In order to be accepted to the Kodi repo I had to strip this out into it's own addon so until the Dropbox lib is in the Matrix repo I can't push and updated version for general use. Hope this helps.


RE: [Release] Backup (formerly XBMC Backup) - pogar - 2019-12-21

(2019-12-20, 21:00)robweber Wrote:
(2019-12-18, 20:29)CiNcH Wrote: I just tried to install the Matrix brunch on a recent nightly but failed. Obviously dropbox-sdk-python wasn't new enough. So I downloaded 9.4.0 and tried to install from ZIP which also failed.
Code:
2019-12-18 19:16:24.780 T:6953   ERROR: CAddonInfoBuilder::Generate: Unable to load 'zip://smb%3a%2f%2f192.168.233.4%3a445%2fKodi%2fAddons%2fdropbox-sdk-python-9.4.0.zip/dropbox-sdk-python-9.4.0/addon.xml', Line 0
                                            Failed to open file

Am I installing the dependency the wrong way?   
Yes, you won't be able to just dump the existing Dropbox library code without some effort. Right now the Matrix branch in Github is prepared for eventually merge of an updated Dropbox library addon for Kodi that is currently in the review process

You can install version 1.6.0 from the releases page though. This contains the Dropbox code embedded with the addon code. In order to be accepted to the Kodi repo I had to strip this out into it's own addon so until the Dropbox lib is in the Matrix repo I can't push and updated version for general use. Hope this helps. 

can you make it available, somehow, by File Manager in Kodi ? I'm on Apple TV without a server in home :-( github.io for example could work :-) Thank you !