Your 2nd Add-On: Online Videos!
#80
(2020-06-05, 19:16)shooty Wrote:
(2020-06-01, 00:26)robertus Wrote: Hi,

you know an addon to create .strm files ?
here is py code for the function from my addon.

strmPath = ('special://profile/addon_data/plugin.video.addon-name/strm_dir/')
if not xbmcvfs.exists(strmPath):
    xbmcvfs.mkdir(strmPath)
strmPath = xbmc.translatePath(strmPath)
...
...
def makeStrm(name,movieurl):

    try:
        fileObj = open((strmPath + str(name).replace(':','-').replace('/','-').replace('?','').replace("'","").replace('\\','_').replace('#', ' ').replace('&','and') +'.strm'),'w')
        fileObj.write(movieurl)
        fileObj.close()
    except:
        pass

/Shooty
Thanks!
but how can i use it? Sorry but i'm a newbie
Reply


Messages In This Thread
Your 2nd Add-On: Online Videos! - by zag - 2015-11-20, 15:28
RE: Your 2nd Add-On: Online Videos! - by zag - 2015-11-20, 15:33
RE: Your 2nd Add-On: Online Videos! - by zag - 2015-11-30, 14:42
RE: Your 2nd Add-On: Online Videos! - by zag - 2015-12-01, 12:58
RE: Your 2nd Add-On: Online Videos! - by zag - 2016-01-18, 14:37
RE: Your 2nd Add-On: Online Videos! - by robertus - 2020-06-10, 00:12
RE: Your 2nd Add-On: Online Videos! - by pa79 - 2020-09-09, 19:59
Logout Mark Read Team Forum Stats Members Help
Your 2nd Add-On: Online Videos!2