- MediaPortal
-
MediaPortal
MediaPortal Blue3Wide Skin Home screenOriginal author(s) Team MediaPortal Developer(s) Team MediaPortal Initial release 2004 Stable release 1.2.1 / 26 September 2011 Preview release 1.2.0 Beta / 29 April 2011 Development status Active Written in C# programming language Operating system Microsoft Windows Platform x86, x86-64 Available in Multi Language Type Media center License GNU General Public License Website www.team-mediaportal.com MediaPortal is an open-source media center software project, often considered an alternative to Windows Media Center[1][2] . It provides a 10-foot user interface for performing typical PVR/TiVo functionality, including playing, pausing, and recording live TV; playing DVDs, videos, and music; viewing pictures; and other functions[3]. Plugins allow it to perform additional tasks, such as watching online video, listening to music from online services such as Last.fm, and launching other applications such as games. It interfaces with the hardware commonly found in HTPCs, such as TV tuners, infrared receivers, and LCD displays.
The MediaPortal[4] source code was initially forked from XBMC Media Center, though it has been almost completely re-written since then[5]. MediaPortal runs only under Microsoft Windows, unlike most other open-source media center programs such as MythTV and XBMC, which are usually cross-platform.[6]
Contents
Features
- Direct X GUI
- Video Hardware Acceleration
- VMR / EVR on Windows Vista / 7
- TV / Radio (DVB-S, DVB-S2, DVB-T, DVB-C, Analog television (Common Interface, DVB radio, DVB EPG, Teletext, etc...)
- IPTV
- Recording, pause and time shifting of TV and Radio broadcasts
- Music player
- Video/DVD player
- Picture player
- Internet Streams
- Integrated Weather Forecasts
- Built-in RSS reader
- Plug ins
- Skins
Graphical User Interfaces
Control
MediaPortal can be controlled by any input device, that is supported by the Windows Operating System.
- PC Remote
- Keyboard / Mouse
- Game Pad
- Kinect
- Wiimote
- Android[7][8] / iOS[9]/ WebOS / S60 handset devices
Television
MediaPortal uses its own TV-Server to allow to set up one central server with one or more TV cards. All TV related tasks are handled by the server and streamed over the network to one or more clients. Clients can then install the MediaPortal Client software and use the TV-Server to watch live or recorded TV, schedule recordings, view and search EPG data over the network. Since version 1.0.1, the client plugin of the TV-Server has replaced the default built-in TV Engine.
Even without a network (i.e. a singleseat installation), the TV-Server treats the PC as both the server and the client.
The TV-Server supports watching and recording TV at the same time with only one DVB/ATSC TV Card, on the same transponder. Broadcast Driver Architecture is used to support as many TV cards as possible. The major brands of cards, like digital-everywhere, Hauppauge, Pinnacle, TechnoTrend and TechniSat, including analog cards, provide BDA drivers for their cards.
Video/DVD player
The video player of MediaPortal is a DirectShow Player, so any codec/filter can be used. MediaPortal uses the codec of MPC-HT by default, but the codec can be changed to all installed ones, such like FFDShow, PowerDVD, CoreAVC, Nvidia PureVideo etc. MediaPortal also support video post-processing, with any installed codec. Due to the DirectShow player implementation, MediaPortal can play all media files that can be played on Windows.
Music player
The default internal music player uses the BASS Engine[10] with the BASS audio library. The alternative player is the internal DirectShow player. With the BASS Engine MediaPortal supports visualizations from Windows Media Visualizations, Winamp Visualizations including Milkdrop, Sonic and Soundspectrum G-Force.
Picture player/organizer
Digital pictures/photos can be browsed, managed and played as slideshows with background music or radio. The picture player uses different transitions or the Ken Burns Effect between each picture. Exif data are used to rotate the pictures automatically, but the rotation can be done manually too. Zooming of pictures is also possible.
Online videos
OnlineVideos[11] is a plugin for MediaPortal to integrate seamless online video support into MediaPortal. OnlineVideos supports almost 200 sites[12]/channels in a variety of languages and genres such like YouTube, iTunes Movie Trailers, Discovery Channel etc.
Series
MP-TVSeries[13][14] is a popular TV Series plug-in for MediaPortal. It focuses on managing the user's TV Series library. The MP-TVSeries plugin will scan the hard drive (including network and removable drives) for video files, it then analyzes them by their path structures to determine if they are TV Shows. If the file(s) are recognized then the plugin will go online and retrieve information about them. You can then browse, manage and play your episodes from inside MediaPortal in a nice graphical layout.
The information and fan art it retrieves is coming from TheTVDB.com which allows any user to add and update information. The extension will automatically update any information when new episodes/files are added.
Extension development
Skins
The skin files are written in XAML.
Example<window> <id>5678</id> <defaultcontrol>2</defaultcontrol> <allowoverlay>yes</allowoverlay> <controls> <control> <description>BackGround</description> <type>image</type> <id>1</id> <posX>0</posX> <posY>0</posY> <width>720</width> <height>576</height> <texture>background.png</texture> </control> <control> <description>an Image</description> <type>image</type> <id>1</id> <posX>75</posX> <posY>370</posY> <texture>hover_my videos.png</texture> </control> <control> <description>text label</description> <type>label</type> <id>1</id> <posX>250</posX> <posY>70</posY> <label>Some text</label> <font>font16</font> <align>right</align> <textcolor>ffffffff</textcolor> </control> <control> <description>Try Me</description> <type>button</type> <id>2</id> <posX>60</posX> <posY>97</posY> <label>Try Me</label> <onleft>2</onleft> <onright>2</onright> <onup>2</onup> <ondown>3</ondown> </control> <control> <description>Or Me</description> <type>button</type> <id>3</id> <posX>60</posX> <posY>131</posY> <label>Or Me</label> <onleft>2</onleft> <onright>2</onright> <onup>2</onup> <ondown>2</ondown> </control> </controls> </window>
Plug-ins
The development of own extensions can be done in different programming languages. The main used language is C#, but any language can be used that can handle DLL files.
Exampleusing System; using System.Windows.Forms; using MediaPortal.GUI.Library; using MediaPortal.Dialogs; namespace OurPlugin { public class Class1 : GUIWindow, ISetupForm { [SkinControlAttribute(2)] protected GUIButtonControl buttonOne=null; [SkinControlAttribute(3)] protected GUIButtonControl buttonTwo=null; public Class1() { } #region ISetupForm Members // Returns the name of the plugin which is shown in the plugin menu public string PluginName() { return "MyFirstPlugin"; } // Returns the description of the plugin is shown in the plugin menu public string Description() { return "My First plugin tutorial"; } // Returns the author of the plugin which is shown in the plugin menu public string Author() { return "Frodo"; } // show the setup dialog public void ShowPlugin() { MessageBox.Show("Nothing to configure, this is just an example"); } // Indicates whether plugin can be enabled/disabled public bool CanEnable() { return true; } // Get Windows-ID public int GetWindowId() { // WindowID of windowplugin belonging to this setup // enter your own unique code return 5678; } // Indicates if plugin is enabled by default; public bool DefaultEnabled() { return true; } // indicates if a plugin has its own setup screen public bool HasSetup() { return true; } /// <summary> /// If the plugin should have its own button on the main menu of Mediaportal then it /// should return true to this method, otherwise if it should not be on home /// it should return false /// </summary> /// <param name="strButtonText">text the button should have</param> /// <param name="strButtonImage">image for the button, or empty for default</param> /// <param name="strButtonImageFocus">image for the button, or empty for default</param> /// <param name="strPictureImage">subpicture for the button or empty for none</param> /// <returns>true : plugin needs its own button on home /// false : plugin does not need its own button on home</returns> public bool GetHome(out string strButtonText, out string strButtonImage, out string strButtonImageFocus, out string strPictureImage) { strButtonText=PluginName(); strButtonImage=String.Empty; strButtonImageFocus=String.Empty; strPictureImage=String.Empty; return true; } // With GetID it will be an window-plugin / otherwise a process-plugin // Enter the id number here again public override int GetID { get { return 5678; } set { } } #endregion public override bool Init() { return Load(GUIGraphicsContext.Skin+@"\ourplugin.xml"); } protected override void OnClicked(int controlId, GUIControl control, MediaPortal.GUI.Library.Action.ActionType actionType) { if (control==buttonOne) OnButtonOne(); if (control==buttonTwo) OnButtonTwo(); base.OnClicked (controlId, control, actionType); } private void OnButtonOne() { GUIDialogOK dlg = (GUIDialogOK)GUIWindowManager.GetWindow( (int)GUIWindow.Window.WINDOW_DIALOG_OK); dlg.SetHeading("Button has been pressed"); dlg.SetLine(1, "You pressed button 1"); dlg.SetLine(2, String.Empty); dlg.SetLine(3, String.Empty); dlg.DoModal(GUIWindowManager.ActiveWindow); } private void OnButtonTwo() { GUIDialogOK dlg = (GUIDialogOK)GUIWindowManager.GetWindow( (int)GUIWindow.Window.WINDOW_DIALOG_OK); dlg.SetHeading("Button has been pressed"); dlg.SetLine(1, "You pressed button 2"); dlg.SetLine(2, String.Empty); dlg.SetLine(3, String.Empty); dlg.DoModal(GUIWindowManager.ActiveWindow); } } }
Requirements
Minimum hardware requirements
The minimum hardware requirements listed here are for standard definition resolution playback and recording with MPEG-2 video compression using a single TV-tuner. Note that multiple tuners, or MPEG-4 AVC (H.264) playback carries higher system requirements, see the separate HDTV minimum hardware requirements section below.
- 1.4 GHz Intel Pentium III (or equivalent) processor
- 256 MB (256 MiB) of System RAM
- DirectX 9.0 hardware-accelerated GPU with at least 64MB of video memory
- Graphics chips which support this and are compatible with MediaPortal:
- ATI Radeon series 9600 (or above)
- NVIDIA GeForce 6600 (or above), GeForce FX 5200 (or above) and nForce 6100 series (or above)
- Intel Extreme Graphics 2 (integrated i865G)
- Matrox Parhelia
- SiS Xabre series
- Graphics chips which support this and are compatible with MediaPortal:
- 200 MB free harddisk-drive space for the MediaPortal software
- 12 GB or more free harddisk-drive space for Hardware Encoding or Digital TV based TV cards for timeshifting purposes
HDTV minimum hardware requirements
HDTV (720p/1080i/1080p) playback/recording, and also recording from multiple tuners, and playback of MPEG-4 AVC (H.264) video, carries higher system requirements.
- 2.8 GHz Intel Pentium 4 (or equivalent) processor
- 512 MB of System RAM
- DirectX 9.0 hardware-accelerated GPU with at least 128MB of video memory
- Graphics chips which support this and are compatible with MediaPortal:
- ATI Radeon series 9600 (or above)
- NVIDIA GeForce 6600 (or above), GeForce FX 5200 (or above) and nForce 6100 series (or above)
- Intel Extreme Graphics 2 (integrated i865G)
- Matrox Parhelia
- SiS Xabre series
- XGI Volari V Series and XP Series
- Graphics chips which support this and are compatible with MediaPortal:
- 200 MB free harddisk-drive space for the MediaPortal software
- 12 GB or more free harddisk-drive space for Hardware Encoding or Digital TV based TV cards for timeshifting purposes
Operating system and software requirements
Supported operating systems
- Windows XP 32-bit Edition with Service Pack 3 or later
- Windows Media Center Edition 2005 with Update Rollup 2 or later
- Windows Vista 32 and 64-bit with Service Pack 2 or later
- Windows 7 32 and 64-bit
Software prerequisites
- Microsoft .NET Framework 3.5 SP1
- DirectX 9.0c
- Windows Media Player 11(Only required on XP SP3, Windows Vista comes with WMP11 and Windows 7 comes with WMP12 already)
See also
- Media PC
- Windows XP Media Center Edition (MCE)
- Windows Media Center Extender
- Windows Media Connect
- Windows Media Player
- XBMC Media Center - the GPL open source software that MediaPortal was originally based upon.
- Comparison of PVR software packages
- Microsoft PlaysForSure
- 2Wire MediaPortal
- List of codecs
References
- ^ Lanxon, Nate (19 November 2007). "Open-source software rated: Ten alternatives you need". CNET UK. http://crave.cnet.co.uk/software/open-source-software-rated-ten-alternatives-you-need-49294100/3/.
- ^ "Mediaportal V Media Center? Which to choose?". The Digital Lifestyle. 9 March 2009. http://thedigitallifestyle.com/csnew/tdl/b/members/archive/2009/03/09/mediaportal-v-media-center-which-to-choose.aspx.
- ^ Broida, Rick (December 20, 2006). "Download of the Day: MediaPortal (Windows)". Lifehacker. http://lifehacker.com/#!223194/download-of-the-day-mediaportal-windows.
- ^ May, Ken (20 Aug 2011). "MediaPortal hits the Radio Waves". http://kenmay.net. http://kenmay.net/reader/mediaportal-hits-the-radio-waves/.
- ^ "MediaPortal Leaves Beta - 1.0 Arrives". GeekTonic. 23 December 2008. http://www.geektonic.com/2008/12/mediaportal-leaves-beta-10-arrives.html.
- ^ "10 most prominent FLOSS projects compared". Telematics Freedom Foundation. 2008-09-18. http://www.telematicsfreedom.org/en/flossmediacenter.
- ^ "aMPdroid remote controls your MediaPortal". http://code.google.com. http://code.google.com/p/a-mp-droid/.
- ^ "An open-source MediaPortal remote control app". http://slideme.org. http://slideme.org/fr/application/ampdroid.
- ^ Cooke, Alan (1 Jan 2009). "Take MediaPortal On The Road - iPiMP". http://www.missingremote.com. http://www.missingremote.com/news/2009-01-12/take-mediaportal-road-ipimp.
- ^ "BASS showcase". http://www.un4seen.com/. http://www.un4seen.com/bass_showcase.php.
- ^ "MediaPortal OnlineVideos Plugin". http://code.google.com. http://code.google.com/p/mp-onlinevideos2/.
- ^ "OnlineVideos Sites overview". offbyone. http://87.106.7.69/OnlineVideosWebService/SiteOverview.aspx.
- ^ "MP-TVSeries: plug-in for organizing TV shows in MediaPortal". http://code.google.com. http://code.google.com/p/mptvseries/.
- ^ "Organize Your TV Shows With Mediaportal". http://www.buildadvr.com. http://www.buildadvr.com/tutorials/organize-your-tv-shows-with-mediaportal/.
External links
Home theater PC software and related devices Windows Beyond TV · GB-PVR · Meedio · MediaPortal · J. River Media Center · ShowShifter · Windows Media Center · XBMCMac OS X Linux Cross-platform Set-top boxes/
Digital media receiversApple TV · DBox2 · Dreambox · HP MediaSmart Connect · Hauppauge MediaMVP · Google TV · Netgear Digital Entertainer · Roku · TiVo · Vu+ · WD TV · Windows Media Center ExtenderRelated hardware ATI Theater Cards · Elgato EyeTV devices · Hauppauge Computer Works WinTV PVR Cards · HDHomeRun · Remote control (Touchscreen) · Mac Mini · Nvidia TV-Tuner Cards · Quiet PCSystem manufacturers Alienware · Apple Inc. · Dell · Gateway · Hewlett-Packard · Intel · Logitech · Interact-TV · Shuttle Inc. · Sony (VAIO series) · Toshiba · Velocity Micro · Zotac ·Related articles Categories:- 2004 software
- Free television software
- Digital video recorders
- Free video software
- Television technology
- Television time shifting technology
- Software forks
Wikimedia Foundation. 2010.