![]() |
|
[RELEASE] Pneumatic - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Help and Support (/forumdisplay.php?fid=33) +--- Forum: Add-ons Help and Support (/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (/forumdisplay.php?fid=151) +---- Thread: [RELEASE] Pneumatic (/showthread.php?tid=97657) Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
- ckergald - 2011-09-01 23:12 I'm using a smb share for my incompelte folder. not really certain why it works for me given what fpoil said but it does. sab is running on ubunutu 11.04 server, samba share with security=user xbmc running on windows 7, mounting the smb share as the same user account that sab is running under. definatly not error free, I still have a few files fail to stream, but most work. - timgt - 2011-09-02 00:09 Does any of this make sense? Its saying no such file or directory but I can browse it fine on XBMC under files. Code: 18:03:27 T:110235648 DEBUG: Process - Entering source directory /var/mobile/Library/Preferences/XBMC/addons/plugin.video.nzbs- j1nx - 2011-09-02 09:48 timgt Wrote:Hmmm, I tried creating my incomplete folder as an NFS share instead of SMB on my server and on the apple tv 2 I set it as NFS as the client. I can browse that folder just fine under XBMC but the same thing happens under the plugin, i cannot browse the incomplete folder. It gives me a plugin error just like the SMB mount did. With NFS, it looks like a mapped network folder is axectly like any normal local folder and for that reason it also uses the same file security options. If SABnzbD on the server runs as user="sab" within group="sab" it created any folder within the incomplete using these credentials and a strict 0500 persion set. So you either have to make sure that xbmc on the client runs as the exact same user as sabnzbd or you have to map them a bit. Keep in mind that the usernames and groepnames are just for the admnistrators ease. It is the relative userID and groupID (the numbers not the name) that telle linux who you are. Easiest thing to do is to change the way the incomplete folder is mounted by the NFS server/client. Find out the UserID and GroupID of the sabnzbd user and then use the following (extra) mounting options for the incomplete folder. Code: all_squash,anonuid=UID,anongid=GIDall_squash Map all uids and gids to the anonymous user. anonuid and anongid These options explicitly set the uid and gid of the anonymous account. This option is primarily useful for PC/NFS clients, where you might want all requests appear to be from one user. You got the picture? - timgt - 2011-09-02 20:03 Those mounting options don't look available when running the mount command under windows 7. I can mount an NFS drive but have very few options. Maybe those commands are for linux only. Besides I have no idea how to find my userid and groupid anyway. Thanks for trying to help but I'm a lost cause. Everything works fine on my PC but the ATV2 is worthless. - j1nx - 2011-09-02 21:47 timgt Wrote:Those mounting options don't look available when running the mount command under windows 7. I can mount an NFS drive but have very few options. Maybe those commands are for linux only. Oh crap, you are on windows. Sorry I give up. - timgt - 2011-09-18 04:13 Time to bring this plugin back to the top of the results where it belongs. It has been working great on my windows machine but every now and then a file will fail to play and I usually get something in my log that looks like the below code I posted. Any ideas what is causing this sometimes and other times the files play fine? Code: 22:05:59 T:1168 M:4091138048 NOTICE: -->Python Interpreter Initialized<--- Popeye - 2011-09-18 13:01 Thanks timgt. From you logs it looks like a read error or something. What could be happening is that xbmc is a bit slow starting to play the movie and my script tries to remove the files since the timer has timed out... default.py line 504 Code: while (wait <= 10):I have had some issues also and have begun to suspect this. Could you try changing it to 20-30ish and see if it helps? - speed32219 - 2011-09-19 02:28 git error on downloading the latest. download error - The requested URL returned error: 403 - timgt - 2011-09-19 04:42 Popeye, I tried your suggestion by changing the 10 to a 30 but still get the same error. Whats wierd is that the video doesn't start playing, so I try to go back to the main screen on your plugin where i can pick my incomplete folder and try to play it directly from within that folder and it still doesnt play. After the download is finished it then DOES play if I click it from within your plugin in the incomplete directory. Wierd huh? - Popeye - 2011-09-19 15:10 timgt Wrote:Popeye, I tried your suggestion by changing the 10 to a 30 but still get the same error. If that is the case there must be something with how the movie is stored in the rar set. Since you had read errors in the log it cold be the case that xbmc tried to read data further into the movie (or even the end that we don't have). If you have the time you could help out with a test. 1, With the movie in the incomplete folder try moving some of the last rar packages and try to play the movie. 2, try moving some of the rars in the middle and leave at least the first and the last If 1 fails and 2 succeeds, then we might have a solution, else I'm just confused
|