Final Project Report Customized and manageable streaming service using a file-converting server

Size: px
Start display at page:

Download "Final Project Report Customized and manageable streaming service using a file-converting server"

Transcription

1 Final Project Report Customized and manageable streaming service using a file-converting server Seunghoon Jeong {sejeong@cs.ucsd.edu} November 30, 2006 Abstract Thanks to enhanced codec technology and powerful processing ability of CPU, large-sized and highquality multimedia files are increasing. Even though recent PCs can play highly compressed video files without any loss of quality, those files are inadequate to be played in cell phones or PDAs. Even the most recent cell phones have processing powers of PC several years ago and they do not have a sufficient amount of storage to save them. The streaming service can be a good solution to resolve the problem. However, present streaming services are only for their subscribed customers and the content scale is incomparable to the one available for PC: the Internet content. Furthermore, the present streaming services do not support enough dynamic controls over the stream, which are natural in non-streaming format files. In this project, I designed and implemented a model that enables cell-phones to play and control video files formatted for PC by customizing and streaming them using a file-converting server. 1 Introduction It is now common that we can see TV programs and movies with a cell phone. Increasing number of them are now equipped with web-accessible ability. Processing ability of recent cell phones is now similar to that of PC several years ago and they can play multimedia files through web access. It is a big merit that mobile cell phone can play multimedia files made for PC. However, the problem is that plenty of the files are not directly usable for cell phones. Large-sized non-stream format files are difficult to be played in cell phones with limited storage. Even though recent cell phones contain large storage than old ones, video file size is also increasing beyond the capacity of cell phones.in addition, even if cell phones have enough storage to save large video files, they still have the limited resource environment: low processing ability and small view size. Since most recent video files are formatted by advanced codec with wide view size configuration, cell phones are unable to play the quality that is expected to be shown. Playing high-quality video files for PC in the low-quality environment of a cell phone is inefficient and resource-wasteful. Streaming service can be the solution of the two problems. However, present streaming services also have limits. Most of them are for subscribed customers and contents are limited. Moreover, they support little dynamic controls over the stream, which are very natural for non-stream format files. In cell phones dynamic control functions are more important due to their resource and power constrains than those of PCs. Since computer performance and network speed has greatly enhanced, we can utilize a third party file-converting server for customized and manageable streaming services for cell phones 2 Related Works For better streaming service, a lot of works have been done across various research areas. In streaming codec aspects, ASX, ASF, WMA and WMV, which were proposed by Microsoft, are widely used. Several Internet Protocols for streaming services have been suggested and adopted [1] [2]. A typical streaming protocol is the Real Time Streaming Protocol, RTSP, which is an application-level protocol for control over the delivery for data with real-time properties. Some researches related to system designing introduce new methods for 1

2 Figure 1: scheme scenario better performance in streaming services [3], [4]. QoS is one big issue in streaming service. Some researches like [5] are about estimating streaming quality. The topic of the customized streaming service has been more prevalent in commercial services rather than research area. Most major TV broadcasters such as CNN and NBC now provide their TV materials, but majority of them are aimed for PC users accessible to the Internet. Last year South Korea started to provide the satellite Digital Multimedia Broadcasting service, which is a big advance in mobile streaming service. However, present mobile streaming services are restricted only to certain models and their content is very limited. There have been little attempts to utilize a third party server to customize Internet video files for heterogeneous cell phones with dynamic controls. 3 Goals The project was performed to achieve the following goals assuming that PXA27x behaves as a cell phone. 1. Since cell phones do not have sufficient storage to save large-sized non-stream format video files, URLs of the video files are redirected to a third-party server and cell phones get streaming services from the server. 2. Since plenty of video files in the Internet are formatted for PCs and each cell phone has different capability, the server customizes the streaming file through optimizing process; it prevents waste of resources in cell phones to play streaming videos. 3. By making the client and the server have seeking functionality of a streaming data, cell phones can control the stream dynamically. Figure 1 shows an imaginable scenario. First, a cell phone obtains a URL of a video file from the Internet. Then, the client in the cell phone redirects the URL with its running information such as the screen size and the CPU speed to the server. Next, the server downloads the requested file and converts it with the optimizing process. During the process, non-stream format is converted to streaming format and the video file is optimized to the cell phone Finally, the server starts a manageable streaming service to the cell phone; the client may send dynamic control requests such as FF/REW and the server responds to the corresponding commands. 2

3 Figure 2: System Model Figure 3: User Menu Tree 4 Design and Implementation 4.1 Client Figure 2 shows the communication model between the client and the server.the client contains three modules: user command processing module, mplayer wrapping module, mplayer and communication module. 1. User command processing module: this module shows a tree-like menu as shown in Figure 3. It gets input and applies the corresponding commands. File control menu is for commands to request an Internet video file and a streaming service to the server. View control menu is for commands to dynamically control streaming video streams: PAUSE, FF/REW, SEARCH, RESIZE. At first, this module was designed to read a XML file, which contains a command list with corresponding execution information, and to automatically build the command tree for extensibility. However, since some XML libraries were not supported by arm-linux, XML-based input module could not be implemented. 2. Mplayer wrapping module: The client includes an mplayer wrapping module, with which the client operates as a frontend of mplayer executing mplayer as a slave mode. When run with slave mode, mplayer will read primitive commands from stdin and returns the results to stdout. Since the client need to communicate directly with mplayer between the user and mplayer, the client wrapping module forks mplayer program and communicates with it through a pipe line, through which control primitives are delivered and mplayer applies the commands. 3. mplayer: To enable a dynamic control of FF/REW in mplayer, I intended to add to mplayer source code a functionality requesting a streaming data of a certain position and make a streaming server facilitate the requests. After analyzing the mplayer source code I found that mplayer has a minimal support for the dynamic control over streaming video and I used the mechanism with some modifications to compile. Figure 4 shows the streaming protocol and how FF/REW dynamic control mechanism is performed based on the streaming protocol. In dynamic control over streams, some commands like 3

