Your 2nd Add-On: Online Videos!
#31
Hi, Im really new at this, and I would appreciate if anybody could help me a bit.... I imagine Im doing several horrible errors Sad

I tried editing the example plugin, because I wanted to achieve the following:

1) The plugin asks the user for 3 different variables, channel, date and show start time
2) Then, the plugin concatenates (joins) those variables with some other text to form an url
3) Finally, Kodi opens the resulting url.

This is the code I use, but KODI is unable to run the plugin.... any help? Thanks in advance!

import sys
import xbmc
import xbmcaddon
import xbmcgui
import xbmcplugin

addon = xbmcaddon.Addon()
addonname = addon.getAddonInfo('name')

keyboard = xbmc.Keyboard("", "Type your channel: 01 for Channel1, 02 for Channel2, 03 for etc", False)
keyboard.doModal()
if keyboard.isConfirmed() and keyboard.getText() != "":
channel = "chanchan"&(keyboard.getText()
line1 = "You have selected channel %s" %(keyboard.getText())
xbmcgui.Dialog().ok(addonname, line1)

keyboard = xbmc.Keyboard("", "Type your show date using format yyyymmdd", False)
keyboard.doModal()
if keyboard.isConfirmed() and keyboard.getText() != "":
showdate = (keyboard.getText()
line2 = "You have input date %s" %(keyboard.getText())
xbmcgui.Dialog().ok(addonname, line2)

keyboard = xbmc.Keyboard("", "Type your show start time using format hhmm", False)
keyboard.doModal()
if keyboard.isConfirmed() and keyboard.getText() != "":
showtime = (keyboard.getText()
line3 = "You have input start time at %s" %(keyboard.getText())
xbmcgui.Dialog().ok(addonname, line3)

xbmc.executebuiltin("PlayMedia(http://201.42.15.192/ %(showdate) %(showtime) %(channel).mp4)")
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 fischer22 - 2016-03-24, 17:31
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