• 1
  • 84
  • 85
  • 86(current)
  • 87
  • 88
  • 100
XBMC.MyLibrary - Scan any source to the library (Hulu/Netflix/Plugins)
Without anything between the SMB path tags? I have, both with the server name and the server IP.

One note: the server is a Synology NAS, which I believe is Linux-based, but I'm not sure. I have it set as sharing both via NFS and SMB, though I've had better luck mounting network shares through SMB.
Reply
is the linux CLIENT mounting the DROPBOX_SERVER share?
Reply
hey ratzofftoya, try this (i was reviewing this thread and seemed to remember someone doing something very similar):

Code:
        <streaming>/PATH/TO/SHARE</streaming>        
        <LinuxSambaPrefix>smb://DROPBOX_SERVER</LinuxSambaPrefix>

yes, you read that right. do NOT mention the server name in the first line. add the server name (or ip) to the SMB portion. also, if you are using a username/password to the share it would look like this instead:

Code:
        <streaming>/PATH/TO/SHARE</streaming>        
        <LinuxSambaPrefix>smb://user:password@DROPBOX_SERVER</LinuxSambaPrefix>

hope this helps
Reply
I am admittedly not a coder at all. I have read through each file included in this plugin and love the functionality! I am running the cmd script and have it set to shutdown xbmc and then reopen. When I run the cmd file, xbmc always shutsdown. The issue I am running in to is that it only reopens correctly if XBCM was minimized when I ran the cmd script.

I have set the cmd file to run inside of xbmc from advanced launcher. The cmd script opens correctly and shutsdown xbmc, but when I run it this way, XBMC never reopens and the cmd script stops after the third attempt to connect to JSON.

Have any of you experienced a similar situation?
Reply
(2014-05-20, 16:52)keeganl Wrote: I am admittedly not a coder at all. I have read through each file included in this plugin and love the functionality! I am running the cmd script and have it set to shutdown xbmc and then reopen. When I run the cmd file, xbmc always shutsdown. The issue I am running in to is that it only reopens correctly if XBCM was minimized when I ran the cmd script.

I have set the cmd file to run inside of xbmc from advanced launcher. The cmd script opens correctly and shutsdown xbmc, but when I run it this way, XBMC never reopens and the cmd script stops after the third attempt to connect to JSON.

Have any of you experienced a similar situation?

I figured out a sloppy workaround. I added another command in the resume file to launch xbmc a second time. For some reason this has fixed all my launching issues!

my res/RestartXBMC.cmd file now reads
Code:
taskkill /F /IM XBMC.exe
"C:\Program Files (x86)\XBMC\XBMC.exe"
"C:\Program Files (x86)\XBMC\XBMC.exe"
Reply
Keeganl the problem usually is XBMC doesn't always shutdown right away. For me I've put in a delay in the restart script via ping 127.0.0.1 -n 10 which gives about a 10 second delay.

so for your script, it might look like this:

Code:
taskkill /F /IM XBMC.exe
ping 127.0.0.1 -n 10
"C:\Program Files (x86)\XBMC\XBMC.exe"
Reply
Is USTV-VOD down? because everytime i get script failed in xbmc.
Reply
@ratzofftoya - any luck?
Reply
Is there anything we can write to put the .nfo to any other folder because it follows after the strm files? after awhile it gets annoying to see that file with the strm files.
Reply
(2014-05-23, 12:30)steve55792 Wrote: Is there anything we can write to put the .nfo to any other folder because it follows after the strm files? after awhile it gets annoying to see that file with the strm files.

it's kinda import to keep them together... But if you don't use them select not to generate them. You're referring to music videos correct? Otherwise it's another program generating those nfos...
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
Reply
no my tv and movie videos
Reply
(2014-05-23, 16:58)steve55792 Wrote: no my tv and movie videos

I don't remember this app generating nfo's for anything but music videos... am I wrong?

R u using ember?
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
Reply
playon and xbmc frodo. what program is ember?
Reply
(2014-05-23, 18:03)steve55792 Wrote: playon and xbmc frodo. what program is ember?

Ember is a media manager that can create nfos.
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
Reply
No I don't use embers
Reply
  • 1
  • 84
  • 85
  • 86(current)
  • 87
  • 88
  • 100

Logout Mark Read Team Forum Stats Members Help
XBMC.MyLibrary - Scan any source to the library (Hulu/Netflix/Plugins)10