4 (a) streaming protocol (b) a streaming control process Figure 4: Dynamic controlling PAUSE and FF/REW are implemented directly with supported primitive commands: pause and seek. However, a RESIZE control function could not be applied directly to the running stream. For that object, several consecutive phases were used: saving the stream position, rerunning mplayer with specified view size and relocating the position. 4. Communication module: the communication module is the interface to communicate with a server. It may request to retrieve a playable file list, add a video file with URL, and start a streaming service for an available streaming file. The communication was implemented on TCP/IP socket programming, and several protocol type and data structure were defined for the communication. 4.2 Server Server consists of three modules: a communication module, a downloading and converting module, a streaming module. The communication module permits multiple connections from clients. It accepts a connection from a client and delivers request commands to the corresponding module. The downloading and converting module uses wget and ffmpeg internally for downloading and coverting process. For a requested URL of video file from the client, this module executes downloading and converts the saved file into streaming format for the client with optimizing process. When the server is ready to start streaming service, the module notifies the client and the streaming module does streaming service for the client. To facilitate the dynamic control requests from the client, mplayer/libmpdemux/netstream and mplayer/tools/netstream source code were analyzed and used with some modification 5 Conclusion By designing and implementing the model, I could verify several benefits what I expected. First, using a third party server, the client could play a large sized non-stream video file in the Internet without using NFS and without client s need to save files, which is the actual scenario of the most cell phones. Second, during the testing process, I could see waiting time for a client to play a movie file is greatly reduced without loss of video quality. Thanks to the stable and fast wired network speed of the server, downloading time was greatly shortened and the conversion process reduced the saved file size below one fifth of the original 4

5 one thanks to optimizing process. It is required to prevent resource waste in cell phones. Finally, dynamic control over the streaming was enabled with the support of streaming server, which is necessary function for the resource-constrained cell phones. 6 References 1. RFC RFC F Yu, Q Zhang, W Zhu, YQ Zhang, QoS-adaptive proxy caching for multimedia streaming over the Internet, Circuits and Systems for Video Technology, IEEE Transactions, ieeexplore.ieee.org 4. H Zheng, Optimizing wireless multimedia transmissions through cross layer design, Multimedia and Expo, ICME 03. Proceedings. 2003, ieeexplore.ieee.org 5. M Ries, R Puglia, T Tebaldi, O Nemethova, M Rupp, Audiovisual Quality Estimation for Mobile Streaming Services, Wireless Communication Systems, nd International, ieeexplore.ieee.org 6. YF Chen, H Huang, R Jana, S John, S Jora, A, Personalized multimedia services using a mobile service platform, Wireless Communications and Networking Conference, 2002., ieeexplore.ieee.org 7. SI Kang, J Song, SK Bae, HK Lee, Access emulation and buffering techniques for streaming of nonstream format video files, Consumer Electronics, IEEE Transactions on, ieeexplore.ieee.org 5

Any Video Converter User Manual 1. Any Video Converter. User Manual

Any Video Converter User Manual 1. Any Video Converter. User Manual Any Video Converter User Manual 1 Any Video Converter User Manual Any Video Converter User Manual 2 1. Welcome to Any Video Converter...3 1.1 Main Window of Any Video Converter...3 1.2 Setting Program

More information

Microsoft Exchange ActiveSync Administrator s Guide

Microsoft Exchange ActiveSync Administrator s Guide Microsoft Exchange ActiveSync Administrator s Guide Copyright 2005 palmone, Inc. All rights reserved. palmone, HotSync, Treo, VersaMail, and Palm OS are among the trademarks or registered trademarks owned

More information

ICTTEN4215A Install and configure internet protocol TV in a service provider network

ICTTEN4215A Install and configure internet protocol TV in a service provider network ICTTEN4215A Install and configure internet protocol TV in a service provider network Release: 1 ICTTEN4215A Install and configure internet protocol TV in a service provider network Modification History

More information

Lab 6: Wireless Networks

Lab 6: Wireless Networks Lab 6: Wireless Networks EE299 Winter 2008 Due: In lab, the week of March 10-14. Objectives This lab will show a correlation among different network performance statistics with multimedia experiences,

More information

Wireless ATA: A New Data Transport Protocol for Wireless Storage

Wireless ATA: A New Data Transport Protocol for Wireless Storage Wireless ATA: A New Data Transport Protocol for Wireless Storage Serdar Ozler and Ibrahim Korpeoglu Department of Computer Engineering, Bilkent University, 06800 Bilkent, Ankara, Turkey {ozler, korpe}@cs.bilkent.edu.tr

More information

Sample Project List. Software Reverse Engineering

Sample Project List. Software Reverse Engineering Sample Project List Software Reverse Engineering Automotive Computing Electronic power steering Embedded flash memory Inkjet printer software Laptop computers Laptop computers PC application software Software

More information

Fragmented MPEG-4 Technology Overview

Fragmented MPEG-4 Technology Overview Fragmented MPEG-4 Technology Overview www.mobitv.com 6425 Christie Ave., 5 th Floor Emeryville, CA 94607 510.GET.MOBI HIGHLIGHTS Mobile video traffic is increasing exponentially. Video-capable tablets

More information

Any Video Converter Professional User Manual 1. Any Video Converter Professional. User Manual

Any Video Converter Professional User Manual 1. Any Video Converter Professional. User Manual Any Video Converter Professional User Manual 1 Any Video Converter Professional User Manual Any Video Converter Professional User Manual 2 1. Welcome to Any Video Converter Professional...3 1.1 Main Window

