CS3051 Digital Content Management Lecture: File Transfer and Media Streaming

Size: px
Start display at page:

Download "CS3051 Digital Content Management Lecture: File Transfer and Media Streaming"

Transcription

1 CS3051 Digital Content Management Lecture: File Transfer and Media Streaming Adrian O Riordan, Computer Science, Western Gateway Building, University College Cork, Cork, Ireland

2 File sharing File sharing is the practice of distributing or providing access to digital media, such as text, computer programs, multimedia (audio, images and video), documents or electronic books. Various methods exist:- file transfer (FTP) Web (HTTP) Web syndication (RSS) IM cloud media streaming peer-to-peer (e.g. BitTorrent) Best approach depends on requirements: type of data size of data security requirements... 2

3 File sharing in CMSes CMSes will usually use Web (HTTP) but also facilitate file sharing in multiple other ways Drupal supports upload, download and content sharing using HTTP with caching; and other methods of file sharing through APIs and modules: Various core modules for processing FileTransfer class for FTP SMS Gateway Hub API to send SMS messages Streaming CCK (Content Construction Kit) field to facilitate streaming Syndication Modules for RSS 3

4 File Transfer Enables sending and receiving of (text or binary) files over the Internet Requires an application program on the client computer and a server program on a server Well known protocol is FTP (File Transfer Protocol) note: FTP was one of first ARPANET/Internet applications; RFC FTP has official URI scheme ftp: FTP uses TCP as the transport protocol Other file transfer protocols on Internet e.g. Trivial File Transfer Protocol (uses UDP; simpler than FTP); 4

5 How FTP Works Client initiates connection user commands such as GET are translated into FTP commands such as RETR separate control and data connections two most common transfer modes are ASCII mode and binary mode Protocol Interpreter (PI) implements the FTP protocol itself (port 21), while Data Transfer Process (DTP) performs data transfer using separate TCP session (port 20) control connection open for the duration of the session server responds on the control connection with three digit status codes data connection for transfer FTP sites can requires an account name and password 5

6 Web (HTTP) HTTP protocol is based on request/response In general case (RFC 2616): Client establishes a connection with a server and sends a request to the server in the form of a request method, URI, and protocol version, followed by a MIME-like message containing request modifiers, client information, and possible body content. Server responds with a status line, including the message's protocol version and a success or error code, followed by a MIME-like message containing server information, entity meta-information, and possible body content. 6

7 How the Web Works Clicking on a hyperlink or typing a URL into a browser starts a requestresponse cycle A request-response cycle: include multiple steps since web pages often contain embedded files, such as graphics, each requiring a separate response. 7

8 Web Proxy A browser may connect directly to a Web server or instead use a Web proxy Web proxy is an intermediary that handles requests from clients, evaluates the request before connecting to the relevant server The primary purposes of a Web proxy are security, caching and possibly content filtering proxy can also anonymize clients so server would not be able to distinguish access patterns of any particular clients proxy can transform requests and responses, e.g. tailor response to particular browser proxy can act as gateway to non-http services, e.g. FTP, if browser does not support this Common techniques for content filtering include URL or DNS blacklists, MIME filtering, and keyword matching. 8

9 Caching Web caching can improve performance, server load but not all responses are usefully cacheable Basic operation: If the cache contains the referenced URL it is checked for freshness by comparing with the "Expires:" date field of the content. Fresh objects are delivered to the client as a cache hit. If the cache does not have a local copy of the URL, or the object is stale, this is a cache miss. In this case the proxy acts as an agent for the client, opens its own session to the server named in the URL, and attempts a direct transfer to the proxy. (summary of part of "Web Caching", Cisco documentation) Wide variety of architectures and configurations of caches and proxies currently being experimented with or deployed across the Web e.g. national hierarchies of proxy caches to save transoceanic bandwidth 9

10 Web Syndication Many periodically updated Web sites have facility to syndication content called feeds orange symbol signifying an RSS feed XML based feed formats allow users to get updated site content in their favorite reader software (web-based or desktop-based) Used for portals, news, blogs, podcasting (streaming audio) and community-based sites Easy to parse, publish, filter, share or aggregate content from multiple sources

11 Syndication Technologies RSS was born in 1997 Userland s "Really Simple Syndication" for blog updates, and Netscape's "RDF Site Summary" RSS is a family of XML feed formats used to publish frequently updated content file format.xml or.rss different formats: RSS 2.0, RSS 1.0, RSS 0.90, RSS 0.91 (two) there are incompatibilities between the different versions some versions support multimedia and podcasting Atom is main alternative to RSS designed to overview shortcoming; also XML based

