NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information Community Announcements v
« Previous 1 … 13 14 15 16 17 … 56 Next »
MLPanel Beta

 
  • 0 Vote(s) - 0 Average
MLPanel Beta
ACTCMS
Offline

Posting Freak

UK
Posts: 2,730
Threads: 101
Joined: Jun 2007
#1
2008-05-19, 10:55 PM
MLPanel Beta is now available for download.

It's an alternative to the Standard Screensaver which displays album art and stuff when you are using pvrx2 for music playback.

To install, simply download and unzip into your GBPVR folder. Have a look at the readme.txt file in the Plugins/MLPanel folder for more details.

It has been developed and tested with pvrx2 1.2.9 Music Library and Music Library2 7.2, but it may work with previous versions.

A bit of background... I found GBPVR about a year ago and loved ML2Panel (I listen to music a lot), so I pestered Psycik to release the source code to me and eventually I wore him down Wink - I also use Jaggy's Blue_Retro_SHV skin, so I asked him to be an early tester (with a view to getting a B-R-SHV skin Wink) - he offered to do all the skinnning, so...

Thanks to Psycik for the basic source and the use of his Interfaces.dll - Jaggy for the skins and his testing and suggestions - all the other Alpha testers for their input.

Please post any comments, suggestions or details of any "Undocumented Features" on the MLPanel Beta Support Thread.
Jaggy
Offline

Posting Freak

Carterton, NZ
Posts: 3,624
Threads: 148
Joined: Mar 2006
#2
2008-08-17, 12:41 AM
We (ACTCMS & I) are just going through a bit of rationalising of MLPanel & have a few questions, so if those of you that use/have tried the alpha/beta out could please give us some of your time to answer a few questions we would appreciate it.

We currently have a new pre-release that the 'wives' (yeah both of them) decided to get involved in & so it should have HEAPS of WAF with it <grin> ACTCMS said in one of his emails Quote "on a scale of 1 to 10 I’m getting a WAF of 250+" so it should be something to look out for in the future Smile It also has quite few new features mainly "concerning photo slide shows" that are not in the current beta version so don't give up on us yet.

If you have tried it out & are no longer using it could you please tell us why you dropped it?

I am just about to clean up some of the views in the skin(s) so could you let me know Which view(s) are you using both PlayingNow & NotPlaying & which you will never use.

Please post your replies in this thread http://forums.nextpvr.com/showthread.php?t=35406

Please let us know if you (or the wife/husband/girlfriend/boyfriend) have any requests/features you/they would like to see.
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 52,767
Threads: 954
Joined: May 2006
#3
2008-08-17, 01:20 AM
I stopped using it mainly because of complications trying to test ML2 and now ML3. If you use the new 8.0 interfaces.dll things might be a lot better.

Because of changes coming with the NMT I think i can make better use of MLPanel too since mvpmcx2 will notify GBPVR as it moves between songs and I can overlay images.

Finally the possibility of doing a photo slide show with music is very interesting. This is the one function that GBPVR can't do on the NMT that other streamers can. The logic is different but it can be done if you are interested.

Martin
ACTCMS
Offline

Posting Freak

UK
Posts: 2,730
Threads: 101
Joined: Jun 2007
#4
2008-08-17, 02:07 AM
mvallevand Wrote:I stopped using it mainly because of complications trying to test ML2 and now ML3. If you use the new 8.0 interfaces.dll things might be a lot better.

Because of changes coming with the NMT I think i can make better use of MLPanel too since mvpmcx2 will notify GBPVR as it moves between songs and I can overlay images.

Finally the possibility of doing a photo slide show with music is very interesting. This is the one function that GBPVR can't do on the NMT that other streamers can. The logic is different but it can be done if you are interested.

Martin
Yep, the shared use of Interfaces.dll between ML2/ML3/MLpanel is a problem which I'm discussing with Psycik...