More information

Cisco Enterprise Content Delivery System (ECDS)

Cisco Enterprise Content Delivery System (ECDS) Solution Overview Cisco Enterprise Content Delivery System (ECDS) Solution Overview As the demand for enterprise video technologies increases, organizations are facing more demands on their network capacity

More information

VOD Encoder Fast HIDef Video Encoding

VOD Encoder Fast HIDef Video Encoding VOD Encoder Fast HIDef Video Encoding 1 What is VOD Encoder? VOD Encoder is the application which converts all high quality files into.mp4 or.flv videos or into HTML5/Mobile compatible files (mp4 and webm)

More information

Sangheon Pack, EunKyoung Paik, and Yanghee Choi

Sangheon Pack, EunKyoung Paik, and Yanghee Choi 1 Design of SIP Server for Efficient Media Negotiation Sangheon Pack, EunKyoung Paik, and Yanghee Choi Multimedia & Communication Laboratory, Seoul National University, Korea ABSTRACT Voice over IP (VoIP)

More information

Cisco Video Distribution Suite for Internet Streaming (VDS-IS)

Cisco Video Distribution Suite for Internet Streaming (VDS-IS) Data Sheet Cisco Video Distribution Suite for Internet Streaming (VDS-IS) With the ever-increasing demand for online video content propelled by changes in consumer behavior, service providers realize that

More information

A Scalable Multi-Server Cluster VoIP System

A Scalable Multi-Server Cluster VoIP System A Scalable Multi-Server Cluster VoIP System Ming-Cheng Liang Li-Tsung Huang Chun-Zer Lee Min Chen Chia-Hung Hsu mcliang@nuk.edu.tw {kpa.huang, chunzer.lee}@gmail.com {minchen, chhsu}@nchc.org.tw Department

More information

WJEC GCSE in Computer Science Computer Science Microsoft IT Academy Mapping

WJEC GCSE in Computer Science Computer Science Microsoft IT Academy Mapping WJEC GCSE in Computer Science Computer Science Microsoft IT Academy Mapping 1. Computer Systems 1.1 Identify and describe computer systems Windows Server Administration Fundamentals: Lesson 1 Server Overview

More information

RESEARCH PROFILE: VIDEO TECHNOLOGIES FOR NETWORKED MULTIMEDIA APPLICATIONS

RESEARCH PROFILE: VIDEO TECHNOLOGIES FOR NETWORKED MULTIMEDIA APPLICATIONS RESEARCH PROFILE: VIDEO TECHNOLOGIES FOR NETWORKED MULTIMEDIA APPLICATIONS Chia-Wen Lin ( 林 嘉 文 ) cwlin@cs.ccu.edu.tw Tel: (05) 272-0411 ext. 33120 Networked Video Lab Dept. CSIE National Chung Cheng University

More information

IMPROVING QUALITY OF VIDEOS IN VIDEO STREAMING USING FRAMEWORK IN THE CLOUD

IMPROVING QUALITY OF VIDEOS IN VIDEO STREAMING USING FRAMEWORK IN THE CLOUD IMPROVING QUALITY OF VIDEOS IN VIDEO STREAMING USING FRAMEWORK IN THE CLOUD R.Dhanya 1, Mr. G.R.Anantha Raman 2 1. Department of Computer Science and Engineering, Adhiyamaan college of Engineering(Hosur).

More information

About this document. The technical fundamentals

About this document. The technical fundamentals About this document This document is aimed at IT managers and senior developers who are very comfortable with IBM ISeries (i5/os, AS/400, AS400) and now want to understand the issues involved in developing

More information

IIS Media Services 3.0 Overview. Microsoft Corporation

IIS Media Services 3.0 Overview. Microsoft Corporation IIS Media Services 3.0 Overview Microsoft Corporation April 2010 Contents Contents...2 Introduction...4 IIS Media Services 3.0...4 Media Delivery Approaches Supported by Windows Server 2008 R2... 5 Goals

More information

4. H.323 Components. VOIP, Version 1.6e T.O.P. BusinessInteractive GmbH Page 1 of 19

4. H.323 Components. VOIP, Version 1.6e T.O.P. BusinessInteractive GmbH Page 1 of 19 4. H.323 Components VOIP, Version 1.6e T.O.P. BusinessInteractive GmbH Page 1 of 19 4.1 H.323 Terminals (1/2)...3 4.1 H.323 Terminals (2/2)...4 4.1.1 The software IP phone (1/2)...5 4.1.1 The software

More information

Computers Are Your Future. 2006 Prentice-Hall, Inc.

Computers Are Your Future. 2006 Prentice-Hall, Inc. Computers Are Your Future 2006 Prentice-Hall, Inc. Computers Are Your Future Chapter 3 Wired and Wireless Communication 2006 Prentice-Hall, Inc Slide 2 What You Will Learn... ü The definition of bandwidth

More information

Demonstration of Internet Protocol Television(IPTV) Khai T. Vuong, Dept. of Engineering, Oslo University College.

Demonstration of Internet Protocol Television(IPTV) Khai T. Vuong, Dept. of Engineering, Oslo University College. Demonstration of Internet Protocol Television(IPTV) 1 What is IPTV? IPTV is a general term of IP+TV = IPTV Delivery of traditional TV channels and video-ondemand contents over IP network. 2 IPTV Definition

More information

CLOUDDMSS: CLOUD-BASED DISTRIBUTED MULTIMEDIA STREAMING SERVICE SYSTEM FOR HETEROGENEOUS DEVICES

