Sign up here and you can log into the forum!

Icefilms and more

UMSP Plugin Depot, the place for sharing plugins & info about them. No requests, just plugins/code.

Re: UMSP Plug-in :: 10 servers, icefilms included   

Postby recliq » Wed Dec 14, 2011 8:39 am

@noname:
By adding this plugin to the repository you wouldn't need an update mechanism inside your script, WDLXTV would simply download the latest version from the repository on boot or on demand...
This is the main reason we moved the plugins to their own svn repositories and created the web repositories.

I'm sure we can get you your own SVN account for the UMSP repo when b-rad is back, meanwhile you can maybe ask one of the developers to check in your plugin (bagira, shunte, PaulF, avkiev, eskay). ;)
If you can't get anyone to do this contact me.
­WDLXTV Project Maintainer
-:] If you like my contributions feel free to donate for a beer or a new flash drive. ...and always remember: RTFM! (README, FAQ, WIKI) [:-
User avatar
recliq
WDLXTV Team
 
Posts: 5021
Joined: Thu Apr 15, 2010 8:09 am
Location: Kiel, Germany

Re: UMSP Plug-in :: 10 servers, icefilms included   

Postby bhudspeth » Wed Dec 14, 2011 3:41 pm

noname wrote:All the videos fetched by this plugin are hosted in megaupload. Few days ago, megaupload changed the design (and the html) of their site and an update of the plugin was needed in order to stream the videos. The plugin in your wd checks randomly this forum thread for new versions of itself. The message you have seen is noticing you that a new version of the plugin exists (updated Dec 12, 2011). The url http://goo.gl/750hz is just a shorted version of the url of this thread. Follow the instructions at the top and wget the new plugin file into /tmp/umsp-plugins/noname/noname.php.


Thanks!! that worked! hurah icefilms
bhudspeth
n00b
 
Posts: 10
Joined: Fri Dec 09, 2011 7:24 pm

Re: UMSP Plug-in :: 10 servers, icefilms included   

Postby bhudspeth » Wed Dec 14, 2011 3:43 pm

noname wrote:All the videos fetched by this plugin are hosted in megaupload. Few days ago, megaupload changed the design (and the html) of their site and an update of the plugin was needed in order to stream the videos. The plugin in your wd checks randomly this forum thread for new versions of itself. The message you have seen is noticing you that a new version of the plugin exists (updated Dec 12, 2011). The url http://goo.gl/750hz is just a shorted version of the url of this thread. Follow the instructions at the top and wget the new plugin file into /tmp/umsp-plugins/noname/noname.php.


Thanks noname!! you rock
bhudspeth
n00b
 
Posts: 10
Joined: Fri Dec 09, 2011 7:24 pm

Re: UMSP Plug-in :: 10 servers, icefilms included   

Postby bassmig » Thu Dec 15, 2011 5:19 pm

OK, I'm a moron...for a moment (OK a few days) i forgot programming 101.

This plug-in is awesome!!! Thanks for the great work and for sharing with the comunity.
bassmig
WDTVer
 
Posts: 44
Joined: Sun Aug 21, 2011 12:10 pm
Location: New Brunswick.ca

Re: UMSP Plug-in :: 10 servers, icefilms included   

Postby noname » Fri Dec 16, 2011 9:23 am

Please, upload the plugin to the repo. I would thank an account for future updates.

http://goo.gl/VCMbP

I will mantain the internal update notice and a fresh link for manual download from the forum.
noname
Developer
 
Posts: 66
Joined: Mon Dec 05, 2011 8:27 am

Re: UMSP Plug-in :: 10 servers, icefilms included   

Postby mad_ady » Fri Dec 16, 2011 11:08 am

I've just added it to the repo/svn. Welcome to the team noname. Some of the veteran members can grant you upload rights directly in the svn.
User avatar
mad_ady
Developer
 
Posts: 2996
Joined: Fri Nov 05, 2010 9:08 am
Location: Bucharest, Romania

Re: UMSP Plug-in :: 10 servers, icefilms included   

Postby KAD » Fri Dec 16, 2011 10:41 pm

just a bit of feedback, I got a chance to try this out tonight

first off, good work, particularly icefilms is a nice addition, my 1 thing with ice films the message "wait 60 seconds then press enter to Play" is there anyway to get rid of that
I understand there's some buffering going on, but what about
if somebody try's to play before the file is ready, maybe just inside the plugin reload the video, so that on screen it just appears to take a while to connect
currently clicking too soon, dumps me back out to the menu

only other idea I had, would be nice if a wec config option, could hide/disable channels based on language preference, nobody in my household speaks spanish so
and I'm sure there's spanish speaking households, that don't care for the english stuff

all in all, a nice addition

KAD
If you like my work please consider a Donation. Donate
Please read the appropriate documentation before posting questions! READ ME FAQ WIKI
User avatar
KAD
Global Moderator
 
Posts: 4008
Joined: Mon Apr 12, 2010 4:59 pm
Location: Seattle, WA USA

Re: UMSP Plug-in :: 10 servers, icefilms included   

Postby bassmig » Sat Dec 17, 2011 4:57 am

you can remove the channels you don't want by removing them from tmp/conf/umsp.php

you can simply delete the sections you don't want ("remove $myMediaItems[]" up to the closing ");"

delete this whole section.

$myMediaItems[] = array(
'id' => 'umsp://plugins/noname?php=series_icefilms',
'parentID' => '0',
'dc:title' => 'TV series icefilms.info (ENG)',
'upnp:class' => 'object.container',
);

You can also add a custom icon by adding the following line and pointing to an online picture (ie : tinypic, photobucket, etc..)

Code: Select all
       $myMediaItems[] = array(
          'id'              => 'umsp://plugins/noname?php=series_icefilms',
          'parentID'        => '0',
          'dc:title'        => 'TV series icefilms.info (ENG)',
          'upnp:class'      => 'object.container',
          'upnp:album_art'=> 'http://i42.tinypic.com/[mypicture].png'
       );
bassmig
WDTVer
 
Posts: 44
Joined: Sun Aug 21, 2011 12:10 pm
Location: New Brunswick.ca

Re: UMSP Plug-in :: 10 servers, icefilms included   

Postby KAD » Sat Dec 17, 2011 11:09 am

yep, I know how to remove entries, just thought it would be a nice config option to have it done

also some more testing I found a couple of streams that would not play in Icefilms tv

error message was regarding unsupported file type
my first guess there's some many servers here, it's possible there's a small amount of items than need transcoding mixed in with everything else

KAD
If you like my work please consider a Donation. Donate
Please read the appropriate documentation before posting questions! READ ME FAQ WIKI
User avatar
KAD
Global Moderator
 
Posts: 4008
Joined: Mon Apr 12, 2010 4:59 pm
Location: Seattle, WA USA

Re: UMSP Plug-in :: 10 servers, icefilms included   

Postby noname » Sat Dec 17, 2011 11:26 am

The "wait 60 secs.." step can not be removed as this is the usual wait time to download any file hosted in megaupload. I prefer this approach than introducing an sleep(60) in the plugin php code with a black screen until the download starts.

I'm working in the language setting but I will need a repo account to upload the changes.

The plugin does not work in preview mode as it breaks the wait time of megaupload. I have found some "unsupported file type" messages for this reason. Use the plugin only in list or thumbnail mode instead. If you think this is not the problem, please send me the titles of the videos to check myself.
noname
Developer
 
Posts: 66
Joined: Mon Dec 05, 2011 8:27 am

PreviousNext

Return to UMSP Plugins

Who is online

Users browsing this forum: No registered users and 1 guest