12 Atom feed Example single entry <?xml version="1.0" encoding="utf-8"?> <feed xmlns=" <title>example Feed</title> <link href=" <updated> t18:30:02z</updated> <author> <name>john Doe</name> </author> <id>urn:uuid:60a76c80-d399-11d9-b93c e0af6</id> <entry> <title>atom-powered Robots Run Amok</title> <link href=" <id>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id> <updated> t18:30:02z</updated> <summary>some text.</summary> </entry> </feed>

13 Cloud-based sharing service Cloud-based file syncing and sharing services allow users to create special folders (data is generally stored on remote servers), which the service then synchronizes so that it appears to be the same folder regardless of which computer is used to view it. content could be accessible on desktop or through website or mobile app commonly used for backups and to facilitate multiple modes of access Automatic process prevents copying already identical files and thus can be faster and save much time versus a manual copy, and less error prone Popular consumer products include Dropbox and Google Drive. 13

14 Handling media files Issues to consider: Very large file sizes Some information loss may be tolerated Requirement for live broadcast? Is Digital Rights Management (DRM) required? 14

15 Media Streaming Streaming is a method of transmitting or receiving data (especially video and audio) over a computer network as a steady, continuous flow, allowing playback to proceed while subsequent data is being received. with a sufficiently fast Internet connection, you can stream live audio or video to your computer. Streaming server delivers the data over the network Client media player usually begins playing the data (such as a movie) before the entire file has been transmitted (after part is buffered). Media are generally compressed for both storage and streaming. 15

16 Basic operation 16

17 Streaming media bandwidth & storage size The storage size of media on the streaming server is calculated from the streaming bandwidth and length of the media using the following formula (for a single user and file): storage size (in GB) = length (in seconds) bit rate (in bit/s) / (8 x 10 9 ) Example: One hour of video encoded at 4 Mbit/s (sufficient for HD video of 1280 x 720 pixels) will require around (3,600 s 4,000,000 bit/s) / ( ) = 1.8 GB of storage. For 1,000 users (unicast) the bandwidth requirement is then 4 Mbit/s 1,000 = 4 Gbit/s of bandwidth Services such as Netflix, Amazon Prime, etc. can determine the speed that a video is streaming and will adjust the video quality to match that speed. 17

18 Media and Streaming Protocols Audio streams are compressed using audio codecs such as MP3, Vorbis or AAC. Video streams are compressed using video codecs such as MPEG-4 Part 2 and H.264. Encoded audio and video streams are assembled in a container bitstream such as MP4, Ogg, and Flash (FLV/F4V). The bitstream is delivered from a streaming server to a client using protocols, such as Microsoft Media Server (MMS), Real-time Streaming Protocol (RTSP), Real-time Transport Protocol (RTP) or Real Time Messaging Protocol (RTMP) or with newer technologies that use HTTP such as HTTP Live Streaming (HLS) and Dynamic Adaptive Streaming over HTTP (DASH). 18

19 HTTP Downloading vs. Streaming HTTP can be slower than dedicated streaming protocols With streaming, client doesn t need to store whole file Streaming will have a buffer (e.g. keeps video playing in the event of an interruption of the internet connection). In downloading, DRM depends on file format used Streaming server may allow provision of content is different qualities (for slow or fast connections) HTTP Progressive download has characteristics of both 19

20 Delivery Unicast protocols send a separate copy of the media stream from the server to each recipient. unicast is the norm for most Internet connections, but does not scale well Multicast protocols send a single stream from the source to a group of recipients. Content delivery network or content distribution network (CDN) is a large distributed interconnected system of servers that use geographical proximity as a criteria for delivering content. with high availability and high performance. 20

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

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

Cisco TelePresence Content Server

Cisco TelePresence Content Server Q&A Cisco TelePresence Content Server The Cisco TelePresence Content Server enables organizations to record their video conferences and multimedia presentations for live and on-demand access. Whether it

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

Wowza Media Systems provides all the pieces in the streaming puzzle, from capture to delivery, taking the complexity out of streaming live events.

Wowza Media Systems provides all the pieces in the streaming puzzle, from capture to delivery, taking the complexity out of streaming live events. Deciding what event you want to stream live that s the easy part. Figuring out how to stream it? That s a different question, one with as many answers as there are options. Cameras? Encoders? Origin and

More information

LifeSize UVC Video Center Deployment Guide

LifeSize UVC Video Center Deployment Guide LifeSize UVC Video Center Deployment Guide November 2013 LifeSize UVC Video Center Deployment Guide 2 LifeSize UVC Video Center LifeSize UVC Video Center records and streams video sent by LifeSize video

More information

QuickTime Streaming. End-to-end solutions for live broadcasting and on-demand streaming of digital media. Features