CLOUDDMSS: CLOUD-BASED DISTRIBUTED MULTIMEDIA STREAMING SERVICE SYSTEM FOR HETEROGENEOUS DEVICES CLOUDDMSS: CLOUD-BASED DISTRIBUTED MULTIMEDIA STREAMING SERVICE SYSTEM FOR HETEROGENEOUS DEVICES 1 MYOUNGJIN KIM, 2 CUI YUN, 3 SEUNGHO HAN, 4 HANKU LEE 1,2,3,4 Department of Internet & Multimedia Engineering,

More information

Multimedia Playback & Streaming

Multimedia Playback & Streaming Multimedia Playback & Streaming Shadab Rashid Jam 16 September 28 th, 2012 What are you interested in? Making multimedia apps for Consuming Audio/Video Dealing with content providers, looking for An application/client

More information

Bandwidth Adaptation for MPEG-4 Video Streaming over the Internet

Bandwidth Adaptation for MPEG-4 Video Streaming over the Internet DICTA2002: Digital Image Computing Techniques and Applications, 21--22 January 2002, Melbourne, Australia Bandwidth Adaptation for MPEG-4 Video Streaming over the Internet K. Ramkishor James. P. Mammen

More information

Windows Media Player 10 Mobile: More Music, More Choices

Windows Media Player 10 Mobile: More Music, More Choices Windows Media Player 10 Mobile: More Music, More Choices Windows Media Player 10 Mobile for Windows Mobile -based Smartphones and Pocket PCs is an all-in-one mobile media player that provides a rich media

More information

Serving Media with NGINX Plus

Serving Media with NGINX Plus Serving Media with NGINX Plus Published June 11, 2015 NGINX, Inc. Table of Contents 3 About NGINX Plus 3 Using this Guide 4 Prerequisites and System Requirements 5 Serving Media with NGINX Plus 9 NGINX

More information

SERIES H: AUDIOVISUAL AND MULTIMEDIA SYSTEMS Infrastructure of audiovisual services Communication procedures

SERIES H: AUDIOVISUAL AND MULTIMEDIA SYSTEMS Infrastructure of audiovisual services Communication procedures I n t e r n a t i o n a l T e l e c o m m u n i c a t i o n U n i o n ITU-T TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU Technical Paper (11 July 2014) SERIES H: AUDIOVISUAL AND MULTIMEDIA SYSTEMS Infrastructure

More information

Dissertation Title: SOCKS5-based Firewall Support For UDP-based Application. Author: Fung, King Pong

Dissertation Title: SOCKS5-based Firewall Support For UDP-based Application. Author: Fung, King Pong Dissertation Title: SOCKS5-based Firewall Support For UDP-based Application Author: Fung, King Pong MSc in Information Technology The Hong Kong Polytechnic University June 1999 i Abstract Abstract of dissertation

More information

Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions

Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions HOSTING Administrator Control Panel / Quick Reference Guide Page 1 of 9 Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions Exchange 2010 Outlook Profile Setup Page 2 of 9 Exchange

More information

Note that if at any time during the setup process you are asked to login, click either Cancel or Work Offline depending upon the prompt.

Note that if at any time during the setup process you are asked to login, click either Cancel or Work Offline depending upon the prompt. USC Marshall School of Business Academic Information Services Configuring Outlook 2010 RPC Over HTTP Protocol For Windows 7 Home Computers or Wireless Laptops The steps in this document cover how to configure

More information

Media Cloud Service with Optimized Video Processing and Platform

Media Cloud Service with Optimized Video Processing and Platform Media Cloud Service with Optimized Video Processing and Platform Kenichi Ota Hiroaki Kubota Tomonori Gotoh Recently, video traffic on the Internet has been increasing dramatically as video services including

More information

A Transport Protocol for Multimedia Wireless Sensor Networks

A Transport Protocol for Multimedia Wireless Sensor Networks A Transport Protocol for Multimedia Wireless Sensor Networks Duarte Meneses, António Grilo, Paulo Rogério Pereira 1 NGI'2011: A Transport Protocol for Multimedia Wireless Sensor Networks Introduction Wireless

More information

Quality Estimation for Streamed VoIP Services

Quality Estimation for Streamed VoIP Services Quality Estimation for Streamed VoIP Services Mousa Al-Akhras and Hussein Zedan STRL, De Montfort University, Leicester, UK makhras@dmu.ac.uk, hzedan@dmu.ac.uk http://www.cse.dmu.ac.uk/strl/index.html

More information

3 Software Defined Radio Technologies

3 Software Defined Radio Technologies 3 Software Defined Radio Technologies 3-1 Software Defined Radio for Next Generation Seamless Mobile Communication Systems In this paper, the configuration of the newly developed small-size software defined

More information

Multimedia Data Transmission over Wired/Wireless Networks

Multimedia Data Transmission over Wired/Wireless Networks Multimedia Data Transmission over Wired/Wireless Networks Bharat Bhargava Gang Ding, Xiaoxin Wu, Mohamed Hefeeda, Halima Ghafoor Purdue University Website: http://www.cs.purdue.edu/homes/bb E-mail: bb@cs.purdue.edu

More information

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note BlackBerry Enterprise Service 10 Secure Work Space for ios and Android Version: 10.1.1 Security Note Published: 2013-06-21 SWD-20130621110651069 Contents 1 About this guide...4 2 What is BlackBerry Enterprise

More information

Windows XP User guide for wired network v1.1

Windows XP User guide for wired network v1.1 User guide for wired network v1.1 Pagina 1 di 10 Wired configuration guide v1.1 Instructions for 1 Introduction These instructions are intended only for the native Microsoft tool for wired networks (supplicant).

More information

White Paper. Enterprise IPTV and Video Streaming with the Blue Coat ProxySG >

White Paper. Enterprise IPTV and Video Streaming with the Blue Coat ProxySG > White Paper Enterprise IPTV and Video Streaming with the Blue Coat ProxySG > Table of Contents INTRODUCTION................................................... 2 SOLUTION ARCHITECTURE.........................................

