[RELEASE] PowerFLV.com (Video) Plugin

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
spiff Online
Grumpy Bastard Developer
Posts: 12,179
Joined: Nov 2003
Reputation: 82
Post: #71
hehe, mine as well.

just the nasty html tags in labels and no-workie in library mode are both showstoppers to me

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find quote
Geeba Offline
Posting Freak
Posts: 1,805
Joined: Sep 2006
Reputation: 0
Location: UK
Post: #72
Nickspoon... does your updated version suffer from the "To many Consecutive Failed Items" ? when I try to use PowerFLV or many other plugins I get this error when trying to play anything...
find quote
spiff Online
Grumpy Bastard Developer
Posts: 12,179
Joined: Nov 2003
Reputation: 82
Post: #73
log, that just says it failed to open the items, not why

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find quote
Geeba Offline
Posting Freak
Posts: 1,805
Joined: Sep 2006
Reputation: 0
Location: UK
Post: #74
Thanks Spiff.. I'll get one sorted and up in pastebin.
find quote
DigitalG Offline
Junior Member
Posts: 18
Joined: Mar 2007
Reputation: 0
Post: #75
nickspoon Wrote:PowerFLV script update, 23/03/2008:

The script now lists and plays veoh.com embedded videos (previously it just did ones in iframes). For the videos I've tried, it seems to stream the full-length video. It also does videos on SpikedHumor.com.

http://fools.bigbudden.com/nickspoon/PowerFLV.zip

thanks for the updated plugin, hope it works this thime. Big Grin
find quote
DigitalG Offline
Junior Member
Posts: 18
Joined: Mar 2007
Reputation: 0
Post: #76
f8lcoder Wrote:Humbly, I would like to reiterate and be perfectly clear that it has been established many times in entries throughout this thread:

1.) powerFLV IS a Plugin
2.) powerFLV IS NOT a Script

Furthermore, it is not my work and I will take no such credit. There are many talented programmers here and to take credit for anyone else’s work would be a sacrilege.

I believe Ubehagen is to thank for possibly creating this plugin and Nuka may have contributed to updating it and appears to be fielding maintenance/troubleshooting.

Credit goes to those, not I.
Smile
FC


quit your yakking.
find quote
f8lcoder Offline
Skilled Python Coder
Posts: 113
Joined: Mar 2008
Reputation: 0
Location: In the disordered state of unformed matter and infinite space ...
Post: #77
DigitalG Wrote:quit your yakking.

Kindly, go f**K yourself...
find quote
eminem15 Offline
Junior Member
Posts: 9
Joined: Aug 2007
Reputation: -10
Post: #78
Thanks alot nickspoon
find quote
Voinage Offline
Banned
Posts: 856
Joined: Mar 2008
Location: England
Post: #79
Hello everyone, first post. Nickspoon & python people, any ideas ?

I have been tinkering with the PowerFlv plugin Myself and was dismayed to see the M*gavid*o links would not not register. After a bit of messing i thought that the plugin would not resolve the true path to the flv`s ( I may be wrong here. ) so i wrote this ammendment to the script : -

Code:
import urllib,re,sys,socket,webbrowser,urllib2,webbrowser

res=[]
#f=urllib.urlopen("http://mojo.hostsnake.com/play2.htm")
#a=f.read()
#f.close()
p=re.compile(r'<iframe src=\"(http\://.+?\.megavideo\.com/v/(.+?))"')
match=p.findall(a)
for a in match:
    a=a[-1]
    a=a[:-45]
    link = 'http://www.megaupload.net/keepvid.php'
    data = "url="+"http://www.megavideo.com/?v="+a+"&site=aa"
    req = urllib2.Request(link, data)
    response = urllib2.urlopen(req)
    results = response.read()
    p=re.compile(r'<br /><a href="(http://.+?)"')
    flv=p.findall(results)
    for link in flv:
        res.append(link)
#webbrowser.open(b)

The hashed out lines are for pc testing. If you run that script it gets the m*gavid*o url then shortens it to the correct size and sends a post, reads back the reply recompiles it then gives the link. As this script uses a certain online flv resolver it can resolve just about any link give to the true path. So it`s handy anyway. It can resolve :-

56.com, 5min, 9you, Bofunk, Break, ClipFish.de, ClipLife.jp, ClipJunkie, ClipShack, CollegeHumor, CrunchyRoll, Dailymotion, DingTV, DoubleAgent, eSnips, ExpertVillage, Flurl, FunnyJunk, FunnyorDie, Glumbert, GoFish, Google Video, Hallpass, HowCast, IndiaFM, iShare.Rediff, Izlesene, Jokeroo, Jumpcut, ku6, LiveVideo, LiveLeak, lulu.tv, Megavideo, Metacafe, MilkandCookies, MonkeySee, MusicMaza, Myspace, MyVideo.de, PokerTube, Putfile, SantaBanta, Sharkle, Shoutfile, Spike, StupidVideos, SuperNovaTube, TeacherTube, Tudou, Twango, Veoh, Videa.hu, Vidiac, Vidivodo, Viddyou, Vimeo, Yahoo Videos, Yikers, Youku, Youtube, ZippyVideos

and quite a few more.

But my problem is that when i run the code in the powerflv plugin it will not display the links for megavideo. if i just use the code : -

p=re.compile(r'<iframe src=\"(http\://.+?\.megavideo\.com/v/(.+?))"')
match=p.findall(a)
for a in match:
a=a[-1]
a=a[:-45]
res.append(a)

it displays the links with the un resolved path. ie www.m*gavid*o.com/?v=(8-digits)

when the resolution code is in place it finds the true path and appends res with -
e.g http://www17.m*gavid*o.com/files/8786f08..._video.flv

I`m very frustrated.

I also updated the veoh links again as it wasn`t displaying all the embedded links for everything listed. just add :-

&player=.+?&videoAutoPlay=.+? after ?permalinkId=(.+?) in both Veoh and veoh embedded.

Help would be appreciated. Thanks Voinage.
(This post was last modified: 2008-03-29 15:01 by Nuka1195.)
find quote
Nuka1195 Offline
Skilled Python Coder
Posts: 3,915
Joined: Dec 2004
Reputation: 17
Post: #80
it's really hard to follow code that isn't formatted. is the above edit correct?

For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
find quote
Post Reply