QuickTime Streaming. End-to-end solutions for live broadcasting and on-demand streaming of digital media. Features QuickTime Streaming End-to-end solutions for live broadcasting and on-demand streaming of digital media. Features Unlimited cross-platform streaming Streams to standards-based media players on any platform

More information

EdgeCast Networks Inc. Flash Media Streaming Administration Guide

EdgeCast Networks Inc. Flash Media Streaming Administration Guide EdgeCast Networks Inc. Flash Media Streaming Administration Guide Disclaimer Care was taken in the creation of this guide. However, EdgeCast Networks Inc. cannot accept any responsibility for errors or

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

District of Columbia Courts Attachment 1 Video Conference Bridge Infrastructure Equipment Performance Specification

District of Columbia Courts Attachment 1 Video Conference Bridge Infrastructure Equipment Performance Specification 1.1 Multipoint Control Unit (MCU) A. The MCU shall be capable of supporting (20) continuous presence HD Video Ports at 720P/30Hz resolution and (40) continuous presence ports at 480P/30Hz resolution. B.

More information

Live and VOD OTT Streaming Practical South African Technology Considerations

Live and VOD OTT Streaming Practical South African Technology Considerations Live and VOD OTT Streaming Practical South African Technology Considerations Purpose of Presentation Discuss the state of video streaming technology in South Africa Discuss various architectures and technology

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

Azure Media Service Cloud Video Delivery KILROY HUGHES MICROSOFT AZURE MEDIA 2015.08.20

Azure Media Service Cloud Video Delivery KILROY HUGHES MICROSOFT AZURE MEDIA 2015.08.20 Azure Media Service Cloud Video Delivery KILROY HUGHES MICROSOFT AZURE MEDIA 2015.08.20 Azure Cloud Topology Public cloud providers such as Amazon Web Service, Google, IBM, Rackspace, etc. have similar

More information

4.3. Windows. Tutorial

4.3. Windows. Tutorial 4.3 Windows Tutorial May 2013 3 Introduction The best way to get started using Wirecast is to quickly work through all its main features. This tour presents a series of three tutorials, each designed

More information

Cisco Digital Media System: Comprehensive. Scalable. Network-Centric.

Cisco Digital Media System: Comprehensive. Scalable. Network-Centric. Cisco Digital Media System: Comprehensive. Scalable. Network-Centric. Executive Summary The Cisco Digital Media System (DMS) is a comprehensive suite of digital signage, Enterprise TV, and desktop video

More information

1 Introduction: Network Applications

1 Introduction: Network Applications 1 Introduction: Network Applications Some Network Apps E-mail Web Instant messaging Remote login P2P file sharing Multi-user network games Streaming stored video clips Internet telephone Real-time video

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

2- Electronic Mail (SMTP), File Transfer (FTP), & Remote Logging (TELNET)

2- Electronic Mail (SMTP), File Transfer (FTP), & Remote Logging (TELNET) 2- Electronic Mail (SMTP), File Transfer (FTP), & Remote Logging (TELNET) There are three popular applications for exchanging information. Electronic mail exchanges information between people and file

More information

Using TriCaster with YouTube Live. v.20140305

Using TriCaster with YouTube Live. v.20140305 v.20140305 Using TriCaster with YouTube Live YouTube Live is an increasingly popular web streaming provider. TriCaster works well with this service; in fact there are several different workflows available

More information

Lecture 33. Streaming Media. Streaming Media. Real-Time. Streaming Stored Multimedia. Streaming Stored Multimedia

Lecture 33. Streaming Media. Streaming Media. Real-Time. Streaming Stored Multimedia. Streaming Stored Multimedia Streaming Media Lecture 33 Streaming Audio & Video April 20, 2005 Classes of applications: streaming stored video/audio streaming live video/audio real-time interactive video/audio Examples: distributed

More information

Document OwnCloud Collaboration Server (DOCS) User Manual. How to Access Document Storage

Document OwnCloud Collaboration Server (DOCS) User Manual. How to Access Document Storage Document OwnCloud Collaboration Server (DOCS) User Manual How to Access Document Storage You can connect to your Document OwnCloud Collaboration Server (DOCS) using any web browser. Server can be accessed

More information

Video Streaming Without Interruption

Video Streaming Without Interruption Video Streaming Without Interruption Adaptive bitrate and content delivery networks: Are they enough to achieve high quality, uninterrupted Internet video streaming? WHITE PAPER Abstract The increasing

More information

Advanced Configuration Administration Guide

Advanced Configuration Administration Guide Advanced Configuration Administration Guide Active Learning Platform October 2015 Table of Contents Configuring Authentication... 1 PingOne... 1 LMS... 2 Configuring PingOne Authentication... 3 Before

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

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

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