More information

Design and implementation of IPv6 multicast based High-quality Videoconference Tool (HVCT) *

Design and implementation of IPv6 multicast based High-quality Videoconference Tool (HVCT) * Design and implementation of IPv6 multicast based High-quality conference Tool (HVCT) * Taewan You, Hosik Cho, Yanghee Choi School of Computer Science & Engineering Seoul National University Seoul, Korea

More information

Mobile Devices: Server and Management Lesson 05 Service Discovery

Mobile Devices: Server and Management Lesson 05 Service Discovery Mobile Devices: Server and Management Lesson 05 Service Discovery Oxford University Press 2007. All rights reserved. 1 Service discovery An adaptable middleware in a device (or a mobile computing system)

More information

CSE 237A Final Project Final Report

CSE 237A Final Project Final Report CSE 237A Final Project Final Report Multi-way video conferencing system over 802.11 wireless network Motivation Yanhua Mao and Shan Yan The latest technology trends in personal mobile computing are towards

More information

Windows Server 2003 default services

Windows Server 2003 default services Windows Server 2003 default services To view a description for a particular service, hover the mouse pointer over the service in the Name column. The descriptions included here are based on Microsoft documentation.

More information

Network-Assisted Mobile Terminal Support Technology

Network-Assisted Mobile Terminal Support Technology Network-Assisted Mobile Terminal Support Technology Daisuke Ochi, Kenichi Yamazaki and Satoshi Tanaka The processing power of mobile terminals is greatly limited due to wireless links that disconnect under

More information

Anti-Virus Comparative

Anti-Virus Comparative Anti-Virus Comparative Performance Test Impact of Anti-Virus Software on System Performance Microsoft Forefront Endpoint Protection (Release Candidate) Language: English November 2010 Last Revision: 13

More information

How to Integrate Camera Live View into Web Application?

How to Integrate Camera Live View into Web Application? ACTi Knowledge Base Category: Installation & Configuration Note Sub-category: Integration Model: All Firmware: N/A Software: N/A Author: Published: 2009/12/30 Reviewed: 2011/11/30 How to Integrate Camera

More information

Streaming Stored Audio & Video

Streaming Stored Audio & Video Streaming Stored Audio & Video Streaming stored media: Audio/video file is stored in a server Users request audio/video file on demand. Audio/video is rendered within, say, 10 s after request. Interactivity

More information

TSIN02 - Internetworking

TSIN02 - Internetworking TSIN02 - Internetworking Lecture 9: SIP and H323 Literature: Understand the basics of SIP and it's architecture Understand H.323 and how it compares to SIP Understand MGCP (MEGACO/H.248) SIP: Protocol

More information

Collaborative Web Browsing Tool Supporting Audio/Video Interactive Presentations

Collaborative Web Browsing Tool Supporting Audio/Video Interactive Presentations 14th IEEE International Workshops on Enabling Technologies: Infrastructures for Collaborative Enterprises Linköping University, June 13 th 15 th, 2005, Linköping, Sweden Collaborative Web Browsing Tool

More information

DVoIP: DYNAMIC VOICE-OVER-IP TRANSFORMATIONS FOR QUALITY OF SERVICE IN BANDWIDTH CONSTRAINED ENVIRONMENTS

DVoIP: DYNAMIC VOICE-OVER-IP TRANSFORMATIONS FOR QUALITY OF SERVICE IN BANDWIDTH CONSTRAINED ENVIRONMENTS DVoIP: DYNAMIC VOICE-OVER-IP TRANSFORMATIONS FOR QUALITY OF SERVICE IN BANDWIDTH CONSTRAINED ENVIRONMENTS Matthew Craven, Tuong N. Le, and Patrick Lardieri Lockheed Martin Advanced Technology Laboratories

More information

CMB 207 1I Citrix XenApp and XenDesktop Fast Track

CMB 207 1I Citrix XenApp and XenDesktop Fast Track CMB 207 1I Citrix XenApp and XenDesktop Fast Track This fast paced course provides the foundation necessary for students to effectively centralize and manage desktops and applications in the datacenter

More information

Project Code: SPBX. Project Advisor : Aftab Alam. Project Team: Umair Ashraf 03-1853 (Team Lead) Imran Bashir 02-1658 Khadija Akram 04-0080

Project Code: SPBX. Project Advisor : Aftab Alam. Project Team: Umair Ashraf 03-1853 (Team Lead) Imran Bashir 02-1658 Khadija Akram 04-0080 Test Cases Document VOIP SOFT PBX Project Code: SPBX Project Advisor : Aftab Alam Project Team: Umair Ashraf 03-1853 (Team Lead) Imran Bashir 02-1658 Khadija Akram 04-0080 Submission Date:23-11-2007 SPBX

More information

System Services. Engagent System Services 2.06

System Services. Engagent System Services 2.06 System Services Engagent System Services 2.06 Overview Engagent System Services constitutes the central module in Engagent Software s product strategy. It is the glue both on an application level and on

More information

ENABLING WIRELESS DATA COMMUNICATION IN CONSTRUCTION MANAGEMENT SYSTEM

ENABLING WIRELESS DATA COMMUNICATION IN CONSTRUCTION MANAGEMENT SYSTEM ENABLING WIRELESS DATA COMMUNICATION IN CONSTRUCTION MANAGEMENT SYSTEM Liu Yanxiang & Yow Kin Choong School of Computer Engineering Nanyang Technological University Nanyang Avenue, Singapore 639798 Keywords:

More information

Fast remote data access for control of TCP/IP network using android Mobile device