We have the photo stuff working just about how we want it thru the MVP (that's what we use), but it would be great if it worked on the NMT too... so any input would be welcome.

Alex
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 52,767
Threads: 954
Joined: May 2006
#5
2008-08-17, 02:38 AM
If you output the entire screen to a jpeg or png as discussed in this thread http://forums.nextpvr.com/showthread.php?t=36945 mvpmcx2 will be able to output this image while audio is playing and when songs change or on a timed interval.

Sub is still going to need to help since right now it just seems to loop on the first song (mvpmcx2 might need to send some more things too) and the gbpvr web server can't serve jpg's or png's.

Martin
ACTCMS
Offline

Posting Freak

UK
Posts: 2,730
Threads: 101
Joined: Jun 2007
#6
2008-08-17, 08:27 PM
Martin

I'll have a play about with this...

I assume that I will need to create a jpg or png in addition to doing the normal screen render when I detect an MVP client - since pvrx2 doesn't differentiate between MVP and NMT.

Alex
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 52,767
Threads: 954
Joined: May 2006
#7
2008-08-18, 05:06 AM
This is how I get the type, there probably is a better way

Code:
private string clientType;

            String checkPCH = "/settings/MVPSpecificSettings/MAC-" + PluginHelperFactory.getPluginHelper().GetClientIdentifier().Substring(4) + "/MVPClientType";
            XmlDocument settingsDocument = PluginHelperFactory.getPluginHelper().GetConfiguration();
            XmlNode node = settingsDocument.SelectSingleNode(checkPCH);
            
            if (node != null)
            {
               // Can be PCH or something else
                clientType = node.InnerText;
            }
            else
            {
                clientType = "NotSet";
            }
            return clientType;

Martin
ACTCMS
Offline

Posting Freak

UK
Posts: 2,730
Threads: 101
Joined: Jun 2007
#8
2008-09-07, 10:20 PM
mvallevand Wrote:If you output the entire screen to a jpeg or png as discussed in this thread http://forums.nextpvr.com/showthread.php?t=36945 mvpmcx2 will be able to output this image while audio is playing and when songs change or on a timed interval.
Martin, in that thread, sub's code sample suggests saving the images in the local user's temp folder
Quote:compositeRendering.Save(Path.GetTempPath() + "\\pch.jpg");
Is there a more convenient location and/or name to save them under?

Alex
psycik
Offline

Posting Freak

Posts: 5,210
Threads: 424
Joined: Sep 2005
#9
2008-09-07, 10:36 PM
I remember, mvallevand asking if they could go to the tv cache directory..
ACTCMS
Offline

Posting Freak

UK
Posts: 2,730
Threads: 101
Joined: Jun 2007
#10
2008-09-07, 10:48 PM
psycik Wrote:I remember, mvallevand asking if they could go to the tv cache directory..
Would that be the Live TV Buffer Directory as specified in the Directories tab in config?
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (3): 1 2 3 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  New LG and Samsung NextPVR Web Smart TV App available for beta testing. fred250 388 135,669 2017-04-10, 10:46 AM
Last Post: fred250
  Bluray Player Beta whurlston 23 11,735 2015-10-05, 09:32 AM
Last Post: Lao Pan
  Movies beta vik 66 30,405 2015-03-31, 03:13 AM
Last Post: Lao Pan
  Need beta testers for "NextPVR for Samsung" (client for samsung smart tvs/blurays) reven 61 26,892 2013-12-03, 10:21 AM
Last Post: martint123
  imageGrabLite Beta mvallevand 84 61,266 2013-10-04, 06:40 PM
Last Post: mvallevand
  SSPlus Screensaver - Photo Slideshow Beta ACTCMS 40 13,494 2012-12-07, 01:49 AM
Last Post: ACTCMS
  New External App : Channel Logo Tools For NPVR (Beta) systemshark 0 1,652 2011-09-03, 08:15 AM
Last Post: systemshark
  SSPlus 0.9.1 BETA - a screensaver for NPVR ACTCMS 18 5,780 2011-07-18, 12:52 AM
Last Post: johnsonx42
  System Plugin for nPVR - Early Beta imilne 176 46,433 2011-07-16, 04:31 PM
Last Post: johnsonx42
  QAM Scanning and Preview in Web Radio (beta) mvallevand 1 1,918 2011-01-24, 01:41 AM
Last Post: mvallevand

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode