Communication Networks 2 --- IPTV Measurement

Total Page:16

File Type:pdf, Size:1020Kb

Communication Networks 2 --- IPTV Measurement Communication Networks 2 --- IPTV measurement Measurement guide 1. Introduction The goal of this measurement is to get to know network context of the Internet Protocol Television (IPTV) technology, mostly focusing to multicast based IP packet transmission and Quality of Service (QoS) guaranteeing based on network features. Students will get to know multicast IP transport, methods of IPTV video-streaming and protocols. And they will measure network paramaters focusing to the QoS determination. Hardware and software devices applied in the laboratory: AverMedia Volar HD PRO DVB-T receiver (for digital TV broadcast receiving) Linux server for the DVB-T videostream conversion in real-time, properly for technological requirements of the IPTV services. o Video for Linux (V4L), w_scan, Dvblast, lighttpd Emulator of network QoS (delay, jitter, packet loss) parameters: NetEm Ethernet switches with Multicast (IGMPv3) support Client side: PC-s for measurering (Windows 7 x64) Wireshark protocol analyzer KODI mediaplayer and Simple IPTV Client plugin VLC mediaplayer 1. Figure: IPv4 Test-network 1 IPTV services transport of live TV and radio broadcast on the IP network Digital Rights Management (DRM) Electronic Program Guide (EPG) Teletext Recording of live broadcast (client side) Picture on Picture (PiP) – During the TV program watching on the display (usually in the corner) other TV channel program comes up on a small window Time shifting – recording of live program and delay-action replay More recording in the same time + live broadcast (bandwidth of the internet service could be a limit) Programmed recording based on the EPG Video on Demand – (TV programs, films, serials, etc) Applications running (news, weather, rates, messaging, etc) Protocol stack and media codecs IPv4/IPv6 IGMPv3/MLDv2/PIM UDP RTP/RTCP MPEG-2 Transport Stream H.264/H.265 (video codec) AAC (audio codec) 2. Multicast packet transport on the IP network Two spreading methods of media contents transporting exist in an IP network. In the first model based on everybody’s demands are initiated viewing of different contents. This is the Video on Demand (VoD) system. This type of service is provided by the Youtube, Netflix, TV.GO, IPTV providers, on the airplanes, etc. In this case provider has to deliver the proper content in the proper time. Accordingly, dedicated unicast media-streams have to be transported from the provider toward to every client. Resource requirements of a unicast transport are almost linearly scaled. Therefore the increase of subscriber/active viewers’ number needs to be followed by the appropriate amount of resources at the server side and network side as well (CPU, memory, bandwidth). In this case of this unicast spreading model the biggest challenge is handling of the periodic peak load. Good example is for the second model, when the linear programme of the TV channel needs to be delivered to subscribers through an IP network. In this case viewers of the same channel can be gathered into a same group and only one media stream is needed to be transported to this group, without reference to the number of subscribers in this group. This model gives a very good scalability, because network services need to deliver the media stream to members of an appropriate group, but this requires a special multicast IP routing. Here we need to mention that some providers build up their own multicast IP routing (which is totally idependent from unicast routing) in their network, due to more effective serving of subscribers. Good example is for sutdents this measurement of an IPTV service. 2 Multicast IP addresses In case of multicast message transport, we use a special IP address range 224.0.0.0/4 (D class), based on the IPv4 protocol. Very first four bits of the first octet in Class D IP addresses are set to 1110. In this address range one address is using for identification of more nodes (network interfaces) as a one group. This is the identificator of this specific group. Members (network interfaces) of this group do not need to be a part of a same IP network. In this measurement one muticast address is used for one TV channel identification. Namely, a media stream got from the programme of this TV channel is forwarded to members of this multicast group with a D class type IP address. Class D has IP address range from 224.0.0.0 to 239.255.255.255. IP address ranges: Ranges inside the Name Goal D class Protocol specific addresses, which are valid inside 224.0.0.0- Local subnetwork a local network. This range is managed by the 224.0.0.255 IANA. Protocol specific traffic, which is forwardable on 224.0.1.0- Internetwork control block the public Internet network. This range is 224.0.1.255 managed by the IANA. 224.0.2.0- 224.0.255.255 This is for applications that don't fit either of the 224.3.0.0- AD-HOC block previously described two categories. This range is 224.4.255.255 managed by the IANA. 233.252.0.0- 233.255.255.255 Range using for source-specific multicast 232.0.0.0/8 Source-specific multicast forwarding. An experimental, public multicast address range 233.0.0.0/8 GLOP addressing for publishers and Internet service providers Address range provided to each organization that Unicast prefix based 234.0.0.0/8 has /24 or larger globally routed unicast address multicast addresses space allocated Administratively scoped Address range for private using within an 239.0.0.0/8 multicast addresses organization. (Private multicast IP addresses) 3 Internet Group Management Protocol (IGMP) The IGMP is a communications protocol used by IP hosts and routers for multicast membership management. The IGMP message changing operates between the client computer (host) and a local multicast router. These messages are directly embedded into IPv4 packets. Based on the “level view” like the ICMP, IGMP is also a part of the IP protocol set working on the network level. The most important novelty of this protocol version 2 was that promoted the explicit leave group marking (Leave Group message). The current version 3 plus contains a possibility of source-specific multicast. More information about this can be read in the PIM protocol description. The IGMPv2 or IGMPv3 are used commonly in case of IPTV systems. The Leave Group message, benefit of the IGMPv2, allows quick traffic termination toward members of a specific group, when this group does not have active members anymore. IGMPv2/v3 message types Membership Query – The IGMP querier is a hosts’ multicast membership querry. Three subtypes are known: general query, group-specific query and group-and-source-specific query. Membership Report / Join – Membership report toward the multicast router (IGMP querier). A host with the same message can join this multicast group. Leave Group – explicit mark of a group leaving IGMPv3 source filtering Source-specific multicast support can be specified with filters for address of source node. Include mode: In this mode, the receiver announces membership to a host group and provides a list of IP addresses (the include list) from which hosts wants to receive traffic. Exclude mode: In this mode, the receiver announces membership to a host group and provides a list of IP addresses (the exclude list) from which hosts does not want to receive traffic. The display filter igmp can be used for the IGMP messages displaying in the Wireshark program. Tip: Other programs and Windows services than the VLC program also generate IGMP messages traffic in our PC. Therefore we have to pay attention to identification of IGMP Join/Leave messages in case of TV channel changing. In case of IGMP traffic analysis you could recognise that the network router gets hosts’ multicast group membership at stated intervals (it could be 20sec in the laboratory network). A Membership Query message is receiving from the router and the host is answering with a Membership Report message (messages). Important: do not be confused, these messages are separate from the join messages generated in case of TV channel changing! The General Membership Query messages are sent to the 224.0.0.1 target address by the multicast router. This is the global address of all multicast hosts. 4 The Membership Report answer messages and the Join/Leave messages are sent to the 224.0.0.22 address by the endpoint. IGMP Snooping Ethernet switches commonly send all received packets with multicast address to all their ports (like in case of broadcat traffic). This causes unnecessary traffic to ports which are not connected with active members of the certain multicast group. The IGMP Snooping function of the IGMP layer 2 is like an optimization. IGMP snooping monitors the IGMP traffic between hosts and multicast routers. The switch uses what IGMP snooping has learned, forwarding multicast traffic only to interfaces that are connected to interested receivers. This conserves bandwidth by allowing to send multicast traffic to only those switch interfaces that are connected to hosts that want to receive traffic, instead of flooding traffics to all interfaces in the network. Important: Ethernet switches in the laboratory network do not delete immediatly proper multicast group/port connections from the local IGMP table in the laboratory network. Therefore in case of TV channel changing, belong the new channel multicast traffic also the traffic of old channel is arriving to the network interface for a while. Check how long has appeared both groups’ traffic on the interface by the Wireshark! This information could be important when the duration of channel changing is observing. Because when we are changing to the channel, which was watched only before 60 seconds (or shorter time), then the duration of the second phase of this channel changing is zero second.
Recommended publications
  • IPTV Service
    15th Telecommunications forum TELFOR 2007 Serbia, Belgrade, November 20-22, 2007 IPTV service Aleksandar D. Stjepanovic1, Sladjana B. Stjepanovic2 , Zoran S. Bojkovic3 Senior Member, IEEE Abstract —After a brief overview of video Coding II. QUALITY OF IPTV Standards we will deal with IPTV services market , together with an example concerning Bosnia and Herzegovina. On any ADSL-based deployment, the quality of the consumer’s video is not just a function of the network Keywords — Internet protokol TV (IPTV), IP packet, DSL bandwidth (ADSL2+/ADSL) or the data stream, as there technology, Broadband Internet access are a number of parameters that contribute to the customers’ perception of good vs. bad quality. As the I. INTODUCTION video stream arrives to the settop box and ultimately the The term IPTV usually includes a broad range of television, it has gone through various protocol layers programs or TV channels provided by one or multiple (e.g., physical ADSL layer, ATM layer, IP layer, transport service providers. Additionally, it might include some layer, etc.). It is the interaction between these layers and specialized programming like concerts, special events and the effect of external influences that affect the quality of movies, provided only when requested by the user; i.e., the video perceived by the consumer; this is often referred video on demand (VoD). to as quality of experience (QoE). Some of the parameters The delivery of Internet protocol TV (IPTV) using DSL that influence the customer’s QoE include image is an emerging and exciting technology that offers new pixelization and tiling, picture blurring and edge distortion, business opportunities to service providers.
    [Show full text]
  • Cablelabs Specification
    Video IP Multicast IP Multicast Adaptive Bit Rate Architecture Technical Report OC-TR-IP-MULTI-ARCH-C01-161026 CLOSED Notice This OpenCable™ technical report 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. 2014-2016 OC-TR-IP-MULTI-ARCH-C01-161026 IP Multicast 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.
    [Show full text]
  • Configuration Recommendations for DOCSIS IP Transport of IP Video
    CONFIGURATION RECOMMENDATIONS FOR DOCSIS TRANSPORT OF MANAGED IP VIDEO SERVICE WILLIAM T. HANKS With special thanks to the following contributors: Jim Allen, Tom Cloonan, Michael Dehm, Amit Eshet, J.R. Flesch, Dwain Frieh, Will Jennings, Tal Laufer, Tushar Mathur, Dan Torbet, John Ulm, Bill Ward, and Ian Wheelock TABLE OF CONTENTS INTRODUCTION ............................................................................................. 4 TARGET AUDIENCE ........................................................................................ 4 VENDOR AND PRODUCT AGNOSTICISM ........................................................ 4 TECHNOLOGY BACKGROUND ........................................................................ 5 Video ServicEs ................................................................................................................ 5 LinEar Broadcast TV vs. On-dEmand Content ............................................................ 5 Television ChannEl ViewErship ................................................................................... 5 TV ChannEl ChangE ExpEctations ............................................................................... 8 InternEt Protocol (IP) ...................................................................................................... 8 ConnEction-OriEnted vs. ConnEctionlEss ................................................................... 8 IP Multicast – One StrEam, MultiplE DEstinations ..................................................... 9 IP Unicast – One StrEam,
    [Show full text]
  • Triple Play Network Analysis with the Viavi J6900A Triple Play Analyzer
    Triple Play Network Analysis with the Viavi J6900A Triple Play Analyzer INTRODUCTION . 2 SCOPE OF THIS DOCUMENT. 2 OVERVIEW OF TRIPLE PLAY NETWORKS. 2 ANALYZING THE PERFORMANCE OF TRIPLE PLAY NETWORKS . 3 ASSESSING THE HEALTH OF AN OPERATIONAL TRIPLE PLAY NETWORK. 5 ANALYSIS AND TROUBLESHOOTING SCENARIO . 5 OVERVIEW OF THE TESTING PROCESS . 7 INSTALL AND LICENSE THE SOFTWARE . 7 CONNECT TO THE IP NETWORK UNDER TEST. 7 START AND CONFIGURE THE TRIPLE PLAY ANALYZER. 7 START A REAL-TIME DATA RUN . 11 BEGIN ASSESSING THE TRIPLE PLAY NETWORK PERFORMANCE. .12 Analyze Quality of Experience . .13 Analyze Quality of Service . .13 Analyze VoIP and Video over RTP . 14 Confirm the Throughput and Bandwidth. .15 Examine the Video Control Signaling and Response Times . .15 Examine IGMP Multicast Group Interactions and Durations . 16 TROUBLESHOOTING NETWORK PROBLEMS AND INTERPRETING THE RESULTS . .17 Assess the PCR Jitter at the SHE Encoder Output . .17 Measure the Media Delivery Index in Delay Factor and Loss Rate . 18 Monitor the GOP Pattern and I, B, P Frame Lost Packets. 20 Measure Out of Sequence RTP Packets . .21 Measure Max Zap Times . .21 Monitor IP Multicast Utilization. 22 Assess the Video MOS Degradation for a Stream. 23 Examine Continuity Count Errors, with Thresholds Exceeded. 23 Convert the Data File . 24 Search the Network Analyzer Decodes for CC Errors. 25 Interpreting the Results . 25 CONCLUSION. 26 TRIPLE PLAY ANALYZER DATA ACQUISITION USE MODELS. 26 GLOSSARY OF TERMS . 27 viavisolutions.com Introduction Triple play networks comprise the convergence of video, voice, and data services over a single broadband connection. To satisfy the requirements of monitoring triple play networks, and ensure a high Quality of Experience (QoE) to consumers of triple play services, a leading-edge generation of highly-efficient protocol analyzers is required.
    [Show full text]
  • Fast Channel Navigation of Internet Protocol Television Using Adaptive Hybrid Delivery Method
    Hindawi Journal of Computer Networks and Communications Volume 2018, Article ID 2721950, 11 pages https://doi.org/10.1155/2018/2721950 Research Article Fast Channel Navigation of Internet Protocol Television Using Adaptive Hybrid Delivery Method Timothy T. Adeliyi and Oludayo O. Olugbara ICT and Society Research Group, Durban University of Technology, Durban, South Africa Correspondence should be addressed to Oludayo O. Olugbara; [email protected] Received 14 March 2018; Accepted 5 June 2018; Published 8 July 2018 Academic Editor: Mohamed El-Tanany Copyright © 2018 Timothy T. Adeliyi and Oludayo O. Olugbara. )is is an open access article distributed under the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited. )e Internet protocol television brought seamless potential that has revolutionized the media and telecommunication industries by providing a platform for transmitting digitized television services. However, zapping delay is a critical factor that affects the quality of experience in the Internet protocol television. )is problem is intrinsically caused by command processing time, network delay, jitter, buffer delay, and video decoding delay. )e overarching objective of this paper is to use a hybrid delivery method that agglutinates multicast- and unicast-enabled services over a converged network to minimize zapping delay to the bare minimum. )e hybrid method will deliver Internet protocol television channels to subscribers using the unicast stream coupled with differentiated service quality of experience when zapping delay is greater than 0.43 s. )is aids a faster transmission by sending a join message to the multicast stream at the service provider zone to acquire the requested channel.
    [Show full text]
  • User Guide for Cisco Video Assurance Management Solution 1.0 February 2008
    User Guide for Cisco Video Assurance Management Solution 1.0 February 2008 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 Text Part Number: OL-15678-01 THE SPECIFICATIONS AND INFORMATION REGARDING THE PRODUCTS IN THIS MANUAL ARE SUBJECT TO CHANGE WITHOUT NOTICE. ALL STATEMENTS, INFORMATION, AND RECOMMENDATIONS IN THIS MANUAL ARE BELIEVED TO BE ACCURATE BUT ARE PRESENTED WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. USERS MUST TAKE FULL RESPONSIBILITY FOR THEIR APPLICATION OF ANY PRODUCTS. THE SOFTWARE LICENSE AND LIMITED WARRANTY FOR THE ACCOMPANYING PRODUCT ARE SET FORTH IN THE INFORMATION PACKET THAT SHIPPED WITH THE PRODUCT AND ARE INCORPORATED HEREIN BY THIS REFERENCE. IF YOU ARE UNABLE TO LOCATE THE SOFTWARE LICENSE OR LIMITED WARRANTY, CONTACT YOUR CISCO REPRESENTATIVE FOR A COPY. The Cisco implementation of TCP header compression is an adaptation of a program developed by the University of California, Berkeley (UCB) as part of UCB’s public domain version of the UNIX operating system. All rights reserved. Copyright © 1981, Regents of the University of California. NOTWITHSTANDING ANY OTHER WARRANTY HEREIN, ALL DOCUMENT FILES AND SOFTWARE OF THESE SUPPLIERS ARE PROVIDED “AS IS” WITH ALL FAULTS. CISCO AND THE ABOVE-NAMED SUPPLIERS DISCLAIM ALL WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THOSE OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OR ARISING FROM A COURSE OF DEALING, USAGE, OR TRADE PRACTICE. IN NO EVENT SHALL CISCO OR ITS SUPPLIERS BE LIABLE FOR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, OR INCIDENTAL DAMAGES, INCLUDING, WITHOUT LIMITATION, LOST PROFITS OR LOSS OR DAMAGE TO DATA ARISING OUT OF THE USE OR INABILITY TO USE THIS MANUAL, EVEN IF CISCO OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
    [Show full text]
  • Qoe) Test Solution N5570A, N5572A, N5574A & E7877A Technical Data Sheet
    Agilent N2X IPTV & IPTVv6 Quality of Experience (QoE) Test Solution N5570A, N5572A, N5574A & E7877A Technical Data Sheet The Agilent N2X IPTV QoE solution is the most comprehensive and integrated solution to validate IPTV Quality of Experience under realistic and scalable Multiplay network conditions. N5570A, N5572A, N5574A & E7877A - IPTV & IPTVv6 QoE Solution Key Features Product Overview Agilent N2X is the industry’s most N2X uses the industry standard • Dynamic subscriber simulation comprehensive solution for testing Media Delivery Index (MDI) to make creating a real-world test the development and deployment scalable video quality measurements environment of network services for converging for thousands of subscribers, while • Realistic Multiplay traffic network infrastructures. Service simultaneously monitoring service generation such as time-sensitive Providers, Network Equipment quality for VoIP and data. voice and bursty data traffic Manufacturers (NEMs), and • Highly scalable per-subscriber MDI N2X realistically emulates the scale component manufacturers can video quality metrics and complexity of real-world Multiplay verify service attributes of entire • Emulation of thousands of networks within a single powerful test networks end-to-end, while also subscribers and hundreds of system, eliminating the need to test isolating problems down to individual channels per system to quickly with a lab full of devices, and providing networking devices and subsystems. identify performance thresholds engineers with significant time and • Real line-rate video generation, Verifying that network equipment cost savings, and greater flexibility capture and replay, at speeds up to can meet Quality of Experience and control over subscriber and 10Gb/s (QoE) expectations for thousands of traffic parameters. All three Multiplay • IPv4 and IPv6 support subscribers is a significant challenge services (voice, video and data) can be • Supports 10/100M, 1G and 10G for Service Provider Labs and Network simulated on a single N2X test port.
    [Show full text]
  • A Guide to IPTV the Technologies, the Challenges and How to Test IPTV
    Primer A Guide to IPTV The Technologies, the Challenges and How to Test IPTV A Guide to IPTV: The Technologies, the Challenges and How to Test IPTV Primer Table of Contents Introduction . .1 IPTV Network and Transmission Errors . .12 IPTV and the Triple Play . .1 Video Problems . .12 The Attraction of IPTV . .1 Physical Layer and Protocol Stack Problems . .13 How IPTV Works . .2 Testing IPTV Networks . .14 Challenges in Delivering IPTV Services . .2 The Technology Lifecycle . .14 IPTV Test Methodology . .15 IPTV Technology Overview . .5 Test Tools and Technologies . .16 Video Compression Technologies . .5 Network Protocols . .6 Cross Layer Measurement and Test . .16 UDP or User Datagram Protocol . .6 Distributed Multi-layer Monitoring Tools . .17 RTP or Real Time Protocol . .7 Layer-specific Probes . .17 RTSP or Real Time Streaming Protocol . .7 Extended Monitoring Capability . .18 IGMP or Internet Group Management Protocol . .8 Multi-layer Monitoring . .18 Picture Quality and Quality Indicator Tools . .20 Network Evolution . .8 Subjective and PQ tests . .20 Network Architectures . .9 Quality Control for Stored File Based Content . .20 Access Network Technologies . .10 QoS Measurement Using MDI . .20 xDSL . .10 Tektronix in the Converged World . .21 HFC . .10 FTTx . .10 Conclusion . .22 WiMAX . .11 Glossary . .23 Control and User Planes . .11 www.tektronix.com/video_audio i A Guide to Standard and High-Definition Digital Video Measurements Primer Table of Figures Figure 1. Various Unicast / Multicast Scenarios . .3 Figure 9. FTTx Characteristics . .10 Figure 2. Video Coding Trends . .5 Figure 10. Effects of Dropped Packets . .12 Figure 3. IP Packet Format . .6 Figure 11. Physical Layer and Figure 4.
    [Show full text]
  • On Zap Time Minimization in IPTV Networks
    International Conference on Computing, Networking and Communications, Internet Services and Applications Symposium On Zap Time Minimization in IPTV Networks Matthew Long, Sridhar Radhakrishnan, Suleyman Karabuk, John Antonio School of Computer Science School of Industrial Engineering School of Computer Science University of Oklahoma University of Oklahoma University of Oklahoma Norman, Oklahoma 73019 Norman, Oklahoma 73019 Norman, Oklahoma 73019 E-mail: {mglong, sridhar}@ou.edu E-mail: [email protected] E-mail: [email protected] Abstract—Digital television systems have a clear disadvantage state-of-the-art. These advantages include a) wherever Internet relative to analog systems in users’ quality of experience, most access is available, broadcast channels can be delivered and notably in the time required to change channels, or zap time. this eliminates the need for additional infrastructure (such as The goal of this research is to improve the performance of a multicasting IPTV network, both in user experience and in cable or satellite), b) the broadcast content can be viewed on resource consumption. We formulate the problem of assigning any device that has an Internet connection and appropriate IPTV clients to servers as an integer programming model, in video display without the need for specialized STB hardware, variants which minimize channel-change times, overall network and c) bandwidth can be conserved as only the users watching capacity consumption, or both. This problem is shown to be a particular channel need to receive it. Several organizations computationally hard, and the performance of the models is tested on problems of different sizes. Polynomial-time heuristics have set standards for implementing IPTV networks, including are presented which address a relaxed version of the problem, ETSI TISPAN, the DVB Project, and the Open IPTV Forum and the performance of these heuristics is measured.
    [Show full text]
  • Iptv Testing Over Dsl
    IPTV TESTING OVER DSL 148 APPLICATION NOTE Francisco Palacios, Product Manager, Copper Access Business Unit The delivery of Internet protocol TV (IPTV) using DSL is an emerging and exciting technology that offers new business opportunities to service providers. ADSL2+ and VDSL2 data rates make it possible to easily integrate voice, video and data services over a single telephone line, commonly denominated triple-play services. With all these technological developments, it is now practical and economical to simultaneously provide multiple standard and high-definition television channels (SDTV and HDTV) to the residential user. The term IPTV usually includes a broad range of programs or TV channels provided by one or multiple service providers. Additionally, it might include some specialized programming like concerts, special events and movies, provided only when requested by the user; i.e., video on demand (VoD). Like every other evolving technology, there are multiple approaches for the delivery of IPTV across the core network and its transmission to the customer premises over an ADSL2+ connection. In general, video service providers first perform the coding and compression of the video signal typically using MPEG-2, MPEG-4 or WM9/VC-1 (it is at this stage that a trade-off between quality and required bandwidth occurs). Then, the video content is ready to be distributed by streaming IP packets using the user-datagram protocol (UDP), which is the preferred method of IP packet delivery when offering video due to its low latency. Once at its final destination, the subscriber’s house, the video stream is decoded by a set-top box (STB) and played on the TV.
    [Show full text]
  • Cisco VAMS 1.5
    User Guide for Cisco Video Assurance Management Solution 1.5 December 17, 2008 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 Text Part Number: OL-16498-01 THE SPECIFICATIONS AND INFORMATION REGARDING THE PRODUCTS IN THIS MANUAL ARE SUBJECT TO CHANGE WITHOUT NOTICE. ALL STATEMENTS, INFORMATION, AND RECOMMENDATIONS IN THIS MANUAL ARE BELIEVED TO BE ACCURATE BUT ARE PRESENTED WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. USERS MUST TAKE FULL RESPONSIBILITY FOR THEIR APPLICATION OF ANY PRODUCTS. THE SOFTWARE LICENSE AND LIMITED WARRANTY FOR THE ACCOMPANYING PRODUCT ARE SET FORTH IN THE INFORMATION PACKET THAT SHIPPED WITH THE PRODUCT AND ARE INCORPORATED HEREIN BY THIS REFERENCE. IF YOU ARE UNABLE TO LOCATE THE SOFTWARE LICENSE OR LIMITED WARRANTY, CONTACT YOUR CISCO REPRESENTATIVE FOR A COPY. The Cisco implementation of TCP header compression is an adaptation of a program developed by the University of California, Berkeley (UCB) as part of UCB’s public domain version of the UNIX operating system. All rights reserved. Copyright © 1981, Regents of the University of California. NOTWITHSTANDING ANY OTHER WARRANTY HEREIN, ALL DOCUMENT FILES AND SOFTWARE OF THESE SUPPLIERS ARE PROVIDED “AS IS” WITH ALL FAULTS. CISCO AND THE ABOVE-NAMED SUPPLIERS DISCLAIM ALL WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THOSE OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OR ARISING FROM A COURSE OF DEALING, USAGE, OR TRADE PRACTICE. IN NO EVENT SHALL CISCO OR ITS SUPPLIERS BE LIABLE FOR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, OR INCIDENTAL DAMAGES, INCLUDING, WITHOUT LIMITATION, LOST PROFITS OR LOSS OR DAMAGE TO DATA ARISING OUT OF THE USE OR INABILITY TO USE THIS MANUAL, EVEN IF CISCO OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
    [Show full text]
  • Video Quality in IP Based Mobile Systems
    CHALMERS Video Quality in IP Based Mobile Systems MALIHEH YOUSEFI Department of signal and systems Chalmers University of technology Göteborg,Sweden,May 2008 EX038/2008 ii CHALMERS Video Quality in IP Based Mobile Systems MALIHEH YOUSEFI [email protected] Supervisor: Magnus Thorstenson Examiner: Prof. Dr. Irene Y.H.Gu Chalmers University of Technology And Ericsson R&D, Linköping iiii CHALMERS Video Quality in IP Based Mobile Systems MALIHEH YOUSEFI [email protected] Supervisor: Magnus Thorstenson Examiner: Prof. Dr. Irene Y.H.Gu Chalmers University of Technology And Ericsson R&D, Linköping iiii iiiiii MASTER’S THESIS EX038/2008 Video Quality in IP Based Mobile Systems Master’s Thesis in the Digital Communication Systems and technology MALIHEH YOUSEFI Department of Signals and Systems CHALMERS UNIVERISTY OF TECHNOLOGY Göteborg, Sweden, 2008 iv Video Quality in IP Based Mobile Systems Master’s Thesis in the Digital Communication Systems and technology MALIHEH YOUSEFI © MALIHEH YOUSEFI,2008 Master’s Thesis EX038/2008 ISSN Department of Signals and Systems Chalmers University of Technology SE-412 96 Göteborg Sweden Telephone: + 46 (0)31-772 1000 v Video Quality in IP Based Mobile Systems Master’s Thesis in the Digital Communication Systems and technology MALIHEH YOUSEFI Department of Applied Mechanics Division of Division Name Chalmers University of Technology Abstract Digital video transmission over packet switched wireless networks is increasingly utilized by customers. It is of high importance to have reliable test solutions to measure the perceived end user video quality. Study of video characteristics, IP networks and video quality metrics, are the bases of this thesis work.
    [Show full text]