Fast remote data access for control of TCP/IP network using android Mobile device RESEARCH ARTICLE OPEN ACCESS Fast remote data access for control of TCP/IP network using android Mobile device Vaibhav Muddebihalkar *, R.M Gaudar** (Department of Computer Engineering, MIT AOE Alandi

More information

USER GUIDE Chapter 20 Using Podcasts. Schoolwires Academic Portal Version 4.1

USER GUIDE Chapter 20 Using Podcasts. Schoolwires Academic Portal Version 4.1 USER GUIDE Chapter 20 Schoolwires Academic Portal Version 4.1 TABLE OF CONTENTS Introduction... 1 Adding a New Podcast Page... 3 Adding a New Episode... 5 Supported File Types... 5 What is an MP3 File?...

More information

CSE 3461 / 5461: Computer Networking & Internet Technologies

CSE 3461 / 5461: Computer Networking & Internet Technologies Autumn Semester 2014 CSE 3461 / 5461: Computer Networking & Internet Technologies Instructor: Prof. Kannan Srinivasan 08/28/2014 Announcement Drop before Friday evening! k. srinivasan Presentation A 2

More information

ereview Security Overview Security Overview

ereview Security Overview Security Overview Security Overview 1 This description is for information purpose only. Web4, a division of netguru, Inc., reserves the right to alter this description or to adapt it to technical conditions at any time.

More information

UPnP Control Point for Mobile Phones in Residential Networks

UPnP Control Point for Mobile Phones in Residential Networks 1 UPnP Control Point for Mobile Phones in Residential Networks Andreas Häber 1, Frank Reichert 2, and Andreas Fasbender 3 Abstract Together, Ericsson and HiA are studying the role of WiFi-enabled mobile

More information

CCNA R&S: Introduction to Networks. Chapter 5: Ethernet

CCNA R&S: Introduction to Networks. Chapter 5: Ethernet CCNA R&S: Introduction to Networks Chapter 5: Ethernet 5.0.1.1 Introduction The OSI physical layer provides the means to transport the bits that make up a data link layer frame across the network media.

More information

AXIS Video Capture Driver. AXIS Video Capture Driver. User s Manual

AXIS Video Capture Driver. AXIS Video Capture Driver. User s Manual AXIS Video Capture Driver User s Manual 1 Introduction The AXIS Video Capture Driver enables video stream input from one Axis network video product to be recorded and shown with third party products, e.g.

More information

The Digital Signage System Supporting Multi-Resources Schedule on an Elevator

The Digital Signage System Supporting Multi-Resources Schedule on an Elevator , pp. 219-228 http://dx.doi.org/10.14257/ijsh.2015.9.8.23 The Digital Signage System Supporting Multi-Resources Schedule on an Elevator Woon-Yong Kim and SoonGohn Kim (Corresponding Author) Department

More information

TMS Phone Books Troubleshoot Guide

TMS Phone Books Troubleshoot Guide TMS Phone Books Troubleshoot Guide Document ID: 118705 Contributed by Adam Wamsley and Magnus Ohm, Cisco TAC Engineers. Jan 05, 2015 Contents Introduction Prerequisites Requirements Components Used Related

More information

CONDIS. IT Service Management and CMDB

CONDIS. IT Service Management and CMDB CONDIS IT Service and CMDB 2/17 Table of contents 1. Executive Summary... 3 2. ITIL Overview... 4 2.1 How CONDIS supports ITIL processes... 5 2.1.1 Incident... 5 2.1.2 Problem... 5 2.1.3 Configuration...

More information

Section 6-Functional Requirements for IEEE 802.16m

Section 6-Functional Requirements for IEEE 802.16m Project IEEE 802.16 Broadband Wireless Access Working Group Title Section 6- Functional Requirements for IEEE 802.16m Date Submitted 2007-02-23 Source(s) Jeongki Kim Jaewon Lim

More information

EventCentre : Getting Started with the Universal Communications. Universal Communications Format Toolkit Overview. How UCF Works

EventCentre : Getting Started with the Universal Communications. Universal Communications Format Toolkit Overview. How UCF Works EventCentre : Getting Started with the Universal Communications InterCall, in partnership with WebEx, provides EventCentre web conferencing services. Because EventCentre is powered by WebEx, this guide

More information

MOBILITY AND MOBILE NETWORK OPTIMIZATION

MOBILITY AND MOBILE NETWORK OPTIMIZATION MOBILITY AND MOBILE NETWORK OPTIMIZATION netmotionwireless.com Executive Summary Wireless networks exhibit uneven and unpredictable performance characteristics which, if not correctly managed, can turn

More information

internet technologies and standards

internet technologies and standards Institute of Telecommunications Warsaw University of Technology 2015 internet technologies and standards Piotr Gajowniczek Andrzej Bąk Michał Jarociński multimedia in the Internet Voice-over-IP multimedia

More information

Service Identifier Comparison module Service Rule Comparison module Favourite Application Server Reinvocation Management module

Service Identifier Comparison module Service Rule Comparison module Favourite Application Server Reinvocation Management module Service Broker for Managing Feature Interactions in IP Multimedia Subsystem Anahita Gouya, Noël Crespi {anahita.gouya, noel.crespi @int-evry.fr}, Institut National des télécommunications (GET-INT) Mobile

More information

Big Data Storage Architecture Design in Cloud Computing

Big Data Storage Architecture Design in Cloud Computing Big Data Storage Architecture Design in Cloud Computing Xuebin Chen 1, Shi Wang 1( ), Yanyan Dong 1, and Xu Wang 2 1 College of Science, North China University of Science and Technology, Tangshan, Hebei,

More information

Administering the Web Server (IIS) Role of Windows Server

Administering the Web Server (IIS) Role of Windows Server Course 10972B: Administering the Web Server (IIS) Role of Windows Server Page 1 of 7 Administering the Web Server (IIS) Role of Windows Server Course 10972B: 4 days; Instructor-Led Introduction This course

More information

119, Munjiro, Yuseong-gu, Daejeon, Korea. {neofaith, mckim, torshong, kangsw}@icu.ac.kr 2 InfraLab, Korea Telecom

119, Munjiro, Yuseong-gu, Daejeon, Korea. {neofaith, mckim, torshong, kangsw}@icu.ac.kr 2 InfraLab, Korea Telecom A Mobility Management Scheme using - for Realtime Services across Heterogeneous Networks Hyelim Park 1 Myungchul Kim 1 Sooyong Lee 1 Sungwon Kang 1 Yongho Kim 2 1 School of Engineering, Information and

More information

LIVE VIDEO STREAMING USING ANDROID

LIVE VIDEO STREAMING USING ANDROID LIVE VIDEO STREAMING USING ANDROID Dharini Chhajed 1, Shivani Rajput 2 and Sneha Kumari 3 1,2,3 Department of Electronics Engineering, Padmashree Dr. D. Y. Patil Institute of Engineering and Technology,

More information

Administering the Web Server (IIS) Role of Windows Server 10972B; 5 Days

Administering the Web Server (IIS) Role of Windows Server 10972B; 5 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Administering the Web Server (IIS) Role of Windows Server 10972B; 5 Days

More information

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide Document Revision Date: Nov. 13, 2013 Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide i Contents Introduction... 1 Exchange 2010 Outlook

More information

Advanced Internetworking

Advanced Internetworking Advanced Internetworking Lab 5 - Multimedia networking rev 1.0 Markus Hidell Voravit Tanyingyong Royal Institute of Technology (KTH) Telecommunication Systems Lab (TSlab)

More information

Mobile Operating Systems Lesson 05 Windows CE Part 1

Mobile Operating Systems Lesson 05 Windows CE Part 1 Mobile Operating Systems Lesson 05 Windows CE Part 1 Oxford University Press 2007. All rights reserved. 1 Windows CE A 32 bit OS from Microsoft Customized for each specific hardware and processor in order

More information

Troubleshooting and Monitoring

Troubleshooting and Monitoring Combining QoE and QoS for Maximum Quality Assurance Throughout the Network This paper was first presented at SCTE Cable-Tec Expo 2013 held in Atlanta, GA. TV Everywhere is clearly the future of television

More information

COMP5426 Parallel and Distributed Computing. Distributed Systems: Client/Server and Clusters

COMP5426 Parallel and Distributed Computing. Distributed Systems: Client/Server and Clusters COMP5426 Parallel and Distributed Computing Distributed Systems: Client/Server and Clusters Client/Server Computing Client Client machines are generally single-user workstations providing a user-friendly

More information

VegaStream Network Design

VegaStream Network Design Design of a multimedia content-delivery service architecture for 3 rd generation networks Andrea Calvagna Dipartimento di Ingegneria Informatica e delle Telecomunicazioni Università di Catania Viale A.

More information

Python for Series 60 Platform

Python for Series 60 Platform F O R U M N O K I A Getting Started with Python for Series 60 Platform Version 1.2; September 28, 2005 Python for Series 60 Platform Copyright 2005 Nokia Corporation. All rights reserved. Nokia and Nokia

More information

Vulnerability Analysis on Mobile VoIP Supplementary Services and MITM Attack

Vulnerability Analysis on Mobile VoIP Supplementary Services and MITM Attack Vulnerability Analysis on Mobile VoIP Supplementary Services and MITM Attack You Joung Ham Graduate School of Computer Engineering, Hanshin University, 411, Yangsan-dong, Osan, Gyeonggi, Rep. of Korea

More information

The Win32 Network Management APIs

The Win32 Network Management APIs The Win32 Network Management APIs What do we have in this session? Intro Run-Time Requirements What's New in Network Management? Windows 7 Windows Server 2003 Windows XP Network Management Function Groups

More information

Communication Protocol Adapters in Sterling Integrator. 2009 IBM Corporation

Communication Protocol Adapters in Sterling Integrator. 2009 IBM Corporation Communication Protocol Adapters in Sterling Integrator Agenda Overview of communications adapters in Sterling Integrator (SI) Important concepts Perimeter Server Mailbox Key management HTTP(S) related

More information

Live and On-Demand Video with Silverlight and IIS Smooth Streaming

Live and On-Demand Video with Silverlight and IIS Smooth Streaming Live and On-Demand Video with Silverlight and IIS Smooth Streaming Microsoft Corporation February 2010 Contents Contents...2 Introduction...3 The Challenges Associated with Current Online Video Delivery

More information

6. Streaming Architectures 7. Multimedia Content Production and Management 8. Commercial Streaming Systems: An Overview 9. Web Radio and Web TV

6. Streaming Architectures 7. Multimedia Content Production and Management 8. Commercial Streaming Systems: An Overview 9. Web Radio and Web TV Outline (Preliminary) 1. Introduction and Motivation 2. Digital Rights Management 3. Cryptographic Techniques 4. Electronic Payment Systems 5. Multimedia Content Description Part I: Content-Oriented Base

More information

A Smart Telephone Answering Machine with Voice Message Forwarding Capability

A Smart Telephone Answering Machine with Voice Message Forwarding Capability A Smart Telephone Answering Machine with Voice Message Forwarding Capability Chih-Hung Huang 1 Cheng Wen 2 Kuang-Chiung Chang 3 1 Department of Information Management, Lunghwa University of Science and

More information

AUTOMATED AND ADAPTIVE DOWNLOAD SERVICE USING P2P APPROACH IN CLOUD

AUTOMATED AND ADAPTIVE DOWNLOAD SERVICE USING P2P APPROACH IN CLOUD IMPACT: International Journal of Research in Engineering & Technology (IMPACT: IJRET) ISSN(E): 2321-8843; ISSN(P): 2347-4599 Vol. 2, Issue 4, Apr 2014, 63-68 Impact Journals AUTOMATED AND ADAPTIVE DOWNLOAD

More information

Integrating a Hitachi IP5000 Wireless IP Phone

Integrating a Hitachi IP5000 Wireless IP Phone November, 2007 Avaya Quick Edition Integrating a Hitachi IP5000 Wireless IP Phone This application note explains how to configure the Hitachi IP5000 wireless IP telephone to connect with Avaya Quick Edition

More information

R&S IP-GATE IP gateway for R&S MKS9680 encryption devices

R&S IP-GATE IP gateway for R&S MKS9680 encryption devices Secure Communications Product Brochure 0.00 R&S IP-GATE IP gateway for encryption devices R&S IP-GATE At a glance The R&S IP-GATE is an IP interface for the encryption device. Used with the, the R&S IP-GATE

More information

STANDARDS FOR AGENTS AND AGENT BASED SYSTEMS (FIPA)

STANDARDS FOR AGENTS AND AGENT BASED SYSTEMS (FIPA) Course Number: SENG 609.22 Session: Fall, 2003 Course Name: Agent-based Software Engineering Department: Electrical and Computer Engineering Document Type: Tutorial Report STANDARDS FOR AGENTS AND AGENT

More information

ENHANCING MOBILE PEER-TO-PEER ENVIRONMENT WITH NEIGHBORHOOD INFORMATION

ENHANCING MOBILE PEER-TO-PEER ENVIRONMENT WITH NEIGHBORHOOD INFORMATION ENHANCING MOBILE PEER-TO-PEER ENVIRONMENT WITH NEIGHBORHOOD INFORMATION Arto Hämäläinen and Jari Porras Lappeenranta University of Technology Laboratory of Communications Engineering P.O. Box 20 53851

More information

Topics in Website Testing. [Reading assignment: Chapter 14, pp. 211-227]

Topics in Website Testing. [Reading assignment: Chapter 14, pp. 211-227] Topics in Website Testing [Reading assignment: Chapter 14, pp. 211-227] How to test a website Easiest way to start is by treating the web site as a black box. Look at a sample website such as www.apple.com

More information

A Network Simulation Experiment of WAN Based on OPNET

A Network Simulation Experiment of WAN Based on OPNET A Network Simulation Experiment of WAN Based on OPNET 1 Yao Lin, 2 Zhang Bo, 3 Liu Puyu 1, Modern Education Technology Center, Liaoning Medical University, Jinzhou, Liaoning, China,yaolin111@sina.com *2

More information

Requirements and Service Scenarios for QoS enabled Mobile VoIP Service

Requirements and Service Scenarios for QoS enabled Mobile VoIP Service Requirements and Service Scenarios for QoS enabled Mobile VoIP Service Kyu Ouk Lee, Ho Young Song Electronics and Telecommunications Research Institute (ETRI) kolee@etri.re.kr, hsong@etri.re.kr Abstract.

More information

Peer to Peer Proxy based IPTV Services

Peer to Peer Proxy based IPTV Services Peer to Peer Proxy based IPTV Services Shiddhartha Raj Bhandari, Gyu Myoung Lee, and Noel Crespi Department of Wireless Networks and Multimedia Services Institute TELECOM, TELECOM SudParis 9 rue Charles

More information

How To Record A Webex Meeting On Blackboard On A Pc Or Mac Or Mac (For Mac) On A Computer Or Ipad Or Ipa (For Pc Or Ipo) On Your Computer Or Mac) Or Ipode (For Ip

How To Record A Webex Meeting On Blackboard On A Pc Or Mac Or Mac (For Mac) On A Computer Or Ipad Or Ipa (For Pc Or Ipo) On Your Computer Or Mac) Or Ipode (For Ip Recording and Downloading Your WebEx Meetings Instructions for ConnSCU Faculty and Staff BEFORE YOU BEGIN PLEASE READ! On 7/30/15, the ConnSCU WebEx site was upgraded to a new version. Although the new

More information

A Service Platform for Subscription-Based Live Video Streaming

A Service Platform for Subscription-Based Live Video Streaming A Service Platform for Subscription-Based Live Video Streaming Kelum Vithana 1, Shantha Fernando 2, Dileeka Dias 3 1 Dialog - University of Moratuwa Mobile Communications Research Laboratory 2 Department

More information

OPTIMIZED CONSUMPTION AND ACCESS OF REMOTE DISPLAY ON MOBILE DEVICE ENVIRONMENT

OPTIMIZED CONSUMPTION AND ACCESS OF REMOTE DISPLAY ON MOBILE DEVICE ENVIRONMENT IMPACT: International Journal of Research in Engineering & Technology (IMPACT: IJRET) ISSN(E): 2321-8843; ISSN(P): 2347-4599 Vol. 2, Issue 2, Feb 2014, 167-174 Impact Journals OPTIMIZED CONSUMPTION AND

More information

Mapping of Services on Bluetooth Radio Networks

Mapping of Services on Bluetooth Radio Networks Mapping of s on Bluetooth Radio Networks J. Dunlop and N. Amanquah University of Strathclyde -Department of Electronic and Electrical Engineering, Glasgow G1 1XW, Scotland Ph.: +44 141 5482081, Fax:+44

More information

Remote Desktop Protocol Performance

Remote Desktop Protocol Performance MICROSOFT Remote Desktop Protocol Performance Presentation and Hosted Desktop Virtualization Team 10/13/2008 Contents Overview... 3 User Scenarios... 3 Test Setup... 4 Remote Desktop Connection Settings...

More information