VidScraper Content Update
Add DefCon Channel and Documentary Playlists
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
For this to import the necessary modules you must make sure you have the
|
||||
modules4all repo source added into your very own repo. If you've already used
|
||||
the repository creator at http://totalrevolution.tv/create_repo.php then it will already be setup, if not
|
||||
then use it to create a repo and copy the modules4all section into your own repo addon.xml.
|
||||
|
||||
<h3>ONCE ADD-ON IS INSTALLED:</h3>
|
||||
Go through the default.py and read the comments for each section.
|
||||
Enable each section in the Main_Menu() function one by one and start to see your add-on come to life!
|
||||
|
||||
<h3>ONCE ADD-ON IS INSTALLED:</h3>
|
||||
Go through the default.py and read the comments for each section.
|
||||
This is a very simple template to follow, all you need to do is add/edit the
|
||||
YouTube ID's (lines 62-66) - these can be either playlist or channel ID's.
|
||||
|
||||
In the Main_Menu() function all you need to edit is the relevant Add_Dir command,
|
||||
if using a playlist then the url must start with BASE and if it's a channel you need
|
||||
to use BASE2. In these Add_Dir commands you can edit the title which shows as well as
|
||||
the artwork.
|
||||
|
||||
Have a little play around, it's very fun and easy to do and you'll have
|
||||
your very own YouTube based add-on up in no time and every time you update your YT
|
||||
channel/playlist the changes will automatically show in your add-on!!!
|
||||
|
||||
|
||||
<h3>Frequently Asked Questions:</h3>
|
||||
Can I use this code commercially?
|
||||
-- Please look at our TRMC system for commercial options: http://totalrevolution.tv
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<addon id="plugin.video.blogscraper" name="VidGrab" version="0.0.2" provider-name="Oli Passey">
|
||||
<addon id="plugin.video.blogscraper" name="VidGrab" version="0.0.3" provider-name="Oli Passey">
|
||||
<requires>
|
||||
<import addon="xbmc.python" version="2.19.0" />
|
||||
<import addon="script.module.python.koding.aio" version="0.0.1"/>
|
||||
|
||||
@@ -67,8 +67,8 @@ BASE2 = "plugin://plugin.video.youtube/channel/"
|
||||
YOUTUBE_CHANNEL_ID_1 = "PL9fPq3eQfaaDOo8mTBHhEHMfuG2LNUSTC"
|
||||
YOUTUBE_CHANNEL_ID_2 = "PLTibR1K5pEHgBoz2y8Guytjry8m-4nwcd"
|
||||
YOUTUBE_CHANNEL_ID_3 = "PLC474234E124B5213"
|
||||
YOUTUBE_CHANNEL_ID_4 = "PLlJDPmb6OexrDnAFNBNJez8zRe4EECDZY"
|
||||
YOUTUBE_CHANNEL_ID_5 = "UCBDT-Kl4nHgEvpwYfLb315w"
|
||||
YOUTUBE_CHANNEL_ID_4 = "PLR3SowCQah02FYPAFXOFH2Vy1qcAmIJ_A"
|
||||
YOUTUBE_CHANNEL_ID_5 = "UCur4HQg-2EQltweoKQfwOfg"
|
||||
|
||||
#----------------------------------------------------------------
|
||||
|
||||
@@ -121,12 +121,12 @@ def Main_Menu():
|
||||
icon="https://yt3.ggpht.com/-HB9PwSeNSE8/AAAAAAAAAAI/AAAAAAAAAAA/LmADXY0mgbA/s100-c-k-no-mo-rj-c0xffffff/photo.jpg")
|
||||
|
||||
Add_Dir(
|
||||
name="Sea Fishing videos from TAFishing", url=BASE+YOUTUBE_CHANNEL_ID_4+"/", folder=True,
|
||||
name="Documentary Playlist", url=BASE+YOUTUBE_CHANNEL_ID_4+"/", folder=True,
|
||||
icon="https://yt3.ggpht.com/-P2USlMtGNXo/AAAAAAAAAAI/AAAAAAAAAAA/sDV3FPYrotM/s100-c-k-no-mo-rj-c0xffffff/photo.jpg")
|
||||
|
||||
# Add some YT channels (see we're using BASE2 as the url for this one)
|
||||
Add_Dir(
|
||||
name="Uncut Angling Channel", url=BASE2+YOUTUBE_CHANNEL_ID_5+"/", folder=True,
|
||||
name="DEF CON Channel", url=BASE2+YOUTUBE_CHANNEL_ID_5+"/", folder=True,
|
||||
icon="https://yt3.ggpht.com/-8Rt7LjDZrtU/AAAAAAAAAAI/AAAAAAAAAAA/-0-9PLOJWXM/s100-c-k-no-mo-rj-c0xffffff/photo.jpg")
|
||||
#----------------------------------------------------------------
|
||||
# A basic OK Dialog
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
Simply download the git, zip it as plugin.liveleak.zip and install like a normal zip.
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
</extension>
|
||||
</addon>
|
||||
|
||||
<addon id="plugin.video.blogscraper" name="VidGrab" version="0.0.2" provider-name="Oli Passey">
|
||||
<addon id="plugin.video.blogscraper" name="VidGrab" version="0.0.3" provider-name="Oli Passey">
|
||||
<requires>
|
||||
<import addon="xbmc.python" version="2.19.0" />
|
||||
<import addon="script.module.python.koding.aio" version="0.0.1"/>
|
||||
|
||||
@@ -1 +1 @@
|
||||
7514043744d16e310c3883ae5f5829e7
|
||||
36f202d0c382528b0344a58c064b8736
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<addon id="plugin.video.blogscraper" name="VidGrab" version="0.0.2" provider-name="Oli Passey">
|
||||
<addon id="plugin.video.blogscraper" name="VidGrab" version="0.0.3" provider-name="Oli Passey">
|
||||
<requires>
|
||||
<import addon="xbmc.python" version="2.19.0" />
|
||||
<import addon="script.module.python.koding.aio" version="0.0.1"/>
|
||||
|
||||
BIN
zips/plugin.video.blogscraper/plugin.video.blogscraper-0.0.3.zip
Normal file
BIN
zips/plugin.video.blogscraper/plugin.video.blogscraper-0.0.3.zip
Normal file
Binary file not shown.
Reference in New Issue
Block a user