Hi all,
quick question:
under which circumstances is the database TVDatabaseV21.db3 locked during runtime of MP ?
- The whole time ? (unlikely, I managed to update during runtime of MP)
- during EPG import ? ( Likely, but is the lock exclusive or on record base ?)
Background is, I add some programs not covered by any EPG...
Hi all,
quick question:
under which circumstances is the database TVDatabaseV21.db3 locked during runtime of MP ?
- The...
Hi all,
quick question:
under which circumstances is the database TVDatabaseV21.db3 locked during runtime of MP ?
- The...
Hello out there!
First of all: great thanks to all developers that are working on this new TV solution. Client/server infrastructure is great for advanced home usage.
But since I use a Linux server for file storage and so on I would be very happy about a TV server (only the service) for Linux. Of course you - the developers of this...
Hello out there!
First of all: great thanks to all developers that are working on this new TV solution. Client/server...
Hello out there!
First of all: great thanks to all developers that are working on this new TV solution. Client/server...
I know most people start MP full screen.
For those of us that dont its a pain that the window is often offscreen especially with the BlueTwo Wide Skin.
I have added this code in
MediaPortal.cs
This makes sure the window client area is the same aspect ratio as the skin and the window is on screen. I have tested on two...
I know most people start MP full screen.
For those of us that dont its a pain that the window is often offscreen especially with...
I know most people start MP full screen.
For those of us that dont its a pain that the window is often offscreen especially with...
I am starting to add an import option for movie collector.
I am new to c#, but not programming.
When I try to run the config manager in debug mode, I get a few exceptions and can't figure out why.
LoaderLock was detected
Message: DLL 'C:\Documents and Settings\xxxx\My Documents\media portal...
I am starting to add an import option for movie collector.
I am new to c#, but not programming.
When I try to run the config...
I am starting to add an import option for movie collector.
I am new to c#, but not programming.
When I try to run the config...
Youu should try the actual version which is located here https://forum.team-mediaportal.com/announce_mptvclient_v1_1_5_07_11-t22027.html
Since this version is outdated, consider this thread to be closed and continue on the above thread
Youu should try the actual version which is located here...
Hi Guys,
just needed something to just view streamed TV on my laptop without the need to install whole MP. So thanks of TVEngine3...
The bug is that the encoding (either hardware or software ) to mpeg filters are not included in the graph building by the TV engine .
So you get a raw non mpeg stream being connected to the mpeg demux which obviously fails.
I have offered to test any beta code to get this working with AIW cards but no feedback as of yet.
The bug is that the encoding (either hardware or software ) to mpeg filters are not included in the graph building by the TV engine...
As per FlipGer's suggestion, I am posting this in the Development forum. Several people are having the same problem with their...
I managed to build a little rtsp server using the code to see where the problem lies with streaming other media formats and it seems to be the activex filters, and that is where I got stuck since i have no clue how to write or even add an ax filter to the server. I settled on a different streaming engine for now. Would love to see...
I managed to build a little rtsp server using the code to see where the problem lies with streaming other media formats and it...
Does anyone have sample code etc to enable TvServer to stream other media across a network ? I have noticed that TvServer uses rtsp...
Hi,
I've got most of my simple app working now (generate a simple list of all the video's you have to). But ideally I want to get the dirs that are configured in MP for My Video's (instead of the user adding dirs manually)..
I've dug around the source, but can't get a handle on what to use to get a list of the configured dirs...
Hi,
I've got most of my simple app working now (generate a simple list of all the video's you have to). But ideally I want to...
Hi,
I've got most of my simple app working now (generate a simple list of all the video's you have to). But ideally I want to...
I'm modifying the slideshow so that it shows EXIF info on the OSD, etc..
https://forum.team-mediaportal.com/modified_slideshow_plugin-t30383.html
I just browsed through the coding guidelines and it seems quite interesting.
Currently I'm planning to write a new class that would handle the exif reading/writing which would be a...
I'm modifying the slideshow so that it shows EXIF info on the OSD, etc...
I'm modifying the slideshow so that it shows EXIF info on the OSD, etc...
If you add a reference to databases.dll you'll see all the calls you need to access the database. I'm at work right now or I'd be a little more specific, but that should get you going.
If you add a reference to databases.dll you'll see all the calls you need to access the database. I'm at work right now or I'd be...
Hello,
As my first c# project I'm thinking about writing a small app that extracts info from the video database... I've been...
Hi all,
please update all references from "{0}\MediaPortal TV Server\log\*.log" to "{0}\Team MediaPortal\MediaPortal TV Server\log\*.log" so everything is getting clear for logging as was done for install paths.
Thank you.
Simone
Hi all,
please update all references from "{0}\MediaPortal TV Server\log\*.log" to "{0}\Team MediaPortal\MediaPortal TV...
Hi all,
please update all references from "{0}\MediaPortal TV Server\log\*.log" to "{0}\Team MediaPortal\MediaPortal TV...
Hi,
peterk2007, i don't have that patch anymore, it was added to SVN, compiled & tested & result posted here. This was a complete build & not dll replacement as you think ;)
Regards
Roy
Hi,
peterk2007, i don't have that patch anymore, it was added to SVN, compiled & tested & result posted here. This was a complete...
Hi guys,
According to MSDN, if one queries for FilterInfo/PinInfo interfaces, the returning pGraph/pFilter should be released...
Can't wait to see it available
Issac:
Great work! I liked the sample shots that you posted. Can't wait until your work is made available to the general public. Is there a way for me to get a copy of your mediaPortal? Is it possible to retain English menus but at same time recognize Chinese characters? Thanks.
Can't wait to see it available
Issac:
Great work! I liked the sample shots that you posted. Can't wait until your work is made...
Re: TW schedules = HK schedules?
It won't have any problem for EPG in Englisg. You can download the "ETSI EN 300 468 document (...
Hi there!
It seems that the wave data supplied to WMP visualizations is completely wrong. (Tested with the BetterBars viz from WMPPlugins.com). Allthough probably not used much, here's an suggestion:
....
// Convert float value between -1 and 1 to 0 and 255
float val = (buf[i] + 1f) * 127.5f;
if (val < 0)
val = 0...
Hi there!
It seems that the wave data supplied to WMP visualizations is completely wrong. (Tested with the BetterBars viz from...
Hi there!
It seems that the wave data supplied to WMP visualizations is completely wrong. (Tested with the BetterBars viz from...
Hi there!
I have noticed that the response of WMP visualizations is very poor.
It can be improved alot by applying a logarithmic scale to the FFT data coming from BASS_ChannelGetData():
float val = (90f + ((float)Math.Log10(fft[i]) * 20f)) * (255f / 90f);
if (val < 0)
val = 0;
else if (val > 255)
val = 255...
Hi there!
I have noticed that the response of WMP visualizations is very poor.
It can be improved alot by applying a...
Hi there!
I have noticed that the response of WMP visualizations is very poor.
It can be improved alot by applying a...
Hi,
I think this is a fairly common problem that sometimes for some reason somethings go wrong during the import ;).
One of the problems I was having was that all episodes got parsed correctly during the parsing test. The real import which links local episodes to online episodes however sometimes didn't work completly.
Luckily...
Hi,
I think this is a fairly common problem that sometimes for some reason somethings go wrong during the import ;).
One of...
Hi,
I think this is a fairly common problem that sometimes for some reason somethings go wrong during the import ;).
One of...
I put together two small pathes because they are really small - just a few
lines -, they are both related to subtitle/audio stream selection, and they
both are in the same file.
1. If ffdshow is in the directshow graph, it adds it's plugins (like
subtitle, sharpen, deinterlace, etc.) as "audio streams". As a result,
Mediaportal...
I put together two small pathes because they are really small - just a few
lines -, they are both related to subtitle/audio stream...
I put together two small pathes because they are really small - just a few
lines -, they are both related to subtitle/audio stream...
I'll get tonights svn then :)
I'm sure it would be possible to disagree with some of the changes I made, but I shall only look forward to that :)
Isn't it possible to add a translation part to the development forum? I think that would be great as it would enable discussion of wording etc.
Cheers!
I'll get tonights svn then :)
I'm sure it would be possible to disagree with some of the changes I made, but I shall only look...
Changed quite a few grammatical errors and a few spelling errors as well as making the translation more consistent (so a thing...
Hello everyone,
I've updated the hungarian localization xml and submitted it to the tracker here: Hungarian localization update
Changes:
- Translated all missing entries up to the latest SVN version. (16319).
- Corrected numerous wrong translations.
- Sorted entries by ID to aid future updates.
Hello everyone,
I've updated the hungarian localization xml and submitted it to the tracker here: Hungarian localization update...
Hello everyone,
I've updated the hungarian localization xml and submitted it to the tracker here: Hungarian localization update...
For some time (months, now) I've been working to fix an issue that affects scheduled recordings over midnight, when using the internal TV engine (not TV server). Hopefully this time I've nailed the problem, I've been running Media Portal with my corrected Databases.dll for some weeks with no more issues. Now I want to open a wider...
For some time (months, now) I've been working to fix an issue that affects scheduled recordings over midnight, when using the...
For some time (months, now) I've been working to fix an issue that affects scheduled recordings over midnight, when using the...
Firstly, wanted to say what a great looking program MP is.
My problem is with audio. I am using Vista Ultimate 32bit. I am connected from my mobo to my TV via HDMI lead, I installed V0.2.3.0 RC2 and I have Bass Player selected and Sound Device = Default Sound Device, but I get no sound at all. If I use any other application...
Firstly, wanted to say what a great looking program MP is.
My problem is with audio. I am using Vista Ultimate 32bit. I am...
Firstly, wanted to say what a great looking program MP is.
My problem is with audio. I am using Vista Ultimate 32bit. I am...
Also running MP in "High Priority" mode can reduce tearing, all you can suggest is whatever works for you.
Which driver whether ati or nvidia you are using also seems to affect this.
AMD dualcore optimiser can rectify this as well.
Would be great if there was a definitive answer that solved this for everyone.
Also running MP in "High Priority" mode can reduce tearing, all you can suggest is whatever works for you.
Which driver whether...
Had this error for a long time (at least with NVidia cards, somehow the ATI I had before wasn't showing up that bug).
I checked...
Hi,
I'm currently experimenting with plugin development. In doing so, I noticed I'm missing a way to have my callback function called by the message processing thread.
Recent svn builds already have GUIWindowManager.SendThreadCallbackAndWait() but in my case the function should not wait. So I added the following method...
Hi,
I'm currently experimenting with plugin development. In doing so, I noticed I'm missing a way to have my callback function...
Hi,
I'm currently experimenting with plugin development. In doing so, I noticed I'm missing a way to have my callback function...
Action to replicate:
1. In Configuration, set any remote control button's action to "Window - TVFullscreen"
2. Launch MediaPortal
3. Press button configured in step 1.
Expected behavior:
Display Fullscreen TV window showing last channel played.
Actual behavior:
Screen flashes to black for a very short moment, then...
Action to replicate:
1. In Configuration, set any remote control button's action to "Window - TVFullscreen"
2. Launch...
Action to replicate:
1. In Configuration, set any remote control button's action to "Window - TVFullscreen"
2. Launch...