[RELEASE] Pneumatic - 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] 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
|
- timgt - 2011-08-31 Popeye Wrote:It all depends on you connection and the size of the first rar. I honestly don't see a difference from the new version and the last version. It works the same, every now and then I get a plugin script error when trying to stream something but most shows and movies work. - timgt - 2011-09-01 Is there any way to have the NZB plugin work with smb shares as the incomplete folder? That is the only thing preventing this from working on an apple TV 2. My SABnzbd incomplete folder is set to: smb://MYPCNAME/incomplete/ that is the correct place but when I try to open that location in the plugin it gives me a script error. Any ideas? - Popeye - 2011-09-01 timgt Wrote:I honestly don't see a difference from the new version and the last version. It works the same, every now and then I get a plugin script error when trying to stream something but most shows and movies work. And these errors are due to? Without some brain work ;D , logs and system information I cannot help you. Personally I don't see any errors on two different platforms. timgt Wrote:Is there any way to have the NZB plugin work with smb shares as the incomplete folder? That is the only thing preventing this from working on an apple TV 2. Sorry, this is a python limitation AFAIK. Try mount the share by changing fstab on your atv2. Think someone used NFS further back in this thread.. - fpoil - 2011-09-01 The way Sabnzbd gives folders permissions on smb share is why you can use this plugin on smb share. I also tried and impossible to play any movie. Each movie folder created by Sabnzbd in incomplete folder during download receives an 500 permission. http://forum.xbmc.org/showpost.php?p=864212&postcount=185 - timgt - 2011-09-01 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 XMBC 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. I wish I knew how to give you the log to see if you could figure out why. I'm not sure how j1nx got NFS shares to work with this plugin, I sure can't - ckergald - 2011-09-01 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 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 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=GID all_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 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 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 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 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 git error on downloading the latest. download error - The requested URL returned error: 403 - timgt - 2011-09-19 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 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 |