It is possible for a plugin to be both a window plugin as well as a external player plugin. Still messing around with some proof of concept plugins and I was wondering if this was possible.
Thanks for any help
Cheers
David
It is possible for a plugin to be both a window plugin as well as a external player plugin. Still messing around with some proof of...
It is possible for a plugin to be both a window plugin as well as a external player plugin. Still messing around with some proof of...
Here is some sample code that listens to the OnDeactivateWindow event:
https://github.com/Technicolour/Trakt-for-Mediaportal/blob/master/TraktPlugin/TraktPlugin.cs#L407
Here is some sample code that listens to the OnDeactivateWindow event...
Hi,
Is there a way for checking if a skin is loaded?
The scenario are: a users changes skin from a supported skin to a...
As I said, samples are any current existing dialogs :)
Code-wise I couldn't spot any issues. Maybe the problem is skin related? Share skin file too, I'll try to test your dialog when I find some time (probably not very soon but in a week or two).
As I said, samples are any current existing dialogs :)
Code-wise I couldn't spot any issues. Maybe the problem is skin related...
Hi,
I want to create a new Dialog in Media Portal,
I tried inheriting an existing dialog class and put my customized code...
Okay it is actually working, but when I have this in the skin file
<control>
<id>1</id>
<description>BackGround</description>
<type>image</type>
<posX>0</posX>
<posY>0</posY>
<width>720</width>
<height>576</height>
<texture>background.png</texture>
</control>...
Okay it is actually working, but when I have this in the skin file
<control>
<id>1</id>...
Hi,
I have been working on my on plug in. and I have been populating a listcontol with the following code
private...
Hello,
Is it possible to do a "fork" of the standart video plugin.
My goal is to use the standard video interface of all the skin and modify only some event.
For exemple, I don't want to use de database but only files. When a flag file is present, my video element is tagged Watched.
I have create a new GUI plugin and load...
Hello,
Is it possible to do a "fork" of the standart video plugin.
My goal is to use the standard video interface of all the...
Hello,
Is it possible to do a "fork" of the standart video plugin.
My goal is to use the standard video interface of all the...
Ok, I think I found a way around this, I had to invoke the method on the gui context...
It's only working when in the TvPlugin screen though, otherwise I get an exception and (if called twice in short time) a MediaPortal crash.
Ok, I think I found a way around this, I had to invoke the method on the gui context...
It's only working when in the TvPlugin...
For the WifiRemote plugin it would be important to be able to start a Tv Channel on a MediaPortal client from a plugin (so a remote...
AW: Map my Plugin to Remote-Key ?
Hey there cashi,
please have a look here:
https://forum.team-mediaportal.com/mediaportal-plugins-47/audio-renderer-changer-82337/index5.html#post767806
EDIT: after reading your first post again, this might suit you more...
AW: Map my Plugin to Remote-Key ?
Hey there cashi,
please have a look here...
Hi,
i developed a plugin for control my EIB-Bus to switch lights in the House on/off etc...
The Plugin is in "Plugins", i cant...
AW: JetBrains Resharper
Finally got one as well!
Tip: If you're a plugin developer and not a member of the core team, apply for a license via your plugin name rather than 'MediaPortal'.
I had to reapply because of that as they figured I wasn't a commiter to MP's source code...
cheers
Anthrax
AW: JetBrains Resharper
Finally got one as well!
Tip: If you're a plugin developer and not a member of the core team, apply for a...
In addition to VisualSVN (which I posted about here), JetBrains also do free ReSharper licenses for Open Source projects. I got...
Out the box this is not possible. You would need to write a plugin in combination with a skin file to achieve this.
I suggest you have a look at some existing skins which replace basic home (try Maya, StreamedMP and possibly some others that include a menu editor)
Out the box this is not possible. You would need to write a plugin in combination with a skin file to achieve this.
I suggest...
Hello MP team,
I've gone through the myHome.xml file in the MP Skin-Editor , i find over there the Main Menu options which are...
Hello MP Team,
I want to have a skin which displays the Main Menu Vetically & when I click on any main menu option, it must display its submenu options horizontally.
Have attached the screen shot.
In all the skins so far downloaded , I've not seen such UI where we can have teh main menu & submenu options on the same page...
Hello MP Team,
I want to have a skin which displays the Main Menu Vetically & when I click on any main menu option, it must...
Hello MP Team,
I want to have a skin which displays the Main Menu Vetically & when I click on any main menu option, it must...
The comparability check is against other components. If you have just replaced the ones you have changes they will have a version number to the main binaries. You need to make sure these all match
The comparability check is against other components. If you have just replaced the ones you have changes they will have a version...
Hi,
I just build a svn version of the tv server (27976) because I needed some personal patches. My problem is that all...
im working on a plugin but i have a problem when switching to channels
the first time i switch the channel using
TvControl.RemoteControl.Instance.StartTimeShifting(ref user, Int32.Parse(channelId), out card);
the TVServer starts timeshifting my choosen channel and i can use vlc player to show the tv stream
but the second...
im working on a plugin but i have a problem when switching to channels
the first time i switch the channel using...
im working on a plugin but i have a problem when switching to channels
the first time i switch the channel using...
AW: Re: [Help needed] How to play streams with HTTP Basic Authentication?
wow offbyone,
that was quick! Much appreciated.
well it seemed it did at least som time ago: VideoProxy.cs - mytrailers - a trailer plugin for MediaPortal - Google Project Hosting
I incorporated this method in MyPlexMedia but I hit the wall when I realized...
AW: Re: [Help needed] How to play streams with HTTP Basic Authentication?
wow offbyone,
that was quick! Much appreciated.
well...
Hey devs,
I'm hard at work with my new MyPlexMedia plugin at the moment and ran into the following problem:
1...
Wow awesome! I'm going to try some things this evening :)
edit:
The pictures database is far more easier then the music database. I'm trying to alter some stuff of the pictures database and I think it will work :)
Wow awesome! I'm going to try some things this evening :)
edit:
The pictures database is far more easier then the music database...
I would like to use a database for my plugin. My plugin is a home automation plugin for the Home Control Box. I would like to be...
It works on my computer (i7 8 virtual cores), but on the HTPC (2 cores) it only works at random times.. I get this error very often:
I cannot understand why it only works randomly..
Also the bw_getMacros works mostly only after the first time. So the first time it just doesn't get all the macros..
//edit
OMG, I think I've fixed it...
It works on my computer (i7 8 virtual cores), but on the HTPC (2 cores) it only works at random times.. I get this error very...
In a windows forms app I can just use the BackgroundWorker from the Toolbox.. but how to do that with a MediaPortal plugin? I don't...
Hi,
i'm working again on a new recording option for MP TV-Server. For this i need a query like this.
SELECT * FROM X WHERE y=z AND ((a=b AND c>e) OR (a>b))
Sadly i wasn't able to find out how to construct a query like this with the SQLBuilder.
Stefan
Hi,
i'm working again on a new recording option for MP TV-Server. For this i need a query like this.
SELECT * FROM X WHERE...
Hi,
i'm working again on a new recording option for MP TV-Server. For this i need a query like this.
SELECT * FROM X WHERE...
Hi mm,
once again thanks for all your time and effort to provide this information. I hope you realise I am just trying to be pro-active and I am wanting to learn how this works so I can help in solving my own problem as I realise the S500 is deprecated and no-one else seems to be using it (with anything).
I actually do have a toy...
Hi mm,
once again thanks for all your time and effort to provide this information. I hope you realise I am just trying to be...
Hi again - hope I don't hear too many sighs!
Could someone care to explain, or direct me to the relevant place, as to how the TV...
I'm very grateful for any help you can give.
I'm happy to give the code a rest, though I've now got it working, but clearly trying to debug the tvserver and set parameters is rather difficult :sigh.
So okay, I'll leave off the code.
I have actually re-installed the 1.2 beta from scratch and was just playing around with different...
I'm very grateful for any help you can give.
I'm happy to give the code a rest, though I've now got it working, but clearly trying...
Hey guys,
I wanna start compiling MP myself using latest SVN, but i have no idea what to do.
Is there a guide somewhere which is...
Agree, the await keyword looks awesome.
I am using TPL in .NET3.5 (implemented in Reactive Extensions) but wanted to know if I will be able to use the corresponding classes in .NET4.
Agree, the await keyword looks awesome.
I am using TPL in .NET3.5 (implemented in Reactive Extensions) but wanted to know if I...
Do we have anything in the MediaPortal v1 roadmap about .NET4, or is that reserved for MediaPortal v2?