Win Creating your first Youtube Add-on - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Tips, tricks, and step by step guides (https://forum.kodi.tv/forumdisplay.php?fid=110) +--- Thread: Win Creating your first Youtube Add-on (/showthread.php?tid=254207) |
RE: Creating your first Youtube Add-on - misty01 - 2016-11-29 The section of code you are concerned with: Code: def run(): We don't need that code at all. Use this instead: Code: def run(): Your youtube add-on will run fine. Hope that helps. As far as Addon.id, not sure as I didn't write the plugintools.py. I think with some code examination, what we want to use for creating simple youtube add-ons, the small portion of pertinent code from plugintools.py could probably be extracted and added directly into the main default.py. I haven't dug into the code to see what small portions are used, but it should not be too hard to figure out. RE: Creating your first Youtube Add-on - docwra - 2016-11-29 Thanks, works great! Agreed on minimizing it down, but one for the future I think. RE: Creating your first Youtube Add-on - Laser78 - 2017-04-04 Hi, I can not get the SEARCH option and PLAYLIST option working. Code: plugintools.add_item( Or Code: plugintools.add_item( It does not work for me, I have created multiple channels but when I add these I get error Any Ideas please ? RE: Creating your first Youtube Add-on - Laser78 - 2017-04-10 And Youtube live ? RE: Creating your first Youtube Add-on - johnboy1973 - 2017-06-26 hey folks im new at this and would like to learn how to do a multi ytoutube channel addon dont understsand this much is there a youtube vid ? RE: Creating your first Youtube Add-on - docwra - 2017-09-05 (2017-06-26, 02:09)johnboy1973 Wrote: hey folks im new at this and would like to learn how to do a multi ytoutube channel addon dont understsand this much is there a youtube vid ? My code for multiple Youtube channel Add-on: editing default.py Code: # -*- coding: utf-8 -*- RE: Creating your first Youtube Add-on - jackyle123 - 2017-10-16 Great and great this will bring the fun RE: Creating your first Youtube Add-on - acc. - 2017-10-18 cool thanks perfect RE: Creating your first Youtube Add-on - davedr - 2017-11-10 thanks so much guy RE: Creating your first Youtube Add-on - misc123 - 2018-01-21 When we are doing multiple channel Add-ons, can we make it more simple without assigning values to variables? e.g. Code: # -*- coding: utf-8 -*- RE: Creating your first Youtube Add-on - leopheard - 2019-07-12 Hi all, I have successfully forked this addon to run the Empire Files Youtube channel, but they have no live section in their channel. How do I remove this link in the addon? I've looked at the code but nothing suggests what this part is? RE: Creating your first Youtube Add-on - the_other_guy - 2019-07-13 just a tip this can be done with the youtube plugin an a node https://forum.kodi.tv/showthread.php?tid=344482 should work with any theme that links to Kodi\userdata\library RE: Creating your first Youtube Add-on - docwra - 2019-07-13 (2019-07-13, 02:21)the_other_guy Wrote: just a tip this can be done with the youtube plugin an a node NICE! RE: Creating your first Youtube Add-on - kido - 2019-09-09 can you make a addon that lets you add list of youtube channel subcriptions and it will make menus for it ? RE: Creating your first Youtube Add-on - docwra - 2019-09-09 (2019-09-09, 01:43)kido Wrote: can you make a addon that lets you add list of youtube channel subcriptions and it will make menus for it ? The YouTube Add-on in the official repository already does this. |