• 1
  • 2
  • 3(current)
  • 4
  • 5
  • 9
[REQUEST] RSS Reader Script Addon for Dharma?
#31
bolish Wrote:Thanks, what a dummy questions....it is the basis of XBMC and I didn't see this setting....
Thanks, I will try this evening.

Concerning googlereader account syncing, maybe could you have help here :

http://forum.xbmc.org/showthread.php?tid=47507

I don't know if it is autorized to take ideas from others plugins..Maybe we should ask the autor. Don't know..
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?
If not, do you think it will be hard to implement?
Pictures supplied to feeds are displayed. Send me example rss that contain videos so I could implement it.
Reply
#32
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!
Reply
#33
Could You paste content of xbmc.log on pastebin.com ?
Reply
#34
Another suggestion - try download and install modded skin http://wojtek.piechowiak.eu/mich/rss/ski...rssmod.zip and let me know if it works
Reply
#35
grajen3 Wrote:Is this script still running? Or it's outdated? Last post was 1.5 year ago.

Pictures supplied to feeds are displayed. Send me example rss that contain videos so I could implement it.

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/...n-dibooks/

http://belgium-iphone.lesoir.be/feed/

For the videos, hereunder an example :

http://belgium-iphone.lesoir.be/2010/11/...ad-shower/

http://belgium-iphone.lesoir.be/feed/

If it could help you!!

Thanks
Reply
#36
Grajen -

I am trying to implement something like this in my skin:

Image

Image

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!
Reply
#37
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 Sad

bolish Wrote:Concerning rss with pictures, I didn't manage to do it works....
For example, the following rss :

http://belgium-iphone.lesoir.be/2010/11/...n-dibooks/

http://belgium-iphone.lesoir.be/feed/

For the videos, hereunder an example :

http://belgium-iphone.lesoir.be/2010/11/...ad-shower/

http://belgium-iphone.lesoir.be/feed/

If it could help you!!

Thanks
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:

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!
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!
Reply
#38
This is a great script. Incorporated it into a skin I am working on. Kept to your main design for the most part.

Image

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
Image
Reply
#39
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.

Image

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
Image
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!
Reply
#40
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
Reply
#41
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
Reply
#42
NordishByNature Wrote: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
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.
Reply
#43
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
===================================================================
--- YouTubeNavigation.py    (Revision 355)
+++ YouTubeNavigation.py    (Arbeitskopie)
@@ -411,7 +411,11 @@
        if self.__dbg__:
            print self.__plugin__ + " - Playing video: " + video['Title'] + " - " + get('videoid') + " - " + video['video_url']

-        xbmcplugin.setResolvedUrl(handle=int(sys.argv[1]), succeeded=True, listitem=listitem)
+        if int(sys.argv[1])>-1:
+            xbmcplugin.setResolvedUrl(handle=int(sys.argv[1]), succeeded=True, listitem=listitem)
+            self.__settings__.setSetting( "vidstatus-" + video['videoid'], "7" )
+        else:
+            xbmc.Player(xbmc.PLAYER_CORE_DVDPLAYER).play(video['video_url'], listitem)
        
        self.__settings__.setSetting( "vidstatus-" + video['videoid'], "7" )
Reply
#44
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) )
Reply
#45
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?_i...render=rss

smuto
Reply
  • 1
  • 2
  • 3(current)
  • 4
  • 5
  • 9

Logout Mark Read Team Forum Stats Members Help
[REQUEST] RSS Reader Script Addon for Dharma?1