Solutions found
Okay, I must confess that a little code reading reveals a simple solution:
load the windows a usual and iterate over the included controls.
But yesterday night this was not so obvious to me. sorry I am new to mp and c# development.
Solutions found
Okay, I must confess that a little code reading reveals a simple solution:
load the windows a usual and iterate...
Hi everybody,
I hope this is the right place to ask. I am new to plugin development, but I in the last few days there is
a lot...
Hi.
In case someone is interested
I tested a bit.
if (msg.Msg == 0x007E)
{
if (g_Player.Playing)
{
g_Player.Stop();
}
if (!windowed)
{
int y = (msg.LParam.ToInt32() >> 16) & 0xFFFF;
int x = (msg.LParam.ToInt32() & 0x0000FFFF)...
Hi.
In case someone is interested
I tested a bit.
if (msg.Msg == 0x007E)
{
if (g_Player.Playing)
{...
As M$ describes it. ;)
This popped into my mind one day. Methology explained here:
The Display-Aware Application (Windows)...
Hi.
Actually neither. I mean Generic provider is in Win versions where has also MediaCenter, if i remember
right. Dev's might correct if i'm wrong.
But yes. it affects only server.
regards,
Hi.
Actually neither. I mean Generic provider is in Win versions where has also MediaCenter, if i remember
right. Dev's might...
Hi programmers,
I'm on the way to build a TextToSpeech-plugin. For that reason I would like to decrease the playback volume temporarily to speak out "now plaing" information.
I'm just in exploring the volume handling inside MediaPortal. What I have found out, is that using the keyboard "+" or "-" keys, the Windows XP "Wave"...
Hi programmers,
I'm on the way to build a TextToSpeech-plugin. For that reason I would like to decrease the playback volume...
Hi programmers,
I'm on the way to build a TextToSpeech-plugin. For that reason I would like to decrease the playback volume...
Hi,
I am trying to program a tv server plugin however I am not sure how to use some of the api methods.
I looked here mediaportal - Revision 23409: /trunk/TvEngine3/TVLibrary/doc for the .chm file. Sorry I don't remember where on the mediaportal site I found the links. They were suggesting that the help files were standalone...
Hi,
I am trying to program a tv server plugin however I am not sure how to use some of the api methods.
I looked here...
Hi,
I am trying to program a tv server plugin however I am not sure how to use some of the api methods.
I looked here...
You can either use a tvserver plugin that runs within tvserver's process and listens for commands you will define, or you can use .net remoting like MP TV Client does but I don't know how you could do that from PHP.
You can either use a tvserver plugin that runs within tvserver's process and listens for commands you will define, or you can use...
I wonder how to start timeshifting on a remote TVserver. I want to make something similar to MP TV Client. The MySQL things are...
As part of the iPiMP rewrite I have uploaded the source code to code.google.com and use it's SVN for source control. Whilst looking for an SVN utility to add to visual studio I found AnkhSVN and VisualSVN, so I tried them both. VisualSVN came out easier to use and had more features primarily as it uses Tortoise SVN as its base. The...
As part of the iPiMP rewrite I have uploaded the source code to code.google.com and use it's SVN for source control. Whilst...
As part of the iPiMP rewrite I have uploaded the source code to code.google.com and use it's SVN for source control. Whilst...
Hi sorry for not testing myself, but my Mediaportal computer is into pieces (upgrading) - but I found this GUI version of FFMPEG, which have some presets, furthermore there is a forum discussing these presets (can be seen on the commandline window).
Webpage: WinFF - Free Video Converter
forum: WinFF - Index
Edit:
I found...
Hi sorry for not testing myself, but my Mediaportal computer is into pieces (upgrading) - but I found this GUI version of FFMPEG...
Hi does anybody know the needed parameters to transcode ts files via ffmpeg or mencoder (or another transcoder) to flv?
Thanks...
Hi.
in this Audio lang properties bug thread i post a small bug.
So i found this strings in sourcecode (https://sources.team-mediaportal.com...oPlayerVMR7.cs)
----------------------------------------------------------------
/// <summary>
/// Property to get/set the name for a subtitle stream
/// </summary>
public override...
Hi.
in this Audio lang properties bug thread i post a small bug.
So i found this strings in sourcecode...
Hi.
in this Audio lang properties bug thread i post a small bug.
So i found this strings in sourcecode...
Hi People,
I have tried 1.0.2, 1.1.0 beta, 1.1.0 beta with svn and none of them will work with my Freeview tuner, it's a AF9015 by Twinhan.
It first failed in 1.0.1 but it failed with no signal, and applying the analog fix files i found it managed to work again.
But at the moment, when going to scan it puts the frequency as...
Hi People,
I have tried 1.0.2, 1.1.0 beta, 1.1.0 beta with svn and none of them will work with my Freeview tuner, it's a AF9015...
Hi People,
I have tried 1.0.2, 1.1.0 beta, 1.1.0 beta with svn and none of them will work with my Freeview tuner, it's a AF9015...
thanks for the reply.
audio track: no it is not always on track 1 or 2, it's either. i can work around this by using a database (since i have to store the media info anyways) i will just have another column to indicate what track the vocal is on. and switch it based on the value from the column.
to clarify the 2nd part - the...
thanks for the reply.
audio track: no it is not always on track 1 or 2, it's either. i can work around this by using a database...
hi folks,
i'd like to develop a video karaoke plugin but before i proceed; is it possible to tell media portal what audio track...
If you don't have access to VS 2008 you could use the free Visual C# 2008 Express Edition . Of course you will miss some advanced features, but it will get you there.
If you don't have access to VS 2008 you could use the free Visual C# 2008 Express Edition . Of course you will miss some advanced...
I have come accross MediaPortal, and from what I can see looks great.
I am a UK STB engineer, and would love to get involved and...
For what I saw in the code (GUIControl.Render)
if (Dimmed)
{
color &= DimColor;
}
So it is a "logical and" for all bit.
With your example:
color = 0xFFFFFFFF (plain white)
dimcolor = 0x80FF0000
the results is 0x80FF0000
For what I saw in the code (GUIControl.Render)
if (Dimmed)
{
color &= DimColor;
}
So...
Hi,
for my skineditor I wanted to know what dimColor really does. I know whats in the wiki but I would need to know how the...
Hello,
I agree I think it is a little sad, specially when you look at the amount of code, it is not really easy to read.
So here are some suggestions regarding documentations I'm using at work:
* There is a very nice and free plugin to help with documentation called GhostDoc. It wiil add a context menu "Document this" when you...
Hello,
I agree I think it is a little sad, specially when you look at the amount of code, it is not really easy to read.
So...
Is there any documentation about the sourcecode?
Functions, Classes, Mehtods?
For example:
I want to use the inbuild video...
I guess I had to figure out myself how to modify the skin xml files. This required removing player.paused condition in a few places in common.play.progressbar.xml and videoFullScreen.xml. Now I can pause without annoying mini OSD.
Developers: We need the mini progressbar on rewinding, fast forwarding, but we do not need it to stay...
I guess I had to figure out myself how to modify the skin xml files. This required removing player.paused condition in a few places...
I requested the timeout on pause mini-osd progress bar (like they did in MCE), and hope one day it will be implemented...
Thanks. I built the client only and it wouldn't run because of the issue in my first post.
I will try building the server too and see if that fixes things.
Thanks again.
Thanks. I built the client only and it wouldn't run because of the issue in my first post.
I will try building the server too and...
I wanted to play around with the MP II code a little. When I try and start the client it tries to access xml files that don't...