Opencable APPLICATION PLATFORM – STATUS and ROADMAP Allen R

Total Page:16

File Type:pdf, Size:1020Kb

Opencable APPLICATION PLATFORM – STATUS and ROADMAP Allen R OpenCable APPLICATION PLATFORM – STATUS AND ROADMAP Allen R. Schmitt-Gordon, Ph.D. Frank Sandoval Cable Television Laboratories, Inc. ABSTRACT operators to provide the next generation digital device, encourage supplier The OpenCable Application Platform competition, and create a retail hardware (OCAPTM) is a software middleware layer that platform. A cable receiver provided at retail resides functionally on top of the operating must provide portability of content and system of an OpenCableTM terminal. It applications across networks and platforms, provides an interface and enables application and be geared towards the full range of portability. A fundamental requirement is interactive services. Current devices are that applications written for OCAP be network specific and operate proprietary capable of running on any OpenCable software that is not portable across platforms hardware, without recompilation. or networks. With OCAP, applications are written to a middleware API so that a single Two profiles of OCAP have been identified. application can be deployed on any OCAP 1.0 is a minimal platform that supports OpenCable host device. Such applications procedural applications with an Execution might include: Engine (EE). OCAP 2.0 is a super set of OCAP 1.0, and includes support for • Electronic Program Guide (EPG) declarative content with the inclusion of a • Impulse Pay Per View (IPPV) Presentation Engine (PE), that supports • Video On Demand (VOD) HTML, XML, ECMAScript, and a bridge • Interactive sports, game shows between the PE and the EE. The bridge • E-mail, Chat, Instant messaging enables PE applications to obtain privileges • Games and directly perform EE operations. • Web Browser: Shopping, Home banking • Personal Video Recorder (PVR) OCAP 1.0 has been publically released, OCAP 2.0 is scheduled for around 1Q02. OCAP provides applications an abstracted CableLabs plans to draft a family of OCAP view of the receiver and network, hiding specifications, each being backward vendor and network specific characteristics compatible and defining different feature sets. that would tie an application to a given system. OCAP is operating system and The OCAP specifications are based upon the hardware agnostic, so that applications can be DVB MHP specifications with modifications run on a variety of CPUs and operating for the North American Cable environment systems. The OCAP middleware also that includes a full time return channel. simplifies content development by OCAP 1.0 corresponds to MHP 1.0.2, and encapsulating common operations within the OCAP 2.0 will correspond to MHP 1.1. API. Another essential requirement is that the middleware be secure and robust. Stability in the cable terminal or receiver is imperative as INTRODUCTION resets are not acceptible. OCAP is part of a concerted effort, called OpenCable, by North American cable Background material to identify differences and extensions. The OCAP specifications include Application Programming Interfaces (API) as well as OCAP Roadmap definitions regarding platform behaviors. The APIs define the syntax of the platform, while Rationale for Middleware normative text define semantic guarantees. The current software model used by the cable The architecture of the OCAP 2.0 middleware industry is similar to the more general pattern comprises two parts: a Presentation Engine in which applications are developed for a (PE) and an Execution Engine (EE). The PE specific operating system (OS) and compilied is generally composed of an HTML engine for a specific device. This model does not and ECMAScript. The EE includes a Java lend itself to application portability where a virtual machine. This architecture is shown in variety of devices can be attached to several Figure Figure 1. It shows that native different network infrastructures. Currently, applications are supported as well as applications such as EPG, VOD, mail, etc. are applications written to the middleware via the compiled to the application programming OCAP interface. interface determined by the operating system and associated hardware. In order to expedite development of the OCAP specifications, it was necessary to By providing a middleware layer that utilize existing standards and architectures as abstracts the functionality of the OS, hardware much as possible. device and network interfaces, applications can be written that will run on any conformant A key decision was to base the OCAP EE on platform. Java was chosen in order to avoid standard Java APIs. In particular, the OCAP recompilation of source code as would be the EE comprises pertinent portions of Sun’s Java case with languages such as C or C++. Virtual Machine (JVM) and JavaTV API specifications. The Sun technology is OCAP 1.0 licensed by CableLabs and is available to all implementers of OCAP royalty-free. The primary architectural component of CableLabs will also incorporate the Sun OCAP 1.0 is the Execution Engine (EE). It is Technology Compatibility Kit as part of the composed of a Java Virtual Machine and a set OCAP compliance test suite. of Java packages. Application portability is achieved through the “write once, run Another key decision was to adopt the DVB anywhere” nature of Java. Java source code is project’s Multimedia Home Platform (MHP) compiled into bytecode, and the JVM specification. The DVB Project is a European interprets the bytecode in real time on the consortium of manufacturers, content target machine. Once the JVM is ported to a developers, broadcasters, governmental target machine, any EE application will run. agencies, and system operators. MHP is The Java packages that comprise the EE designed to apply to a wide set of networks include basic support functionality from Sun, and devices, including cable networks. such as net, io, util, and lang packages, and CableLab’s recognized that DVB was trying JavaTV and Java Media Framework. The EE to solve a similar set of problems. OCAP 1.0 also includes Java APIs identified in DAVIC, is a delta from MHP 1.0.2, that is, the OCAP HAVi, and MHP 1.0.2. In addition, there are 1.0 document identifies conformance with OCAP specific APIs. MHP 1.0.2 section by section, and includes This collection of APIs allows access to OCAP 2.0 system resources, such as the cable tuner and input events, and access to network resources, OCAP 2.0 refers to OCAP 1.0 for core such as System Information, in-band and out- functionality and adds features found in MHP of-band resources, and IP flows. 1.1. A Presentation Engine and Bridge are included to support so-called declarative Because of the interpreted nature of Java, applications. The PE renders content such as application security is easily maintained. graphics, text, animations and audio based on Applications by default are given limited formatting rules in the PE itself and access to system resources. An application formatting instructions contained in markup can gain extended access by requesting language. The PE enables the use of tools that resources via a permissions file, and by being have been widely used for internet content. authenticated by the operator. OCAP 2.0 primary components consist of OCAP 1.0 specific APIs have been designed XHTML 4, XML 1.0, CSS 2, DOM 2, and to address the business requirements of the ECMAScript. cable industry. Unbound applications can exist outside of the context of a given service, In order to extend the functionality of the PE or channel. Also, an optional monitor without adding the burden of requiring application can be created by the system extensive plugins, a bridge is defined between operator. The monitor application allows to the two environments. The bridge allows PE operator to control the execution lifecycle of applications, through ECMAScript calls, to other applications, and perform some simple access functionality defined in the EE. resource management functions, in order to Conversely, EE applications, through the prevent harm to the cable network. DOM interface, can interact with concurrently running PE applications. Native MSO Monitor Baseline All Other Application Application Applications Applications representation OCAP Application Programming Interface Native Application Environment Resource Application JVM JNI Management Manager Execution Engine Network Protocol Operating System and Device Drivers Ocap Host Device Hardware Figure 1 - OCAP 1.0 Software Architecture For example, as part of the EE that is file I/O, graphics, etc. The OCAP EE accessible via the bridge, JavaTV offers a provides a full TV application environment. common point of control and management of OCAP specific extensions have been added various system resources, includeing tuning. to MHP to cover elements such as a full time Thus, a PE application will access device return channel, application management, resources through the bridge. This ensures resource contention mangement, and service that device resource contention is managed information. through a common control point for a PE and EE application that may be vying for the Major elements of the EE include control of same resources. application management through the pJava APIs, service information and selection Execution Engine through the JavaTV API's, media control through the JMF, and broadcast data through The EE provides a general application the MHP DSMCC APIs. Native applications programming evironment for networking, are supported by creating an OCAP application that calls into native code via the • Validation of the starting of all Java Native Interface (JNI). In addition, the applications through the setting of EE provides network management and IP application filters. data access and extensions from HAVI, • Registration of system errors that are DAVIC and DASE. propagated from the OS middleware, and/or OCAP 1.0 implementation, A fundamental feature of the EE utilizing including OCAP applications. Java is that security is built into the • Request system reboot, and regitration of architecture from the ground up. system reboot event. • Control of copy protection bits and The components of the EE, some of which output resolution using the are shown in Figure 1, are described in detail org.ocap.application.CopyControl in the OCAP 1.0 specification.
Recommended publications
  • Digital Cable Television in the United States
    シャープ技報 第78号・2000年12月 Digital Cable Television in the United States 米 国 の デジタルケーブルテレビ事 情 Craig K. Tanner* Abstract とってもその新技術を使った新しいビジネスにとって も,テレビを変えるものと期待されている。本稿では Digital television services have been rapidly deployed in 前述の新しいディジタル革新期を迎えるにあたって, the U.S.A. since the first direct-to-home satellite systems 重要になると思われる技術/ビジネス/規格の立場か were deployed in mid-1994. By the end of 2000, there will ら見た要点を解説する。また,シャープ米国研究所 be more than fourteen million digital DBS subscribers, (Sharp Laboratories of America)が果たすべき重要な技 more than 160 digital terrestrial TV stations on the air, and 術要件についても解説していく。 more than nine million digital cable subscribers. Despite this rapid rollout, the U.S. is still in its first phase of digital television deployment. In this introductory phase, digital Introduction technology has been focused primarily on providing more channels, higher picture and sound quality, and electronic During the past six years, digital television technology program guides. In 2001, a new phase begins in earnest. has been rapidly deployed in the United States. By the end Digital cable systems, in particular, will be used to provide of 2000, the direct broadcast satellite industry will serve true interactive features that will transform television, both more than 14 million of the 100 million U.S. TV for its viewers and for the businesses that pioneer these households. Digital cable will be in more than 9 million new capabilities. This article reviews some of the key homes. Terrestrial digital television receivers will be in an technical, business and regulatory factors that will be estimated 114,000 homes by year-end 2000, with more important in this new phase, and also highlights some of than 158 digital stations on the air.
    [Show full text]
  • Opencable™ Specifications Opencable Unidirectional Receiver
    OpenCable™ Specifications OpenCable Unidirectional Receiver OC-SP-OCUR-I10-100910 ISSUED Notice This OpenCable specification is a cooperative effort undertaken at the direction of Cable Television Laboratories, Inc. (CableLabs®) for the benefit of the cable industry. This document may contain references to other documents not owned or controlled by CableLabs. Use and understanding of this document may require access to such other documents. Designing, manufacturing, distributing, using, selling, or servicing products, or providing services, based on this document may require intellectual property licenses for technology referenced in the document. Neither CableLabs, nor any other entity participating in the creation of this document, is responsible for any liability of any nature whatsoever resulting from or arising out of use or reliance upon this document by any party. This document is furnished on an AS-IS basis and neither CableLabs, nor other participating entity, provides any representation or warranty, express or implied, regarding its accuracy, completeness, or fitness for a particular purpose. © Copyright 2005-2010 Cable Television Laboratories, Inc. All rights reserved. OC-SP-OCUR-I10-100910 OpenCable™ Specifications Document Status Sheet Document Control Number: OC-SP-OCUR-I10-100910 Document Title: OpenCable Unidirectional Receiver Revision History: I01 – Released January 9, 2006 I02 – Released February 10, 2006 I03 – Released April 13, 2006 I04 – Released June 22, 2006 I05 – Released October 31, 2006 I06 – Released November 13, 2007 I07 – Released June 20, 2008 I08 – Released November 14, 2008 I09 – Released May 7, 2010 I10 – Released September 10, 2010 Date: September 10, 2010 Status: Work in Draft Issued Closed Progress Distribution Restrictions: Author Only CL/Member CL/ Member/ Public Vendor Key to Document Status Codes: Work in Progress An incomplete document, designed to guide discussion and generate feedback that may include several alternative requirements for consideration.
    [Show full text]
  • Tru2way™ Platform for Bidirectional Cable Communication Launches
    October 27, 2008 Tru2way™ Platform for Bidirectional Cable Communication Launches Comcast Corporation and Panasonic have announced the first deployment of Tru2way™ bidirectional digital cable technology. Tru2way was developed by CableLabs based on the OpenCable™ specification and is a Java-based open application platform. It is being promoted as a digital CableCARD™ system that enables two- way communication between a digital-cable-ready TV set or other device and a cable operator’s head end to provide viewers with a rich interactive experience. According to a statement from Panasonic, “the technology creates a common software platform that will enable cable companies, consumer electronics companies, content developers, network programmers and others to extend interactivity to the TV set and other kinds of devices.” On October 15, 2008, Comcast activated the technology on its cable systems in Chicago and Denver. Panasonic HDTV sets with tru2way capability were also made available at selected retail outlets in these areas. The new Panasonic 42” and 50” Viera sets have built-in tru2way CableCARD slots enabling consumers to receive the cable electronic program guide and access two-way digital cable programming, like video on demand, pay-per-view, and other services, without a cable operator-supplied set-top box. To see the announcement from Panasonic and Comcast click here. Another announcement, from the Consumer Electronics Association, is available here. The advantage of the bidirectional cable card for consumers is that it removes the need for another set- top device around the TV and potentially reduces the equipment fee cable operators charge to lease their set-top components.
    [Show full text]
  • Opencable™ Specifications Opencable Unidirectional Receiver OC-SP-OCUR-I08-081114
    OpenCable™ Specifications OpenCable Unidirectional Receiver OC-SP-OCUR-I08-081114 ISSUED Notice This OpenCable specification is a cooperative effort undertaken at the direction of Cable Television Laboratories, Inc. (CableLabs®) for the benefit of the cable industry. This document may contain references to other documents not owned or controlled by CableLabs. Use and understanding of this document may require access to such other documents. Designing, manufacturing, distributing, using, selling, or servicing products, or providing services, based on this document may require intellectual property licenses for technology referenced in the document. Neither CableLabs, nor any other entity participating in the creation of this document, is responsible for any liability of any nature whatsoever resulting from or arising out of use or reliance upon this document by any party. This document is furnished on an AS-IS basis and neither CableLabs, nor other participating entity, provides any representation or warranty, express or implied, regarding its accuracy, completeness, or fitness for a particular purpose. © Copyright 2005-2008 Cable Television Laboratories, Inc. All rights reserved. OC-SP-OCUR-I08-081114 OpenCable™ Specifications Document Status Sheet Document Control Number: OC-SP-OCUR-I08-081114 Document Title: OpenCable Unidirectional Receiver Revision History: I01 – Released January 9, 2006 I02 – Released February 10, 2006 I03 – Released April 13, 2006 I04 – Released June 22, 2006 I05 – Released October 31, 2006 I06 – Released November 13, 2007 I07 – Released June 20, 2008 I08 – Released November 14, 2008 Date: November 14, 2008 Status: Work in Draft Issued Closed Progress Distribution Restrictions: Author CL/Member CL/ Member/ Public Only Vendor Key to Document Status Codes: Work in Progress An incomplete document, designed to guide discussion and generate feedback that may include several alternative requirements for consideration.
    [Show full text]
  • Cable Operator Deployment of Cablecard/Host Technology
    Cable Operator Deployment of CableCARD/Host Technology APPLICATION NOTE October 03 1 Cable Operator Deployment of CableCARD/Host Application Note Table of Contents DESCRIPTION ...................................................................................................................................................................................3 MOTOROLA SYSTEM SUPPORT FOR CABLECARD/HOST DEPLOYMENT...........................................................................3 EARLY SYSTEM SUPPORT FOR CABLECARD/HOST ................................................................................................................5 CABLECARD/HOST PAIRING INFORMATION SCREEN - Man Machine Interface (MMI)...............................................6 COPY CONTROL INFORMATION (CCI).........................................................................................................................................7 COPY PROTECTION MANAGEMENT SYSTEM (CPMS)...........................................................................................................8 SYSTEM LAB SUPPORT FOR CABLECARD/HOST.....................................................................................................................9 SYSTEM SUPPORT FOR CABLECARD/HOST ...........................................................................................................................10 SOURCE NAME INFORMATION .................................................................................................................................................12
    [Show full text]
  • Personal Ways of Interacting with Multimedia Content
    University of Passau Department of Informatics and Mathematics Chair of Distributed Information Systems Prof. Dr. Harald Kosch Dissertation Personalized Means of Interacting with Multimedia Content Günther Hölbling June the 06th, 2011 1st referee: Prof. Dr. Harald Kosch, University of Passau 2nd referee: Prof. Dr. Maximilian Eibl, Chemnitz University of Technology Acknowledgments First of all, I would like to thank my supervisor, Prof. Dr. Harald Kosch, for his extensive and kind supervision, and for the opportunity to take part in his research group. He supported me through all of the highs and lows of writing this work and always found the right words to encourage me to finish this thesis. I am also grateful to Prof. Dr. Maximilian Eibl, who gave me the opportunity to discuss and present my work with him and several members of his research group in an extensive manner. Their many suggestions and pieces of advice have helped me in many ways to complete this work. This work was further made possible by the support of several people who helped in different phases of its creation. Thanks go out to all colleagues of the Chair of Distributed Information Systems, and especially to Tilmann Rabl, David Coquil, Stella Stars, Mario Döller and Florian Stegmaier for many helpful hints, interesting discussions and valuable proofreading. Thanks also go out to my students Wolfgang Pfnür, Raphael Pigulla, Michael Pleschgatternig and Georg Stattenberger for all their work, and most notably to Andreas Thalhammer for the comprehensive discussions and his support of this work. I also acknowledge the kind help of many supporters who made the creation of our evaluation dataset possible, and Lauren Shaw for many hours of proofreading.
    [Show full text]
  • Introduction to Cablecard™: History, Technology, Applications and Future
    Introduction to CableCARD™: History, Technology, Applications and Future Craig Gwydir Principal Architect BitRouter 1 What is a CableCARD? A special purpose PCMCIA card Source: CableCARD Wikipedia 2 What does a CableCARD do? Navigation and Security • Navigation – Provides the ability to view and record digital and analog cable channels without the use of a cable settop box. • Security – Provides the ability to view and record “premium” (encrypted) digital cable channels. 3 CableCARD and Host • A “Host” generally refers to a television or a Digital Video Recorder (DVR) that can accept a CableCARD. • A CableCARD plugs into a “Host.” • Provides direct connection to cable system using a CableCARD – Digital Cable Ready. 4 Digital Cable Ready (DCR) Host Source: Panasonic 5 Digital Cable Ready Host - DVR SONY DHG CableCARD(tm) HD DVR series Source: Sony 6 SONY CableCARD DVR – Back Panel Source: Sony Source: Sony 7 Why do we have CableCARDs? To open the market, allowing consumer electronic companies to produce and sell navigation devices for digital cable networks via retail channels. Navigation devices include: – Digital Video Recorders (DVRs) – Digital Cable Ready TVs (DCR) – Third party set-top boxes – TIVO Series 3 8 Question… Question: Has CableCARD technology enabled this open market of digital cable- ready consumer electronics devices via retail channels? 9 The answer is in the numbers.. The good news: As of June 15, 2007, some 271,000 CableCARDs have been deployed by cable operators. The bad news: There are over 65 million basic cable subscribers. Answer: CableCARDs have not done much to open the market for digital cable-ready CE devices via retail channels.
    [Show full text]
  • Before the Federal Communications Commission Washington, D.C
    Before the Federal Communications Commission Washington, D.C. 20554 In the Matter of ) ) Implementation of Section 304 of the ) Telecommunications Act of 1996 ) ) CS Docket No. 97-80 Commercial Availability of Navigation ) Devices ) Comments of Matsushita Electric Corporation of Americal"Panasonic" Matsushita Electric Corporation of America (d.b.a. "Panasonic") respectfully submits these Comments in response to the September 24 Further Notice of Proposed Rulemaking ("NPRM") in this docket. Panasonic, through its subsidiaries, affiliates, and brands, manufactures and distributes a wide range of consumer electronics, information technology, and other electronic and electrical devices. Panasonic has over 150 business locations in North America, including 24 manufacturing facilities, with some $9.2 billion in revenues in its most recent fiscal year; and it employs some 25,000 people. It is the principal U.S. subsidiary of Matsushita Electric Industrial Co., Ltd., of Japan, a world leader in electronics. Panasonic applauds the Commission for issuing this Further Notice in this very important Docket. In response to the questions posed by the Commission as to progress toward achieving the goal of "design, production, and distribution of [OpenCable-compliant] devices for retail sale,,,1 we are pleased to share our experience. The OpenCable process, and adopted specifications and standards from it, are expected to result in cable systems fully supporting direct, interactive operation of both set-top and fully integrated consumer products, and that these products will be of full benefit to cable systems in serving their customers. Panasonic has worked diligently with CableLabs, participating cable operators, and other cable equipment and -------._------ 1 Further NPRM, par.
    [Show full text]
  • Opencable™ Specifications Cablecard Interface 2.0
    OpenCable™ Specifications CableCARD Interface 2.0 Specification OC-SP-CCIF2.0-I27-150330 ISSUED Notice This OpenCable specification is the result of a cooperative effort undertaken at the direction of Cable Television Laboratories, Inc. for the benefit of the cable industry and its customers. You may download, copy, distribute, and reference the documents herein only for the purpose of developing products or services in accordance with such documents, and educational use. Except as granted by CableLabs® in a separate written license agreement, no license is granted to modify the documents herein (except via the Engineering Change process), or to use, copy, modify or distribute the documents for any other purpose. This document may contain references to other documents not owned or controlled by CableLabs. Use and understanding of this document may require access to such other documents. Designing, manufacturing, distributing, using, selling, or servicing products, or providing services, based on this document may require intellectual property licenses from third parties for technology referenced in this document. To the extent this document contains or refers to documents of third parties, you agree to abide by the terms of any licenses associated with such third party documents, including open source licenses, if any. Cable Television Laboratories, Inc. 2004-2015 OC-SP-CCIF2.0-I27-150330 OpenCable™ Specifications DISCLAIMER This document is furnished on an "AS IS" basis and neither CableLabs nor its members provides any representation or warranty, express or implied, regarding the accuracy, completeness, noninfringement, or fitness for a particular purpose of this document, or any document referenced herein. Any use or reliance on the information or opinion in this document is at the risk of the user, and CableLabs and its members shall not be liable for any damage or injury incurred by any person arising out of the completeness, accuracy, or utility of any information or opinion contained in the document.
    [Show full text]
  • Opencable™ Specifications Opencable Unidirectional Receiver
    OpenCable™ Specifications OpenCable Unidirectional Receiver OC-SP-OCUR-I11-130607 ISSUED Notice This OpenCable specification is a cooperative effort undertaken at the direction of Cable Television Laboratories, Inc. (CableLabs®) for the benefit of the cable industry. This document may contain references to other documents not owned or controlled by CableLabs. Use and understanding of this document may require access to such other documents. Designing, manufacturing, distributing, using, selling, or servicing products, or providing services, based on this document may require intellectual property licenses for technology referenced in the document. Neither CableLabs, nor any other entity participating in the creation of this document, is responsible for any liability of any nature whatsoever resulting from or arising out of use or reliance upon this document by any party. This document is furnished on an AS-IS basis and neither CableLabs, nor other participating entity, provides any representation or warranty, express or implied, regarding its accuracy, completeness, or fitness for a particular purpose. Cable Television Laboratories, Inc., 2005-2013 OC-SP-OCUR-I11-130607 OpenCable™ Specifications DISCLAIMER This document is published by Cable Television Laboratories, Inc. ("CableLabs®"). CableLabs reserves the right to revise this document for any reason including, but not limited to, changes in laws, regulations, or standards promulgated by various agencies; technological advances; or changes in equipment design, manufacturing techniques, or operating procedures described, or referred to, herein. CableLabs makes no representation or warranty, express or implied, with respect to the completeness, accuracy, or utility of the document or any information or opinion contained in the report. Any use or reliance on the information or opinion is at the risk of the user, and CableLabs shall not be liable for any damage or injury incurred by any person arising out of the completeness, accuracy, or utility of any information or opinion contained in the document.
    [Show full text]
  • DSTAC WG4 Report August 4, 2015
    DSTAC WG4 Report August 4, 2015 REPORT OF WORKING GROUP 4 TO DSTAC Introduction Working Group 4 (WG4) was formed out of the larger DSTAC to address the topic of device platforms, variability, and interfaces. Guidance Description (Part I) The working group will identify existing devices and technologies that receive MVPD and OTT service, such as DVRs, HDTVs, personal computers, tablets in home, connected mobile devices, take- and-go mobile devices, etc., and identify the salient differences important to implementation of the non-security elements of a system to promote the competitive availability of such devices based on downloadable security. (Part II) For each category of existing device identified above, the working group will identify a system comprising minimum standards, protocols, and information other than security elements to enable competitive availability of devices that receive MVPD services. (Part III) The working group may identify alternative systems as appropriate to promote the availability of different categories of navigation devices, consistent with the Commission’s instruction to recommend an approach that would allow consumer electronics manufactures to build devices with competitive interfaces and an approach under which MVPDs would maintain control of the user interface. Product The working group will deliver and present its findings to the full DSTAC. DSTAC WG4 Report August 4, 2015 Table of Contents Part I: Existing Devices and Technologies ...............................................................................................
    [Show full text]
  • CEA and the Associated CE Companies Are Willing to Remove
    ATTACHMENT A Access to Basic Interactive Services: Technical Requirements This document explains the technology by which cable providers could allow competitive devices to access “basic” interactive services (i.e., switched digital (“SD”), video on demand (“VOD”), and impulse pay per view (“IPPV”) content) without requiring that such devices include the OpenCable Application Platform (“OCAP”) middleware. It also describes the technology by which the proprietary metadata or navigation data, delivered by the cable provider in conjunction with its video content, could be translated into a common format that could be understood and used by the competitive device. We propose that the method described herein be implemented for all current separable security technologies prescribed by FCC regulations and any subsequent replacement technologies.1 In addition, to ensure the consumer benefits of common reliance, cable providers should be required to use this same schema and interface in a substantial proportion of any devices they lease or otherwise provide to subscribers. UDCR Preservation At the outset, we wish to make clear that this proposal encompasses, and does not supersede or replace, the technical requirements currently in place in the Commission’s rules that allow competitive devices to access unidirectional cable services. Accordingly, we propose that the Commission clarify that Section 76.640 of the Commission’s rules requires that: 1. Cable operators shall support Unidirectional Digital Cable Receiver (“UDCR”) and Open Cable Unidirectional Receiver (“OCUR") (together, “Unidirectional Devices”), by maintaining access to all linear broadcast digital cable audio/video content and services in parity with the availability of those same services on leased devices.
    [Show full text]