HOSTING A LIFEWAY SIMULCAST

HOSTING A LIFEWAY SIMULCAST HOSTING A LIFEWAY SIMULCAST What is a Simulcast? A simulcast is not much different than a broadcast of your favorite weekly sitcom or sporting event. The main difference is how the broadcast is sent out

More information

2- Electronic Mail (SMTP), File Transfer (FTP), & Remote Logging (TELNET)

2- Electronic Mail (SMTP), File Transfer (FTP), & Remote Logging (TELNET) 2- Electronic Mail (SMTP), File Transfer (FTP), & Remote Logging (TELNET) There are three popular applications for exchanging information. Electronic mail exchanges information between people and file

More information

Alcatel-Lucent Multiscreen Video Platform RELEASE 2.2

Alcatel-Lucent Multiscreen Video Platform RELEASE 2.2 Alcatel-Lucent Multiscreen Video Platform RELEASE 2.2 Enrich the user experience and build more valuable customer relationships by delivering personal, seamless and social multiscreen video services Embrace

More information

SSL VPN Technology White Paper

SSL VPN Technology White Paper SSL VPN Technology White Paper Keywords: SSL VPN, HTTPS, Web access, TCP access, IP access Abstract: SSL VPN is an emerging VPN technology based on HTTPS. This document describes its implementation and

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

If you examine a typical data exchange on the command connection between an FTP client and server, it would probably look something like this:

If you examine a typical data exchange on the command connection between an FTP client and server, it would probably look something like this: Overview The 1756-EWEB and 1768-EWEB modules implement an FTP server; this service allows users to upload custom pages to the device, as well as transfer files in a backup or restore operation. Many IT

More information

DroboAccess User Manual

DroboAccess User Manual DroboAccess User Manual Release 8.2 The DroboAccess developers June 02, 2016 CONTENTS 1 DroboAccess 8.2 User Manual Introduction 1 2 Configuration of DroboAccess 8.2 3 2.1 Users, passwords and share management................................

More information

Network Technologies

Network Technologies Network Technologies Glenn Strong Department of Computer Science School of Computer Science and Statistics Trinity College, Dublin January 28, 2014 What Happens When Browser Contacts Server I Top view:

More information

Classes of multimedia Applications

Classes of multimedia Applications Classes of multimedia Applications Streaming Stored Audio and Video Streaming Live Audio and Video Real-Time Interactive Audio and Video Others Class: Streaming Stored Audio and Video The multimedia content

More information

Test 1 Review Chapter 1 What is a computer? 1. Definition of computer 2. Data and information. Emphasize that data is processed into information. 3.

Test 1 Review Chapter 1 What is a computer? 1. Definition of computer 2. Data and information. Emphasize that data is processed into information. 3. Test 1 Review Chapter 1 What is a computer? 1. Definition of computer 2. Data and information. Emphasize that data is processed into information. 3. Instructions 4. Describe the information processing

More information

ADVANTAGES OF AV OVER IP. EMCORE Corporation

ADVANTAGES OF AV OVER IP. EMCORE Corporation ADVANTAGES OF AV OVER IP More organizations than ever before are looking for cost-effective ways to distribute large digital communications files. One of the best ways to achieve this is with an AV over

More information

IxLoad TM Adobe HDS Player Emulation

IxLoad TM Adobe HDS Player Emulation IxLoad TM Adobe HDS Player Emulation HTTP Dynamic Streaming (HDS) is a solution developed by Adobe Systems to playback high quality live and on-demand content. The playback uses HTTP for streaming fragmented

More information

Demystifying CDNs: Building Video Enabled Networks That Maintain Your Network Integrity And Meet User Demand

Demystifying CDNs: Building Video Enabled Networks That Maintain Your Network Integrity And Meet User Demand An Enterprise Video Communications Industry Lite Paper Demystifying CDNs: Building Video Enabled Networks That Maintain Your Network Integrity And Meet User Demand Overview In recent years video has taken

More information

http://cloud.dailymotion.com July 2014

http://cloud.dailymotion.com July 2014 July 2014 Dailymotion Cloud Positioning Two video platforms based on one infrastructure Dailymotion.com DELIVER, SHARE AND MONETIZE YOUR VIDEO CONTENT Online sharing videos platform Dailymotion Cloud CONCRETIZE

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

Appendix A Current Scope of Government Public Cloud Services and Government Public Cloud Related Services

Appendix A Current Scope of Government Public Cloud Services and Government Public Cloud Related Services 1. Scope Appendix A The current scope of the Government Public Cloud Services covers four (4) service categories, namely Productivity Applications (Productivity Apps), Business Applications (Business Apps),

More information

Cisco TelePresence MCU MSE 8420

