XBMC Community Forum
[RELEASE] rtmpGUI plugin - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Help and Support (/forumdisplay.php?fid=33)
+--- Forum: Add-ons Help and Support (/forumdisplay.php?fid=27)
+---- Forum: Video Add-ons (/forumdisplay.php?fid=154)
+---- Thread: [RELEASE] rtmpGUI plugin (/showthread.php?tid=120045)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32


- PatrickBateman - 2012-02-02 15:08

BlueCop Wrote:macf1an and PatrickBateman

I think it is a clear violation. It isn't letting your add your own content. It gives you direct access to a list of many pirated video streams. It isn't like it is letting your add your own like LiveStreams. that is the difference.




that is my whole point. This violates the rules.

Live Streams does not because you add your own. I was offering to write a program to convert formats for people but none seem interested.

I wrote this to help someone out. I should have just wrote something to convert to livestreams format to begin with.

I see Smile Thanks for clearing that up.
Ps while your here, just wanted to say cheers for the plugins and I hope you continue your work both here and over at xbmchub (if need be) as your contributions are nothing short of outstanding! ... And releasing some code and detatching your self from it does sound better than the alternative Big Grin


- cooldfuzion - 2012-02-02 18:30

BlueCop Wrote:macf1an and PatrickBateman

I think it is a clear violation. It isn't letting your add your own content. It gives you direct access to a list of many pirated video streams. It isn't like it is letting your add your own like LiveStreams. that is the difference.




that is my whole point. This violates the rules.

Live Streams does not because you add your own. I was offering to write a program to convert formats for people but none seem interested.

I wrote this to help someone out. I should have just wrote something to convert to livestreams format to begin with.

That would be excelente mate Smile


- phish73 - 2012-02-17 10:24

can anyone explain to me how to add this add-on to xbmc on ipad2?
is it even possible?
thanks


- Mighty_Diamond - 2012-02-18 01:10

Not sure about ipad. But if you have XBMC installed, then you would install the add-on the same way as everything else. Settings>addon>install etc


- zakaria1984 - 2012-02-19 14:35

Hello ... BIG THANK for this a great application
BUT I GET THIS PROBLEM
--I edit the default.py of Rtmb
But I did not understand HOW AND WHERE I have to change the place of XML
Do any one could explain to me exactly how to do it??
thanxxxxxxxxxx


- zakaria1984 - 2012-02-19 20:42

pleeeeeeeeeeeeeeeeez
i get tired while i tryConfused
--I edit the default.py of Rtmb
But I did not understand HOW AND WHERE I have to change the place of XML
Do any one could explain to me exactly how to do it??
thanxxxxxxxxxx


- castalla - 2012-02-19 20:49

Just open the file = at the very top are the lines you need to edit:

Quote:#!/usr/bin/env python
# -*- coding: utf-8 -*-
import urllib, urllib2, cookielib
import string, os, re, time, datetime, sys

import xbmc, xbmcgui, xbmcplugin, xbmcaddon

from xml.etree import ElementTree

BASE = 'http://xbmc.jonakcomputers.com/list.xml'

#BASE = 'http://apps.ohlulz.com/rtmpgui/list.xml'

Just add the line BASE='YOUR xml address'

Comment out what is already there.

It only works for a web address (I think)


- zakaria1984 - 2012-02-19 21:29

Thak you my friend ...
I will try this


- zakaria1984 - 2012-02-19 21:57

castalla Wrote:Just open the file = at the very top are the lines you need to edit:



Just add the line BASE='YOUR xml address'

Comment out what is already there.

It only works for a web address (I think)

BROTHER ...
----I have to delete ALL the BASE lines and add
BASE = 'file:///D:/xml/list.xml' ((my xml addres ))
----or i have to delete BASE = 'http://apps.ohlulz.com/rtmpgui/list.xml'
and replace it with
BASE ='http://apps.ohlulz.com/rtmpgui/list.xml'
BASE = 'file:///D:/xml/list.xml'
----OR I have to add like this
BASE = 'http://xbmc.jonakcomputers.com/list.xml'

#BASE = 'http://apps.ohlulz.com/rtmpgui/list.xml'

BASE = 'file:///D:/xml/list.xml'
soooooooooooooory for bothering you ...i confusedConfused
thank you for allRolleyes


- castalla - 2012-02-19 22:11

You can simply comment out using # in front of any line with BASE=

eg. CHANGE ...

BASE = 'http://apps.ohlulz.com/rtmpgui/list.xml'

TO ....

#BASE = 'http://apps.ohlulz.com/rtmpgui/list.xml'

Then simply add your line

BASE = 'file:///D:/xml/list.xml'

I don't know what you already have in the file! You can get back to the original by re-editing out the hash sign, if it doesn't work/

As I said, I don't know if it works for non hhtp:// links.

Don't forget to save the file!