• 1
  • 9
  • 10
  • 11(current)
  • 12
  • 13
Release USTV VoD (Video-on-Demand)
I was able to get CBS shows to work by adding them to the Kodi Queue before playing them.
Reply
Update message

Code:
version 1.3.3

  * fix CC subtitles
  * fix PBS Kids
  * fix Spike TV
  * fix common issues
// GitHub // Repository

// USTV VoD (Video-on-Demand) / World News Live / MRT Play
Reply
(2015-08-22, 22:25)joendsu Wrote: I'm having issues with CBS shows. When I go to play them, it attempts, but fails. Sometimes is crashes Kodi. Other channels are working however.
Next time use the support thread,but selecting the quality from the context menu way help.
Reply
Update message

Code:
version 1.3.4

  * fix PBS
  * fix common issues
  * enable playback ABC content for none US-IP’s
  * fix AMC
  * fix A&E
// GitHub // Repository

// USTV VoD (Video-on-Demand) / World News Live / MRT Play
Reply
Can you please add CNN?
Is there any way to add cable subscription information to get all contents?
thanks
Reply
Update message

Code:
version 1.3.5

  * fix common issues
  * fix CC (loop playback)
  * fix FOX
  * add custom movie folder
// GitHub // Repository

// USTV VoD (Video-on-Demand) / World News Live / MRT Play
Reply
Update message

Code:
version 1.3.6

  * improve CC handling
  * added FOX subs
  * fix CBS Shows
  * improve SpikeTV
  * fix common issues
// GitHub // Repository

// USTV VoD (Video-on-Demand) / World News Live / MRT Play
Reply
Can you please add support for Discovery Networks Channels - especially discovery, animal planet and tlc.

It seems to be very straight forward. I wrote some quick code to test it out and it seems to be working nicely.
Instead of writing and maintaining a separate plugin, it would be nice to integrate into this.

Here is my code. Please feel free to use it the way you see fit. I would be more than happy to send you the entire code if you need it.

Works for the three channels mentioned above.

discovery_base_url = 'http://www.discovery.com/tv-shows/'
animalplanet_base_url = 'http://www.animalplanet.com/tv-shows/'
tlc_base_url = 'http://www.tlc.com/tv-shows/'

to get list of shows:

url = above base_url + '?limit=1000&flat=1'
shows_list = re.compile("\\\\\"image_src\\\\\":\\\\\"(.*?)\\\\\".*?\\\\\"url\\\\\":\\\\\"(.*?)\\\\\".*?\\\\\"title\\\\\":\\\\\"(.*?)\\\\\".*?\\\\\"description\\\\\":\\\\\"(.*?)\\\\\".*?").findall(html)
for show in shows_list:
image = show[0]
url = show[1]
name = show[2]
summary = show[3]


to get list of videos for show:

url = url from shows above + '/videos/?limit=1000&fusionAjaxAction=selection_grid_load'
videos_list = re.compile("data-background-image=\\\\\"(.*?)\\\\\".*?class=\\\\\"item-title\\\\\"\>(.*?)\<\\\\/.*?class=\\\\\"description\\\\\"\>(.*?)\<\\\\/.*?class=\\\\\"extra video\\\\\"\>(.*?)\<\\\\/.*?data-src=\\\\\"(.*?)\\\\\"").findall(html)
for video in videos_list:
image = video[0]
name = video[1]
summary = video[2]
duration = video[3]
url = video[4]


to play the video:

url = url from videos above + '/?flat=1'
video_list = re.compile("brightcove.*?\"src\":\"(.*?\.m3u8)\"").findall(html)
video = video_list[0]
then xbmcplugin.setResolvedUrl to this video url.
Reply
Best way of doing this is to setup a github account for the two then raise a pull request.
Reply
Update message

Code:
version 1.3.7

  * fix AMC
  * fix CBS
  * fix TNT
  * fix common issues
// GitHub // Repository

// USTV VoD (Video-on-Demand) / World News Live / MRT Play
Reply
Hi All,

I download the Repo from github but i could not find USTV VoD inside the video-addon folder. Inside is empty.
Maybe i have download wrongly. Could someone help me please?

Thanks
Reply
(2015-12-08, 10:21)nubbie Wrote: Hi All,

I download the Repo from github but i could not find USTV VoD inside the video-addon folder. Inside is empty.
Maybe i have download wrongly. Could someone help me please?

Thanks
Download Repo
// GitHub // Repository

// USTV VoD (Video-on-Demand) / World News Live / MRT Play
Reply
(2015-12-08, 18:07)moneymaker Wrote:
(2015-12-08, 10:21)nubbie Wrote: Hi All,

I download the Repo from github but i could not find USTV VoD inside the video-addon folder. Inside is empty.
Maybe i have download wrongly. Could someone help me please?

Thanks
Download Repo

Hi Moneymaker,

Thanks it work now.
Where can i find a list of the working channel?

Thanks
Reply
Anyone else having problems with TBS and TNT channels? The episode lists populate, but nothing is playable.
Reply
Update message

Code:
version 1.3.8

  * fix AdultSwim
  * fix MTV
  * fix for exporting to smb (and probably others) network share
  * add export/imports favorites
// GitHub // Repository

// USTV VoD (Video-on-Demand) / World News Live / MRT Play
Reply
  • 1
  • 9
  • 10
  • 11(current)
  • 12
  • 13

Logout Mark Read Team Forum Stats Members Help
USTV VoD (Video-on-Demand)3