Cisco TelePresence MCU MSE 8420 Cisco TelePresence MCU MSE 8420 Figure 1. Cisco TelePresence MCU MSE 8420 Product Overview The Cisco TelePresence MCU MSE 8420 is the industry s leading chassis-based, standard-definition (SD), multimedia

More information

2MP H.264/ MPEG-4/ MJEPG

2MP H.264/ MPEG-4/ MJEPG 2-MegaPixel Outdoor 30fps 25 meter IR IPCAM T he is a high-end 2.0 MegaPixel (MP) network camera which designs for professional outdoor surveillance and security applications. This 2.0MP IP camera offers

More information

Streaming Media System Requirements and Troubleshooting Assistance

Streaming Media System Requirements and Troubleshooting Assistance Test Your System Streaming Media System Requirements and Troubleshooting Assistance Test your system to determine if you can receive streaming media. This may help identify why you are having problems,

More information

Livestream Studio. Release Notes & New Features!!! For use with Livestream Studio version 3.0.0. Published on April 13, 2015

Livestream Studio. Release Notes & New Features!!! For use with Livestream Studio version 3.0.0. Published on April 13, 2015 Livestream Studio! Release Notes & New Features!!! For use with Livestream Studio version 3.0.0! Published on April 13, 2015 Table of Contents 1. Release notes 2. 4K/UHD and low definition project formats

More information

Assignment # 1 (Cloud Computing Security)

Assignment # 1 (Cloud Computing Security) Assignment # 1 (Cloud Computing Security) Group Members: Abdullah Abid Zeeshan Qaiser M. Umar Hayat Table of Contents Windows Azure Introduction... 4 Windows Azure Services... 4 1. Compute... 4 a) Virtual

More information

Streaming Networks with VLC. Jean-Paul Saman jean-paul.saman@m2x.nl

Streaming Networks with VLC. Jean-Paul Saman jean-paul.saman@m2x.nl Streaming Networks with VLC Jean-Paul Saman jean-paul.saman@m2x.nl Jean-Paul Saman 2001 member of VideoLAN team PDA port (familiar linux distro) H3600/3800/3900 VideoLAN server Remote OSDmenu DVB-C/S/T

More information

Product Brochure. www.clickstreamtv.com

Product Brochure. www.clickstreamtv.com Overview is a Do-It-Yourself open source video platform designed for Small to Medium businesses. The system delivers video to any desktop or mobile device. Stream On Demand, Live, Pay-Per-View and Subscription,

More information

Help. F-Secure Online Backup

Help. F-Secure Online Backup Help F-Secure Online Backup F-Secure Online Backup Help... 3 Introduction... 3 What is F-Secure Online Backup?... 3 How does the program work?... 3 Using the service for the first time... 3 Activating

More information

Source-Live 1.3 User Guide

Source-Live 1.3 User Guide Source-Live 1.3 User Guide Source Elements 2005-2011 Source-Live 1.3 User Guide 1 1. Introducing Source-Live Source-Live is an RTAS and VST plug-in for Avid Pro Tools and supported VST hosts. Source- Live

More information

ACCREDITED SOLUTION. EXPLORER Core FTP

ACCREDITED SOLUTION. EXPLORER Core FTP ACCREDITED SOLUTION EXPLORER Core FTP Document Name: EXPLORER Core FTP Revision: B Introduction: Typical Users: Product Description: This document describes the Core FTP (File Transfer Protocol) software

More information

Contents. Getting Set Up... 3. Contents 2

Contents. Getting Set Up... 3. Contents 2 Getting Set Up Contents 2 Contents Getting Set Up... 3 Setting up Your Firewall for Video...3 Configuring Video... 3 Exporting videos... 4 Security for Jive Video Communication... 4 Getting Set Up 3 Getting

More information

1.3 Mega-Pixel Video Quality

1.3 Mega-Pixel Video Quality AirCam POE-250HD H.264 1.3 MegaPixel POE Vandal Proof Dome T he POE-250HD is a high-end 1.3 MegaPixel network camera designed for professional outdoor surveillance and security applications. MegaPixel

More information

JW Player Quick Start Guide

JW Player Quick Start Guide JW Player Quick Start Guide Getting Started Embedding the JW Player on your website is a simple, 3-step process: 1. Upload the jwplayer.js and player.swf files from the download ZIP to your server. All

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

Media Server Installation & Administration Guide

Media Server Installation & Administration Guide Media Server Installation & Administration Guide Smarter Surveillance for a Safer World On-Net Surveillance Systems, Inc. One Blue Hill Plaza, 7 th Floor, PO Box 1555 Pearl River, NY 10965 Phone: (845)

More information

Introduction to Computer Security Benoit Donnet Academic Year 2015-2016

