[REQUEST] RSS Reader Script Addon for Dharma? - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151) +---- Thread: [REQUEST] RSS Reader Script Addon for Dharma? (/showthread.php?tid=81720) |
- pieh - 2010-11-19 bolish Wrote:Thanks, what a dummy questions....it is the basis of XBMC and I didn't see this setting....Is this script still running? Or it's outdated? Last post was 1.5 year ago. bolish Wrote:I don't know if your script is able to vizualize the pictures and / or videos that are in the rss feeds?Pictures supplied to feeds are displayed. Send me example rss that contain videos so I could implement it. Not working - FroZebra - 2010-11-25 I followed your steps, and when I opened XBMC, it showed me a black screen. I think it might be a problem with the Home.xml you provided, because when I replaced it with the original Home.xml, it worked fine. Please fix this because I am really looking forward to using this. Oh and great job so far! - pieh - 2010-11-25 Could You paste content of xbmc.log on pastebin.com ? - pieh - 2010-11-26 Another suggestion - try download and install modded skin http://wojtek.piechowiak.eu/mich/rss/skin.confluence.rssmod.zip and let me know if it works - bolish - 2010-11-26 grajen3 Wrote:Is this script still running? Or it's outdated? Last post was 1.5 year ago. Hi!! Grajen3, concerning the googlereader plug-in it's still not working for me.. Concerning rss with pictures, I didn't manage to do it works.... For example, the following rss : http://belgium-iphone.lesoir.be/2010/11/26/des-captures-decran-de-la-prochaine-version-dibooks/ http://belgium-iphone.lesoir.be/feed/ For the videos, hereunder an example : http://belgium-iphone.lesoir.be/2010/11/25/guignols-de-l%E2%80%99info-steve-jobs-presente-l%E2%80%99ipad-shower/ http://belgium-iphone.lesoir.be/feed/ If it could help you!! Thanks - blacklist - 2010-11-27 Grajen - I am trying to implement something like this in my skin: Basically the bottom left is an rss feed with scrollable headlines. Apon clicking on the headline, I'd like to display a window with the full article. Is this something your addon can accomplish? I'm super excited about the concept! - pieh - 2010-11-27 bolish Wrote:Grajen3, concerning the googlereader plug-in it's still not working for me..It will take some time to implement sync with googlereader that currently i don't have so much to spare so it will land on my "to-do list", but don't except it to be soon bolish Wrote:Concerning rss with pictures, I didn't manage to do it works....Thanks for the links - I will add support for it. The problem is that some RSS sources use format that aren't really described in RSS specification and therefore I couldn't know that images are there. blacklist Wrote:I am trying to implement something like this in my skin:Well, I suppose it's possible. I'll do some quick test today and if it's currently impossible I'll try to provide some way to make it possible --edit: Ok, It's definitely doable - after I go back from shopping I will upload updated script (need to clean it up) and simple window .xml sample, that You will adjust for Your skin. Cheers! Works great - bridgman - 2010-11-28 This is a great script. Incorporated it into a skin I am working on. Kept to your main design for the most part. Only thing I changed that wasn't a graphic, is I switched control type label to textbox and added autoscroll to the Property(desc) labels - pieh - 2010-11-28 bridgman Wrote:This is a great script. Incorporated it into a skin I am working on. Kept to your main design for the most part.Nice look. Feel free to design nonstandard views. I also decided to switch to textbox (autoscroll stuff) and provide support for both labels and textboxes. Just didn't upload it yet. I'm always open for suggestions, so don't hesitate to point bugs and errors in my script. Thanks for Your feedback! - pieh - 2010-11-29 http://github.com/pieh/script.rssclient there is sample for blacklist + fixed images from that belgium RSS about iphone, also I can grab urls for youtube videos but don't know how to play them yet - NordishByNature - 2010-11-29 Hello, i had the idea to code a working RSS Client on XBMC two weeks ago. Now just saw your post. I'll test out your code tonight. Youtube integration could be easily done with installed youtube plugin. So you don't have to code things twice. Just parse the url to plugin. I don't know how exactly, but it's possible! cu Nordish - pieh - 2010-11-30 NordishByNature Wrote:Youtube integration could be easily done with installed youtube plugin. So you don't have to code things twice.Yeah, i did some trials on that but I had limited time to test so didn't make it work yet. If anyone already know how to play_by_id youtube video, I would appreciate his help. - NordishByNature - 2010-11-30 Yeah, got it... Code: xbmc.executebuiltin('RunPlugin(plugin://plugin.video.youtube?action=play_video&videoid=gTESuw58w3Q)') Does the trick.... But the Youtube Plugin has to be changed in 3 lines of code. I'll write to the Youtube Plugin Maintainers if its possible. There was also an other thread, trying to use the youtube plugin via HTTP call... Here is the patch needed for youtube plugin (this one: http://code.google.com/p/youtubexbmc), else you would get the wrong handle in SetResolvedUrl() Code: Index: YouTubeNavigation.py - pieh - 2010-11-30 grajen3 Wrote:Yeah, i did some trials on that but I had limited time to test so didn't make it work yet. If anyone already know how to play_by_id youtube video, I would appreciate his help.ok, https://github.com/pieh/script.rssclient You can now watch videos (only youtube links for now) supplied to topics ("Press 'P' to play the video" will show up when there is video to play) ---edit it's done without modification in YouTube plugin Code: xbmc.executebuiltin("XBMC.PlayMedia(plugin://plugin.video.youtube/?action=play_video&videoid=%s)" % ( id) ) - smuto - 2010-11-30 can u take a look for yahoo pipes support this is oryginal rss http://serwisy.gazeta.pl/pub/rss/zczubatv.xml & this is this same rss, but aggregate by Yahoo Pipes http://pipes.yahoo.com/pipes/pipe.run?_id=9c377c68a206d6ae8f2889db97f10084&_render=rss smuto |