XBMC Community Forum
[LINUX] xbmc server: possible quick implementation? - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Development (/forumdisplay.php?fid=32)
+--- Forum: Development (/forumdisplay.php?fid=93)
+--- Thread: [LINUX] xbmc server: possible quick implementation? (/showthread.php?tid=114612)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13


RE: [LINUX] xbmc server: possible quick implementation? - vajonam - 2012-04-20 19:37

it allows a light weight xbmc to be always running on the network allowing internet pvrs like sickbeard to keep the db upto date without require an update to xbmc everytime.


RE: [LINUX] xbmc server: possible quick implementation? - fade23 - 2012-04-21 03:22

Is there any easy way to disable the playback functions over JSON-RPC while still allowing it to serve up library info and other non-playback functions (like library updates)? I'm using this as the primary backend for Maraschino so I can browse my library and if I accidentally start a video from there it will crash the server instance.


RE: [LINUX] xbmc server: possible quick implementation? - Basje - 2012-04-22 20:55

I just created an Add-on that automatically does a backup of your video and/or music database on specific times. Anyone interested?


RE: [LINUX] xbmc server: possible quick implementation? - gorttman - 2012-04-25 04:33

Hi All.

As a long time lurker, I've followed this thread with interest as this is a function I've been waiting for.Tried to compile from git://github.com/vajonam/xbmc.git. Compile goes ok with no errors, however when I try and run the xbmc app with --server --no-test Im still getting a failure to start as it is still looking for x display

Am I missing something?

any help greatly appreciated.
output: http://pastebin.com/embed_js.php?i=r1KwZAeH


RE: [LINUX] xbmc server: possible quick implementation? - Claire193 - 2012-04-25 05:01

i can't really tell without the code being in context. but to me it looks like a poor man's solution.

i assume you cloned the code using git. to obtain the patch, all you have to do then is 'git diff > patchfile' [Image: meimiao1.jpg][Image: jh88.jpg][Image: test.jpg][Image: dh.jpg][Image: pad.jpg]


RE: [LINUX] xbmc server: possible quick implementation? - Basje - 2012-04-25 09:02

(2012-04-25 04:33)gorttman Wrote:  Hi All.

As a long time lurker, I've followed this thread with interest as this is a function I've been waiting for.Tried to compile from git://github.com/vajonam/xbmc.git. Compile goes ok with no errors, however when I try and run the xbmc app with --server --no-test Im still getting a failure to start as it is still looking for x display

Am I missing something?

any help greatly appreciated.
output: http://pastebin.com/embed_js.php?i=r1KwZAeH

You have to checkout the server branche of his GIT repo.


RE: [LINUX] xbmc server: possible quick implementation? - bladesuk1 - 2012-04-25 10:50

well, i've got some good news, and some bad news:

https://github.com/xbmc/xbmc/pull/890

in essence, it's looking like this code of ours won't be merged into mainline. however, the reason for that appears to be that they're breaking out functionality into a library and creating a headless xbmc version instead, which is (ultimately) the long-term goal, and the way that i wanted it to happen in the first place, but didn't have the skills to do myself. it's available here, apparently:

https://github.com/theuni/xbmc/tree/shared-lib

i've not pulled it down to try it out myself as of yet to see if it's fully functional, but i plan to do so as soon as i get the opportunity and see if it does what it says on the tin. if this is the case, then i'd suggest all start using the hell out of it as it's the holy grail we were all looking for Smile

b


RE: [LINUX] xbmc server: possible quick implementation? - gorttman - 2012-04-25 10:50

(2012-04-25 09:02)Basje Wrote:  
(2012-04-25 04:33)gorttman Wrote:  Hi All.

As a long time lurker, I've followed this thread with interest as this is a function I've been waiting for.Tried to compile from git://github.com/vajonam/xbmc.git. Compile goes ok with no errors, however when I try and run the xbmc app with --server --no-test Im still getting a failure to start as it is still looking for x display

Am I missing something?

any help greatly appreciated.
output: http://pastebin.com/embed_js.php?i=r1KwZAeH

You have to checkout the server branche of his GIT repo.

Thanks for the quick reply

Hmmmm not sure, I'm fairly new to git I used git clone git://github.com/vajonam/xbmc.git

Guessing that's wrong?

Thanks


RE: [LINUX] xbmc server: possible quick implementation? - bladesuk1 - 2012-04-25 11:16

(2012-04-25 10:50)gorttman Wrote:  Hmmmm not sure, I'm fairly new to git I used git clone git://github.com/vajonam/xbmc.git
Guessing that's wrong?

once you've got the master, you'll need to 'git branch -a' to list the branches, and then 'git checkout -t <branch>' to get the branch, iirc. if that's not quite right, the google the syntax to retrieve the branch.

b


RE: [LINUX] xbmc server: possible quick implementation? - gorttman - 2012-04-25 13:58

Thanks Blade

The git 101 did the trick all working fine now

Again, thanks for the help