Introduction to Computer Security Benoit Donnet Academic Year 2015-2016 Introduction to Computer Security Benoit Donnet Academic Year 2015-2016 1 Agenda Networking Chapter 1: Firewalls Chapter 2: Proxy Chapter 3: Intrusion Detection System Chapter 4: Network Attacks Chapter

More information

AirCam POE-200HD. H.264 1.3 MegaPixel POE Dome. H.264 Compression. 1.3 Mega-Pixel Video Quality

AirCam POE-200HD. H.264 1.3 MegaPixel POE Dome. H.264 Compression. 1.3 Mega-Pixel Video Quality AirCam POE-200HD H.264 1.3 MegaPixel POE Dome T he AirLive AirCam POE-200HD is a highend 1.3 -megapixel network camera designed for professional indoor surveillance and security applications. Megapixel

More information

From Telephone Nuremberg

From Telephone Nuremberg Release Letter Product: H.264 Firmware for CPP5 encoder Version: Firmware 5.70.0028 This letter contains latest information about the above mentioned product. 1 General This firmware is a maintenance release

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

Digital Audio and Video Data

Digital Audio and Video Data Multimedia Networking Reading: Sections 3.1.2, 3.3, 4.5, and 6.5 CS-375: Computer Networks Dr. Thomas C. Bressoud 1 Digital Audio and Video Data 2 Challenges for Media Streaming Large volume of data Each

More information

EDA095 Audio and Video Streaming

EDA095 Audio and Video Streaming EDA095 Audio and Video Streaming Pierre Nugues Lund University http://cs.lth.se/pierre_nugues/ April 22, 2015 Pierre Nugues EDA095 Audio and Video Streaming April 22, 2015 1 / 35 What is Streaming Streaming

More information

WWA FTP/SFTP CONNECTION GUIDE KNOW HOW TO CONNECT TO WWA USING FTP/SFTP

WWA FTP/SFTP CONNECTION GUIDE KNOW HOW TO CONNECT TO WWA USING FTP/SFTP WWA FTP/SFTP CONNECTION GUIDE KNOW HOW TO CONNECT TO WWA USING FTP/SFTP Table OF Contents WWA FTP AND SFTP CONNECTION GUIDE... 3 What is FTP:... 3 What is SFTP:... 3 Connection to WWA VIA FTP:... 4 FTP

More information

IP-200PHD. 2 Mega-Pixels. 2.0 Mega Pixel Passive PoE IPCamera. High Quality 2.0 MegaPixel Image. Easy to Install. Pixels. Pixels.

IP-200PHD. 2 Mega-Pixels. 2.0 Mega Pixel Passive PoE IPCamera. High Quality 2.0 MegaPixel Image. Easy to Install. Pixels. Pixels. 2.0 Mega Pixel Passive PoE IPCamera S till couldn't find a way to watch your children or the elders when you are in busy or on duty? Or just need an easy solution for monitoring your office, store or garage?

More information

The Internet, the Web, and Electronic Commerce

The Internet, the Web, and Electronic Commerce The Internet, the Web, and Electronic Commerce Chapter 2 2014 by McGraw-Hill Education. This proprietary material solely for authorized instructor use. Not authorized for sale or distribution in any manner.

More information

SVN5800 Secure Access Gateway

SVN5800 Secure Access Gateway The development of networks allows enterprises to provide remote access to branch offices, partners, customers, mobile employees, and home offices so that they can access application and data resources,

More information

Podcasting: The Dawning and Spawning of a New Communications Tool

Podcasting: The Dawning and Spawning of a New Communications Tool Podcasting: The Dawning and Spawning of a New Communications Tool Podcasting: The Dawning and Spawning of a New Communications Tool As the ipod continues to change how music is purchased, delivered and

More information

White Paper Content Delivery Networks (CDN) for Live TV Streaming

White Paper Content Delivery Networks (CDN) for Live TV Streaming White Paper Content Delivery Networks (CDN) for Live TV Streaming Copyright 2011-2014 by Motama GmbH, Saarbrücken, Germany This White Paper presents Motama's solutions for building and running a streamlined

More information

PackeTV Mobile. http://www.vsicam.com. http://www.linkedin.com/company/visionary- solutions- inc. http://www.facebook.com/vsiptv

PackeTV Mobile. http://www.vsicam.com. http://www.linkedin.com/company/visionary- solutions- inc. http://www.facebook.com/vsiptv PackeTV Mobile Delivering HLS Video to Mobile Devices White Paper Created by Visionary Solutions, Inc. July, 2013 http://www.vsicam.com http://www.linkedin.com/company/visionary- solutions- inc. http://www.facebook.com/vsiptv

More information

