DVR Meets Web with an “Air Time” and a Source Channel

Total Page:16

File Type:pdf, Size:1020Kb

DVR Meets Web with an “Air Time” and a Source Channel Desktop Integrating Web Video grams and subscriptions. For content de- livered via live broadcast, it is a neces- sity. MythVideo In previous generations of MythTV, all video content that was not recorded from hardware tuners was accessible only through a separate plugin, Myth- Video [2]. MythVideo could play back almost any media type, but the integra- tion it provided with the rest of the sys- tem was poor. It used a separate storage directory and a separate database table, and it was buried in a separate part of the menu structure – as was its comple- ment of settings and preferences. It even used a different interface for navigating between videos, more akin to a simple filesystem browser than MythTV’s user- friendly Recordings screen. If you ©Todd Arena, 123RF.com Arena, ©Todd wanted to associate metadata with your files (i.e., “cover” images, dates, or syn- opses), you had to add that for each in- dividual file. That said, one good thing that Myth- Video brought to the party was support for any and every media type: It didn’t matter where the video came from, how it got to your computer, or whether it Integrate web video with MythTV was from a series, a standalone work, or even something you shot with your phone. MythTV’s Recordings interface is built around items that can be associated DVR meets web with an “air time” and a source channel. As I’ll describe, several of the web video With MythTV and a couple of plugins, you can merge Internet-delivered solutions find ways to cope with that set of constraints, with varying degrees of video right into your DVR playlist. BY NATHAN WILLIS success. Besides handling the lack of a “chan- nel” for web video, the list of require- eb-delivered video has come a with your MythTV system. With some ments for web video integration should long way in a few short years plugins and helper applications, you can probably include merging the new con- W– and I don’t mean user-devel- merge Internet-delivered video right into tent into the same media browser as oped, self-published content, either. your playlist, regardless of whether you your television recordings as much as Major television networks now offer a receive it via a BitTorrent, RSS, or Atom possible, so you can sort through all of substantial portion of their programming feed. your video in one place, search it, and online, enough that it can supplement To be fair, I should note that some even delete it when you’re done. Al- the traditional broadcast media (cable, Linux “media center” applications make though the ability to add or subscribe to over-the-air, and satellite). But, although web video a priority, like XBMC and new content from within MythTV would these content sources are effectively Boxee. If most of the programming you be nice, it is not absolutely essential. video-on-demand, they typically are not need to watch is available through feeds available in a way that lets you easily in- or websites, you might find it easier to MiroBridge tegrate them into a broadcast-centric install one of these applications and run Next, I’ll look at the most predictable of DVR system, like MythTV [1]. merrily along. For the average user, how- all video sources – those that come As always, though, the open source ever, no other open source media center through a standard RSS or Atom feed. community comes to the rescue. I’ll take application offers MythTV’s robust sup- This list includes video podcasts and a look at the different ways you can port for delivering live TV, scheduling re- quite a few Internet-only programs, but seamlessly merge online video sources cordings, and managing recurring pro- not just indie productions or niche top- 72 ISSUE 09 UBUNTU USER WWW.UBUNTU-USER.COM 072-076_webvideo.indd 72 4/26/11 12:11:36 PM Integrating Web Video Desktop ics. Some popular outlets, like The but you should Onion, make a standard feed-based understand what video source available. These feeds are a they do. To begin, big win for MythTV users because they configure Myth- serve up the same content regardless of TV’s storage di- the application used. The broadcaster rectories for might be targeting iPad owners, but the graphics. In the standardized delivery mechanism makes MythTV front that assumption irrelevant. end, open Utili- Currently, the nicest option for feed ties/ Setup | Setup sources is a plugin named MiroBridge | Media Settings | [3]. MiroBridge uses the cross-platform Video Settings | video podcast client Miro [4] to manage General Settings. feeds and download videos in the back- You can choose ground, but it also implements a “virtual directories for recording device” to MythTV. The core movie posters, functionality comes in a Python script screenshots, ban- Figure 1: Mythbuntu’s MiroBridge setup tool simplifies the named mirobridge.py that quietly runs ners, and fan art. installation and configuration process. the Miro app to check your subscribed Whichever direc- feeds for new content in a background tories you choose, make sure they will By default, MiroBridge assigns the vir- process, downloads any new videos also be accessible to Miro. tual Miro Channel to channel number available, then shuts down Miro and in- Next, you will want a “Miro Channel” 999. If you have a real channel 999 in serts the new videos into MythTV. The icon – Mythbuntu Control Centre installs your lineup, you can change this setting result is that subscribed videos appear in one for you automatically, but you can with the mirobridge.py script. To assign the Watch Recordings list alongside nor- also grab it from the MiroBridge site and Miro to channel 12345, run: mal television recordings, complete with save it somewhere on your MythTV back the appropriate program and episode end. If you use channel icons for your /usr/share/mythtv/contrib/imports/U names. They are marked as originating other channels, the easiest solution is to mirobridge/mirobridge.py -c 9999:12345 on the Miro Channel, which, of course, save the Miro icon in the same directory. does not appear as a live TV source. Then, run the MiroBridge script from a In this example, the 9999: corresponds Many MythTV distributions (including command prompt, passing it the loca- to the internal XML channel ID, which Mythbuntu) now package MiroBridge as tion of the icon with the -C flag. For ex- you probably do not want to mess with, a standard option (Figure 1). Mythbuntu ample: but the -c flag requires it. even provides a configuration tool in its Now, you can launch Miro and find Mythbuntu Control Centre, but if you in- /usr/share/mythtv/contrib/imports/U some feeds. You can browse the Miro stalled your own MythTV package or mirobridge/mirobridge.py U project’s Miro Guide directory, which is don’t use Mythbuntu for other reasons, -C /home/nate/icons/U filled with popular and recommended don’t worry. Most of the effort involves miro_channel_icon.png sources, and subscribe to those you configuring Miro’s storage and feed pref- want to record regularly (Figure 2). Be erences to be compatible with MythTV’s Because the path to mirobridge.py might sure to remove any unwanted feeds that expectations. vary a bit depending on your distro, run come pre-selected in the app’s Video At the time of writing, the current re- locate mirobridge.py to find yours. Feeds list, though – it can be overkill. lease requires MythTV version 0.22+fixes or later, but you should check the project’s homepage before proceeding. You will need to install Miro itself on your MythTV back end (remem- ber, Miro acts as a recording device, so it must be accessible to the back end). Any recent version should suffice. Also, you will need Python 2.5 or greater, Im- ageMagick, FFmpeg, and the pyparsing Python library. All of these components should be available through the package manager. Next, I’ll walk through the setup pro- cess. Mythbuntu Control Centre abbrevi- ates several of the steps into a series of buttons and drop-down selection menus, Figure 2: Subscribing to video feeds in the Miro application. WWW.UBUNTU-USER.COM UBUNTU USER ISSUE 09 73 072-076_webvideo.indd 73 4/26/11 12:11:36 PM Desktop Integrating Web Video When you’re finished adding and re- The following daily cron slot: MythMediaMonitor to watch a Down- moving subscriptions, right-click on any loads directory and, if your BitTorrent that include non-alphabetic characters or 45 02 * * * /usr/share/mythtv/U client supports moving completed files have a very long feed name; then, choose contrib/imports/mirobridge/U to it, your completed downloads will au- Rename. You want to rename these feeds mirobridge.py U tomatically appear in your MythTV Re- to a shorter title without extra parenthe- -V "/tmp/mirobridge.log" 2>&1 cordings list. ses or punctuation marks, because they Also, if you own a movie or a series on can confuse MythTV’s media browser. will run the mirobridge.py script at DVD and want to rip the video into When you are done, quit Miro. 2:45am every day, logging the output to MythTV for easy viewing, you can have You also get to select how MiroBridge /tmp/mirobridge.log. MythMediaMonitor watch that directory treats videos. The default is to keep un- MiroBridge is a bit of a hassle to set as well. Certainly some people will pre- watched videos in the Recordings group up, certainly, but a large part of that fer the separate “archival” features of and move watched videos into Myth- stems from its reliance on an external MythVideo for that sort of long-term Video (hence the need to set MythVideo application (Miro itself).
Recommended publications
  • I Want My Mythtv
    I want my MythTV Tim Fenn [email protected] What are DVRs? ● Digital Video Recorders - digital devices used to schedule/record television programs ● typically include features like fast forward, rewind, pause recorded and ªliveº TV ● standalone service - e.g. TiVo, Replay TV ● integrated service ± e.g. Comcast How does MythTV compare? ● Free and open source ● for users, by users ● Runs under Linux and (frontend only) MacOSX ● SQL backbone ● client/server architecture (think: one box for inputs/recording, any other number of boxes for viewing) ● nobody cares what you do with it or how you use it (10 capture cards? Sure! Can I control my lights and ceiling fans using the same box? OK! Watch/burn/rip DVDs? DeCSS, hah!) ● Con: requires know-how of hardware and (primarily Linux) software So what is MythTV capable of? Example screenshots... Example screenshots... Example screenshots... Example screenshots... Example screenshots... Example screenshots... Required Hardware (backend) ● TV capture card: – Hauppauge PVR cards (150/250/350/500) are very popular (encoding done in hardware) ($70-200)1 ● well supported in linux (Chris Kennedy, Tyler Trafford, John Harvey et al. and some actual vendor support on register settings)2 – older bttv (bt848/bt878) chipsets (WinTV-Go, etc, etc...) – Plextor ConvertX PX-TV402U (USB 2.0 device) ● fully open sourced SDK (and gave free stuff to Isaac Richards)3 1. http://www.hauppauge.com 2. http://www.ivtv.tv 3. http://www.plextor.com/english/support/LinuxSDK.htm Required Hardware (backend) ● currently supported HDTV cards require encoding in software (computationally demanding, requires a P4 and ~9gig/hr of media) – very tricky for several reasons: OTA/QAM/resolution/DVB vs.
    [Show full text]
  • Dockerdocker
    X86 Exagear Emulation • Android Gaming • Meta Package Installation Year Two Issue #14 Feb 2015 ODROIDMagazine DockerDocker OS Spotlight: Deploying ready-to-use Ubuntu Studio containers for running complex system environments • Interfacing ODROID-C1 with 16 Channel Relay Play with the Weather Board • ODROID-C1 Minimal Install • Device Configuration for Android Development • Remote Desktop using Guacamole What we stand for. We strive to symbolize the edge of technology, future, youth, humanity, and engineering. Our philosophy is based on Developers. And our efforts to keep close relationships with developers around the world. For that, you can always count on having the quality and sophistication that is the hallmark of our products. Simple, modern and distinctive. So you can have the best to accomplish everything you can dream of. We are now shipping the ODROID U3 devices to EU countries! Come and visit our online store to shop! Address: Max-Pollin-Straße 1 85104 Pförring Germany Telephone & Fax phone : +49 (0) 8403 / 920-920 email : [email protected] Our ODROID products can be found at http://bit.ly/1tXPXwe EDITORIAL ow that ODROID Magazine is in its second year, we’ve ex- panded into several social networks in order to make it Neasier for you to ask questions, suggest topics, send article submissions, and be notified whenever the latest issue has been posted. Check out our Google+ page at http://bit.ly/1D7ds9u, our Reddit forum at http://bit. ly/1DyClsP, and our Hardkernel subforum at http://bit.ly/1E66Tm6. If you’ve been following the recent Docker trends, you’ll be excited to find out about some of the pre-built Docker images available for the ODROID, detailed in the second part of our Docker series that began last month.
    [Show full text]
  • Antix Xfce Recommended Specs
    Antix Xfce Recommended Specs Upbeat Leigh still disburden: twill and worthful Todd idolatrizes quite deuced but immobilizing her rabato attitudinizedcogently. Which her Kingstonfranc so centennially plasticizes so that pratingly Odin flashes that Oscar very assimilatesanticlockwise. her Algonquin? Denatured Pascale Menu is placed at the bottom of paperwork left panel and is difficult to browse. But i use out penetration testing machines as a lightweight linux distributions with the initial icons. Hence, and go with soft lower score in warmth of aesthetics. Linux on dedoimedo had the installation of useful alternative antix xfce recommended specs as this? Any recommendations from different pinboard question: the unique focus styles in antix xfce recommended specs of. Not recommended for! Colorful background round landscape scenes do we exist will this lightweight Linux distro. Dvd or gui, and specs as both are retired so, and a minimal resources? Please confirm your research because of recommended to name the xfce desktop file explorer will change the far right click to everything you could give you enjoy your linux live lite can see our antix xfce recommended specs and. It being uploaded file would not recommended to open multiple windows right people won, antix xfce recommended specs and specs and interested in! Based on the Debian stable, MX Linux has topped the distrowatch. Dedoimedo a usb. If you can be installed on this i have downloaded iso image, antix xfce recommended specs and specs as long way more adding ppas to setup further, it ever since. The xfce as a plain, antix can get some other than the inclusion, and specs to try the.
    [Show full text]
  • I Know What You Streamed Last Night: on the Security and Privacy of Streaming
    Digital Investigation xxx (2018) 1e12 Contents lists available at ScienceDirect Digital Investigation journal homepage: www.elsevier.com/locate/diin DFRWS 2018 Europe d Proceedings of the Fifth Annual DFRWS Europe I know what you streamed last night: On the security and privacy of streaming * Alexios Nikas a, Efthimios Alepis b, Constantinos Patsakis b, a University College London, Gower Street, WC1E 6BT, London, UK b Department of Informatics, University of Piraeus, 80 Karaoli & Dimitriou Str, 18534 Piraeus, Greece article info abstract Article history: Streaming media are currently conquering traditional multimedia by means of services like Netflix, Received 3 January 2018 Amazon Prime and Hulu which provide to millions of users worldwide with paid subscriptions in order Received in revised form to watch the desired content on-demand. Simultaneously, numerous applications and services infringing 15 February 2018 this content by sharing it for free have emerged. The latter has given ground to a new market based on Accepted 12 March 2018 illegal downloads which monetizes from ads and custom hardware, often aggregating peers to maximize Available online xxx multimedia content sharing. Regardless of the ethical and legal issues involved, the users of such streaming services are millions and they are severely exposed to various threats, mainly due to poor Keywords: fi Security hardware and software con gurations. Recent attacks have also shown that they may, in turn, endanger Privacy others as well. This work details these threats and presents new attacks on these systems as well as Streaming forensic evidence that can be collected in specific cases. Malware © 2018 Elsevier Ltd. All rights reserved.
    [Show full text]
  • NETFLIX SOCIAL **Fictional Project
    NETFLIX SOCIAL **fictional project The Client The Task Netflix is looking to significantly increase • Understand how people find & share social activity and share on their mobile movies & TV shows apps between users. They would like to • Determine key features to be start with an MVP that can implement these implemented features, and integrate with their current • Design key screens using the look & feel app. of the current Netflix app. NETFLIX SOCIAL TV and Movies Survey - Google Drive Notebook: General Assembly Created: January 9, 2014 at 3:20:48 PM Ideation Updated: January 9, 2014 at 3:20:48 PM Tags: project 3 URL: https://docs.google.com/forms/d/11gDCvWTR0YFQxbwUHG82dPZxWiQlIsFCOWmeFU52v2c/viewanalyticsSurvey Summary Do you watch TV or movies online? Yes 92 99% No 1 1% Survey Which services do you use to watch movies and TV shows online? User Interviews Netflix 81 24% Hulu 47 14% Youtube 47 14% Amazon Prime Instant Video 33 10% Slingbox 5 1% Google Play 4 1% Network websites or apps (ABC, CBS, NBC, Fox) 29 9% HBO Go 39 12% SideReel 10 3% Online on-demand service via cable TV provider (AT&T U-Verse, Cox, Dish, Optimum, Verizon FiOS, etc) 20 6% Other 22 7% Which devices do you use to watch TV and movies online? Laptop 79 34% Desktop 23 10% Phone 22 9% Tablet 42 18% Game console (XBox, Playstation, etc.) 34 14% Apple TV / Roku / Boxee / Chromecast / Other set top box 29 12% Other 6 3% Where are you when you watch TV and movies online? At home 92 76% At work 9 7% In public 6 5% In transit 9 7% Other 5 4% How many hours a week do you
    [Show full text]
  • Private Enterprise in American Education
    Private Enterprise in American Education A MERICAN E NTERPRISE I NSTITUTE Special Report 7 Focus on For-Profits in K–12 Education Misses the Real Divide Alex Hernandez | November 2012 Special Report 7 Private Enterprise in American Education Foreword For decades, for-profit educational provision has been merely tolerated, often grudgingly. In the world of charter schooling, for-profit providers are lambasted and sometimes prohibited. In higher education, for- profit institutions have grown rapidly, enrolling millions of nontraditional students and earning enmity, suspicion, and now investigative and regulatory actions from the federal government. When it comes to student lending, teacher quality, and school turnarounds, there is a profound preference for nonprofit or public alternatives. All of this is so familiar as to be unremarkable. The problem is that K–12 and higher education are desperately in need of the innovative thinking and nimble adaptation that for-profits can provide in a landscape characterized by healthy markets and well-designed incentives. As critics have noted, for-profits do indeed have incentives to cut corners, aggres- sively pursue customers, and seek profits. But these traits are the flip side of valuable characteristics: the inclination to grow rapidly, readily tap capital and talent, maximize cost effectiveness, and accommodate customer needs. Alongside nonprofit and public providers, for-profits have a crucial role to play in meeting America’s 21st-century educational challenges cost-effectively and at scale. However, we rarely address for-profit provision in this fashion. Most statutory and regulatory discus- sion focuses on how to rein in for-profit providers, largely ignoring what it would take to harness the potential of such providers while establishing the incentives and accountability measures to ensure a level, dynamic, and performance-oriented playing field.
    [Show full text]
  • 1.3 Energy Consumption
    JAIST Repository https://dspace.jaist.ac.jp/ Comparative analysis of overall energy Title consumption of storage architectures in home media players Author(s) ウィ, クリスティアント Citation Issue Date 2011-09 Type Thesis or Dissertation Text version author URL http://hdl.handle.net/10119/9928 Rights Supervisor: Associate Professor Xavier Defago, 情 Description 報科学研究科, 修士 Japan Advanced Institute of Science and Technology Comparative analysis of overall energy consumption of storage architectures in home media players By Christianto Oeij A thesis submitted to School of Information Science, Japan Advanced Institute of Science and Technology, in partial fulfillment of the requirements for the degree of Master of Information Science Graduate Program in Information Science Written under the direction of Associate Professor Xavier D´efago September, 2011 Comparative analysis of overall energy consumption of storage architectures in home media players By Christianto Oeij (9210202) A thesis submitted to School of Information Science, Japan Advanced Institute of Science and Technology, in partial fulfillment of the requirements for the degree of Master of Information Science Graduate Program in Information Science Written under the direction of Associate Professor Xavier D´efago and approved by Associate Professor Xavier D´efago Professor Mizuhito Ogawa Associate Professor Kiyofumi Tanaka August, 2011 (Submitted) Copyright c 2011 by Christianto Oeij Abstract In home entertainment, reducing energy is highly desirable. Our motivations stem from the important factors like the running cost, noise, heat, and energy consumption from the storage as the main component of it. Home theater PC is a good choice of home entertainment since it can provide high quality video output and be affordable in term of cost.
    [Show full text]
  • Digital Media: Rise of On-Demand Content 2 Contents
    Digital Media: Rise of On-demand Content www.deloitte.com/in 2 Contents Foreword 04 Global Trends: Transition to On-Demand Content 05 Digital Media Landscape in India 08 On-demand Ecosystem in India 13 Prevalent On-Demand Content Monetization Models 15 On-Demand Content: Music Streaming 20 On-Demand Content: Video Streaming 28 Conclusion 34 Acknowledgements 35 References 36 3 Foreword Welcome to the Deloitte’s point of view about the rise key industry trends and developments in key sub-sectors. of On-demand Content consumption through digital In some cases, we seek to identify the drivers behind platforms in India. major inflection points and milestones while in others Deloitte’s aim with this point of view is to catalyze our intent is to explain fundamental challenges and discussions around significant developments that may roadblocks that might need due consideration. We also require companies or governments to respond. Deloitte aim to cover the different monetization methods that provides a view on what may happen, what could likely the players are experimenting with in the evolving Indian occur as a consequence, and the likely implications for digital content market in order to come up with the various types of ecosystem players. most optimal operating model. This publication is inspired by the huge opportunity Arguably, the bigger challenge in identification of the Hemant Joshi presented by on-demand content, especially digital future milestones about this evolving industry and audio and video in India. Our objective with this report ecosystem is not about forecasting what technologies is to analyze the key market trends in past, and expected or services will emerge or be enhanced, but in how they developments in the near to long-term future which will be adopted.
    [Show full text]
  • Debian \ Amber \ Arco-Debian \ Arc-Live \ Aslinux \ Beatrix
    Debian \ Amber \ Arco-Debian \ Arc-Live \ ASLinux \ BeatriX \ BlackRhino \ BlankON \ Bluewall \ BOSS \ Canaima \ Clonezilla Live \ Conducit \ Corel \ Xandros \ DeadCD \ Olive \ DeMuDi \ \ 64Studio (64 Studio) \ DoudouLinux \ DRBL \ Elive \ Epidemic \ Estrella Roja \ Euronode \ GALPon MiniNo \ Gibraltar \ GNUGuitarINUX \ gnuLiNex \ \ Lihuen \ grml \ Guadalinex \ Impi \ Inquisitor \ Linux Mint Debian \ LliureX \ K-DEMar \ kademar \ Knoppix \ \ B2D \ \ Bioknoppix \ \ Damn Small Linux \ \ \ Hikarunix \ \ \ DSL-N \ \ \ Damn Vulnerable Linux \ \ Danix \ \ Feather \ \ INSERT \ \ Joatha \ \ Kaella \ \ Kanotix \ \ \ Auditor Security Linux \ \ \ Backtrack \ \ \ Parsix \ \ Kurumin \ \ \ Dizinha \ \ \ \ NeoDizinha \ \ \ \ Patinho Faminto \ \ \ Kalango \ \ \ Poseidon \ \ MAX \ \ Medialinux \ \ Mediainlinux \ \ ArtistX \ \ Morphix \ \ \ Aquamorph \ \ \ Dreamlinux \ \ \ Hiwix \ \ \ Hiweed \ \ \ \ Deepin \ \ \ ZoneCD \ \ Musix \ \ ParallelKnoppix \ \ Quantian \ \ Shabdix \ \ Symphony OS \ \ Whoppix \ \ WHAX \ LEAF \ Libranet \ Librassoc \ Lindows \ Linspire \ \ Freespire \ Liquid Lemur \ Matriux \ MEPIS \ SimplyMEPIS \ \ antiX \ \ \ Swift \ Metamorphose \ miniwoody \ Bonzai \ MoLinux \ \ Tirwal \ NepaLinux \ Nova \ Omoikane (Arma) \ OpenMediaVault \ OS2005 \ Maemo \ Meego Harmattan \ PelicanHPC \ Progeny \ Progress \ Proxmox \ PureOS \ Red Ribbon \ Resulinux \ Rxart \ SalineOS \ Semplice \ sidux \ aptosid \ \ siduction \ Skolelinux \ Snowlinux \ srvRX live \ Storm \ Tails \ ThinClientOS \ Trisquel \ Tuquito \ Ubuntu \ \ A/V \ \ AV \ \ Airinux \ \ Arabian
    [Show full text]
  • Betreutes Fernsehen Bitparade
    08/2016 Myth-TV, Kodi, Plex, OSMC und DVB-Link im Test Software Betreutes Fernsehen Bitparade 46 Fernsehsendungen sehen und aufzeichnen, HD-Videos streamen, Musik hören, Bilder betrachten und noch einige Tricks mehr versprechen freie und kommerzielle Mediacenter-Programme für Linux-PCs, aber auch für den Raspberry Pi. Die Bitparade holt sich fünf Kandidaten ins heimische Wohnzimmer. Erik Bärwaldt www.linux-magazin.de Auge gefasste Gerät mitbringt. Als erste Anlaufstelle hierbei dient das Wiki des Linux-TV-Projekts [6], das über eine um- fangreiche Hardwaredatenbank verfügt. Die enthält auch wertvolle Installations- hinweise, da der User mancherorts für DVB- und Analog-TV-Komponenten noch proprietäre Firmware in das Mediacenter integrieren muss. Ein weiterer Stolperstein taucht auf, möchte der User auf einem bereits be- stehenden Linux-System manuell Media- center-Applikationen nachinstallieren. Da die Multimedia-Software meist als Client- Server-Applikation arbeitet, zieht Linux häufig noch die üblichen Verdächtigen hinterher, etwa Apaches Webserver, PHP 7 oder das MySQL-Datenbank-Back end. Hierbei treten unter Umständen Probleme auf, die unerfahrene Anwender überfor- © leeavison, 123RF © leeavison, dern und erfahrene nerven. Beiden Gruppen sei geraten, zu dedizier- Computertechnik und Unterhaltungs- stellt sich für den Interessenten erst ein- ten Mediacenter-Distributionen zu grei- elektronik wachsen immer weiter zusam- mal die Frage, welches Mediacenter sich fen. Die stimmen die einzelnen Kom- men. So nimmt es nicht Wunder, dass es für ihn eignet. Um die Qual der Wahl ab- ponenten optimal aufeinander ab und neben den herkömmlichen multimedialen zukürzen, vergleicht das Linux-Magazin konfigurieren sie vor. Speziell angepasste Computerprogrammen inzwischen ganze mit Myth-TV [1], Kodi [2], Plex Media- Installationsroutinen integrieren oft auch Softwaresuiten gibt, die den Computer im server [3], OSMC [4] und DVB-Link [5] gleich die Netzwerkdienste ins System.
    [Show full text]
  • NAS 131 Introduction to Boxee
    NAS 131 Introduction to Boxee Turn your NAS into a multimedia player with Boxee ASUSTOR COLLEGE NAS 131: Introduction to Boxee COURSE OBJECTIVES Upon completion of this course you should be able to: 1. Install and use Boxee on an ASUSTOR NAS using a USB keyboard, mouse or mobile device. PREREQUISITES Course Prerequisites: None Students are expected to have a working knowledge of: N/A OUTLINE 1. Introduction to Boxee 1.1 Introduction to Boxee 2. Installing and Using Boxee 2.1 Installing Boxee 2.2 Connecting your NAS to an HDMI compatible display 2.3 Using Boxee with a USB mouse or keyboard 2.4 Using Boxee with AiRemote ASUSTOR COLLEGE / 2 NAS 131: Introduction to Boxee 1. Introduction to Boxee 1.1 Introduction to Boxee Boxee is one of the numerous Apps that can be found in App Central and can turn your ASUSTOR NAS into a multimedia player. After installing Boxee and connecting your NAS to an HDMI compatible display or TV you will be able to play all the multimedia content stored on your NAS including video, audio and images. In addition to using a USB mouse or keyboard to operate Boxee, you can also use your mobile device as a remote control for Boxee by installing the AiRemote mobile App. AiRemote is available for both Android and iOS and can be downloaded from Google Play or the Apple App Store. Furthermore, you are also free to use a Boxee or XBMC compatible third party App for remote control as well. Note: In order to use Boxee you must have an HDMI compatible TV or display.
    [Show full text]
  • 132093859.Pdf
    MediaPortal Mais: LinuxMCE em detalhes O Media Portal é um programa gratuito, desenvolvido WINDOWS MEDIA CENTER como Software Livre, e uma opção para quem quer montar um Media Center sem abandonar o Windows XP. Originalmente uma versão especializada do Windows, o Mais: MediaPortal em detalhes Windows Media Center agora é parte das edições Home Premium e Ultimate do Windows Vista. Não é necessário MythTV instalar ou configurar nada separadamente, o programa é instalado junto com o sistema operacional e pode ser O MythTV é o sistema media center baseado em Linux acessado via ícone no menu Iniciar. mais popular no mercado, e usá-lo como base para seu media center tem algumas vantagens. A principal, e mais O Windows Media Center oferece tudo o que você pode óbvia delas, é o preço. Uma licença do Windows Vista precisar em um media center básico, inclusive opções de Home Premium, que já inclui o Windows Media Center, gravação e reprodução de TV ao vivo. custa perto de R$ 500. Já uma cópia da versão mais recente do Fedora ou Ubuntu mais o MythTV custa zero: Com hardware extra, você pode fazer o computador ambos podem ser baixados gratuitamente da Internet. simular um controle remoto para comandar o decodificador de TV a cabo e agendar gravações sem Mais: MythTV em detalhes falhas mesmo estando fora de casa. A programação deste recurso é meio maçante: a maioria dos decodificadores de LinuxMCE TV a cabo no mercado nacional não consta na lista do Windows Media Center, e você terá de fazer a Este novato no mundo dos Media Centers também roda programação manual, apertando cada botão do controle sobre o Linux, mais especificamente sobre o Kubuntu, remoto várias vezes até o micro aprender os comandos.
    [Show full text]