CMS-PERFORMANCE. Advanced Multi-Channel Digital Signage Content Management Server. Main Features

CMS-PERFORMANCE. Advanced Multi-Channel Digital Signage Content Management Server. Main Features CMS-PERFORMANCE Advanced Multi-Channel Digital Signage Content Management Server CAYIN Network Digital Signage Solution (English, Deutsch, Italiano) CMS-PERFORMANCE Datasheet Send An Inquiry Get Acrobat

More information

Cisco Digital Media System: Cisco Digital Media Manager 5.1

Cisco Digital Media System: Cisco Digital Media Manager 5.1 Cisco Digital Media System: Cisco Digital Media Manager 5.1 The Cisco Digital Media System (DMS) is a comprehensive suite of digital signage, enterprise TV, and desktop video applications that allows companies

More information

Cross-channel protection GSelector s exclusive cross-station protection prevents the same song from playing at the same time across your stations.

Cross-channel protection GSelector s exclusive cross-station protection prevents the same song from playing at the same time across your stations. Music scheduling reinvented GSelector is the world s first goal music scheduler; perfect for the diverse ways radio programmers deliver their stations to the audience. Build a better log GSelector virtually

More information

Mediasite. podcasting user guide

Mediasite. podcasting user guide Mediasite podcasting user guide Using Mediasite podcasting The Mediasite Podcast Generator converts on-demand Mediasite presentations to podcasts. In terms of Mediasite, a podcast is a collection of audio-only

More information

Practical advices for setting up IP streaming services.

Practical advices for setting up IP streaming services. Practical advices for setting up IP streaming services. 1. Overview of the problem. I want to stream. I am new to it. How do I go about it? I have a DSL with static IP. Now I can set up a streaming service

More information

SiteRemote 4 Cloud. Remote Monitoring. SaaS - Kiosk Remote Monitoring & Management Software

SiteRemote 4 Cloud. Remote Monitoring. SaaS - Kiosk Remote Monitoring & Management Software SiteRemote 4 Cloud Remote Monitoring SaaS - Kiosk Remote Monitoring & Management Software SiteRemote is a software solution used for remotely monitoring and maintaining client terminals running a Provisio

More information

Simple yet Powerful Storage

Simple yet Powerful Storage Simple yet Powerful Storage Featuring with new QTS 4.0 Operating System The TS-220 is a powerful yet easy to use network storage center for data storage, backup, synchronization, remote access, and home

More information

The World`s First Unified Media Server

The World`s First Unified Media Server The World`s First Unified Media Server Wowza Media Server 2 is not just a high-performance, extensible and a fully interactive Flash media server - it takes the proven Wowza Pro platform beyond Flash by

More information

Advanced Higher Computing. Computer Networks. Homework Sheets

Advanced Higher Computing. Computer Networks. Homework Sheets Advanced Higher Computing Computer Networks Homework Sheets Topic : Network Protocols and Standards. Name the organisation responsible for setting international standards and explain why network standards

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

PERFORMANCE ANALYSIS OF VIDEO FORMATS ENCODING IN CLOUD ENVIRONMENT

PERFORMANCE ANALYSIS OF VIDEO FORMATS ENCODING IN CLOUD ENVIRONMENT Suresh Gyan Vihar University Journal of Engineering & Technology (An International Bi Annual Journal) Vol. 1, Issue 1, 2015, pp 1 5 ISSN: 2395 0196 PERFORMANCE ANALYSIS OF VIDEO FORMATS ENCODING IN CLOUD

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

Subscribe to RSS in Outlook 2007. Find RSS Feeds. Exchange Outlook 2007 How To s / RSS Feeds 1of 7

Subscribe to RSS in Outlook 2007. Find RSS Feeds. Exchange Outlook 2007 How To s / RSS Feeds 1of 7 Exchange Outlook 007 How To s / RSS Feeds of 7 RSS (Really Simple Syndication) is a method of publishing and distributing content on the Web. When you subscribe to an RSS feed also known as a news feed

More information

Update logo and logo link on A Master. Update Date and Product on B Master

Update logo and logo link on A Master. Update Date and Product on B Master Cover Be sure to: Update META data Update logo and logo link on A Master Update Date and Product on B Master Web Performance Metrics 101 Contents Preface...3 Response Time...4 DNS Resolution Time... 4

More information

A Live Online Lecture System Using Adaptive Streaming Over HTTP

A Live Online Lecture System Using Adaptive Streaming Over HTTP Proceedings of the World Congress on Electrical Engineering and Computer Systems and Science (EECSS 2015) Barcelona, Spain July 13-14, 2015 Paper. 304 A Live Online Lecture System Using Adaptive Streaming

More information

Mediasite How-To Guide

Mediasite How-To Guide 2005 Sonic Foundry, Inc. All rights reserved. No part of this document may be copied and/or redistributed without the consent of Sonic Foundry, Inc. Additional copies may be obtained by contacting Sonic

More information

Personal Cloud. Support Guide for Mac Computers. Storing and sharing your content 2

Personal Cloud. Support Guide for Mac Computers. Storing and sharing your content 2 Personal Cloud Support Guide for Mac Computers Storing and sharing your content 2 Getting started 2 How to use the application 2 Managing your content 2 Adding content manually 3 Renaming files 3 Moving

More information

Multicast File and Screen Sharing using Wi-Fi Connectivity

Multicast File and Screen Sharing using Wi-Fi Connectivity Multicast File and Screen Sharing using Wi-Fi Connectivity Marylene Saldon-Eder Minndanao University of Science and Technology Lapasan Cagayan de Oro City, Philippines mseder@must.edu.ph Abstract. In this

More information

Frequently Asked Questions. Troubleshooting

Frequently Asked Questions. Troubleshooting Frequently Asked Questions & Troubleshooting What is DisplayNote? DisplayNote is versatile, multi-platform, collaboration and annotation software, combining both the presentation aspects of interactive

More information

By Kundan Singh Oct 2010. Communication

By Kundan Singh Oct 2010. Communication Flash Player Audio Video Communication By Kundan Singh Oct 2010 Modern multimedia communication systems have roots in several different technologies: transporting video over phone lines, using multicast

More information

Executive Brief for Sharing Sites & Digital Content Providers. Leveraging Hybrid P2P Technology to Enhance the Customer Experience and Grow Profits

Executive Brief for Sharing Sites & Digital Content Providers. Leveraging Hybrid P2P Technology to Enhance the Customer Experience and Grow Profits Executive Brief for Sharing Sites & Digital Content Providers Leveraging Hybrid P2P Technology to Enhance the Customer Experience and Grow Profits Executive Summary The Opportunity/Challenge The revenue

More information

Multimedia Communications Voice over IP

Multimedia Communications Voice over IP Multimedia Communications Voice over IP Anandi Giridharan Electrical Communication Engineering, Indian Institute of Science, Bangalore 560012, India Voice over IP (Real time protocols) Internet Telephony

More information

Cisco TelePresence Content Server

Cisco TelePresence Content Server Figure 1. Product Overview With the Cisco TelePresence Content Server (Content Server), your organization can share knowledge and enhance communication by recording video conferences. You can access live

More information

DOSarrest Security Services (DSS) Version 4.0

DOSarrest Security Services (DSS) Version 4.0 DOSarrest Security Services (DSS) Version 4.0 DOSarrest DSS User Guide The DSS is the main customer portal where customers can view and manipulate traffic statistics from a wide variety of variables that

More information

Citrix Desktop Virtualization Fast Track

Citrix Desktop Virtualization Fast Track Citrix Desktop Virtualization Fast Track Description: Days: 5 Prerequisites: This fast-paced course provides the foundation necessary for students to effectively centralize and manage desktops and applications

More information

How To Watch A Live Webcast On A Pc Or Mac Or Ipad (For Pc Or Ipa)

How To Watch A Live Webcast On A Pc Or Mac Or Ipad (For Pc Or Ipa) FAQ Welcome to the F.A.Q. (Frequently Asked Questions). You may be connecting to the internet through a network that has restrictions on the type of content which can be viewed. This can occur in any network

More information

Configuration Guide. BES12 Cloud

Configuration Guide. BES12 Cloud Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need

More information

Content Management Software Drupal : Open Source Software to create library website

Content Management Software Drupal : Open Source Software to create library website Content Management Software Drupal : Open Source Software to create library website S.Satish, Asst Library & Information Officer National Institute of Epidemiology (ICMR) R-127, Third Avenue, Tamil Nadu

More information

Video streaming and playback

Video streaming and playback Video streaming and playback January 2006 Sony Ericsson mobile phones Preface Purpose of this document This Developers Guideline contains descriptions of the streaming video standards supported in Sony

More information

WN-200HD. 2 Mega-Pixels. 2.0 Mega Pixel Wireless 150Mbps IPCamera. High Quality 2.0 MegaPixel Image. Full Feature 150Mbps Wireless N Camera

WN-200HD. 2 Mega-Pixels. 2.0 Mega Pixel Wireless 150Mbps IPCamera. High Quality 2.0 MegaPixel Image. Full Feature 150Mbps Wireless N Camera 2.0 Mega Pixel Wireless 150Mbps IPCamera S till couldn't find a way to watch your children or the elders when you are in busy or on duty? Or just need an easy solution for monitoring your office, store

More information