Microsoft Silverlight

Size: px
Start display at page:

Download "Microsoft Silverlight"

Transcription

1 Microsoft Silverlight for SelenioFlex Ingest February 2015

2 for SelenioFlex Ingest Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and its contents to be proprietary and confidential. Except for making a reasonable number of copies for your own internal use, you may not reproduce this publication, or any part thereof, in any form, by any method, for any purpose, or in any language other than English without the written consent of Imagine Communications. All others uses are illegal. This publication is designed to assist in the use of the product as it exists on the date of publication of this manual, and may not reflect the product at the current time or an unknown time in the future. This publication does not in any way warrant description accuracy or guarantee the use for the product to which it refers. Imagine Communications reserves the right, without notice to make such changes in equipment, design, specifications, components, or documentation as progress may warrant to improve the performance of the product. Trademarks Stream Live and SelenioFlex Ingest are trademarks or trade names of Imagine Communications or its subsidiaries. Microsoft and Windows are registered trademarks of Microsoft Corporation. All other trademarks and trade names are the property of their respective companies. Contact Information Imagine Communications has office locations around the world. For domestic and international location and contact information, visit our Contact page ( Support Contact Information For domestic and international support contact information see: Support Contacts ( ecustomer Portal ( Academy Training ( Imagine Communications Corp. Proprietary and Confidential. Page 2

3 Contents Contents SelenioFlex Ingest and Microsoft Silverlight... 4 Sample Project for Silverlight Publishing with Imagine Communications SelenioFlex Ingest... 4 Using the Sample Project... 4 Inner Workings of the Sample Project... 5 Audio for Silverlight... 5 Manual File Management for SelenioFlex Ingest LE Users... 5 How the SelenioFlex Ingest Publish Template Works... 6 Notes on Creating New Templates Imagine Communications Corp. Proprietary and Confidential. Page 3

4 SelenioFlex Ingest and Microsoft Silverlight The Imagine Communications SelenioFlex Ingest software s Publish output feature, combined with the SelenioFlex Ingest system tags capability, enables automated publishing into Microsoft Silverlight templates. Sample Project for Silverlight Publishing with Imagine Communications SelenioFlex Ingest The provided Silverlight player template and project file can be used as a reference for creating your own Silverlight publishing workflow for transcoding from existing media files or for automatically creating the required Silverlight files at the end of live encoding. Using the Sample Project The Silverlight_Sample_Project.prj is in C:\Program Files\Imagine Communications\SelenioFlex Ingest\Stream\Projects\Silverlight The supporting templates can be found in C:\Program Files\Imagine Communications\SelenioFlex Ingest\PublishTemplates\Silverlight_Sample 1. In the SelenioFlex Ingest software, open the project Silverlight_Sample_Project.prj. The project includes a Windows Media codec profile set to the native resolution of the included sample Silverlight Player template, targeting a 640x360 (16:9) video output. The codec profile settings assume that you are transcoding from source video with a progressive frames per second (such as 1080p high-definition content) along with stereo audio; the profile can be edited to accommodate your source footage, but do not change the audio codec setting from Windows Media Audio 9.2. Note that this audio codec only supports stereo or mono audio, so if your source file includes surround sound you will have to use the Audio Settings button to select the two channels you want to encode. 2. On the Input tab, select your source media file (or files, if the audio and video are separate). If you would like to encode from a live source, switch the input type to "Live Source" and then set up your video and audio Source Profile and hardware processing. 3. The Output tab has been pre-configured to perform the following operations: Output an archive.wmv file in the default output media directory, with the output filename as "Silverlight_%D_%_%T_%", where the %D_%_%T_% system tags are automatically replaced by the date and time when the encode was started 2015 Imagine Communications Corp. Proprietary and Confidential. Page 4

5 4. Use the Publish function to create a Silverlight startplayer.js JavaScript file pointing to the encoded output media file, based on the sample player template 5. Execute a Command script to move the above two resulting files into a dedicated subdirectory with the same name as the output video file, and copy required supporting Silverlight files into that subdirectory The moving of the resulting files into a uniquely named, dedicated subdirectory is important, as published Silverlight experiences consist of multiple supporting files, many of which always have the same name (and would thus overwrite each other if the the project was run multiple times with all output to the same directory). Note that the Command output feature is only available in SelenioFlex IngestPro and SelenioFlex IngestEnterprise. Users of SelenioFlex Ingest LE will need to manually move the output files and copy the Silverlight support files to accompany them. (See details in the following sections). 6. Once your codec profile and input sources are configured, hit Start to begin encoding. 7. Once encoding is complete, the Silverlight experience will be published. You can find the result in a subdirectory of your default output folder; the subdirectory will have the same name as your output video file (Silverlight_date_time). Within that folder, open the file Silverlight_Sample.html. If Silverlight is installed on your system, your Silverlight experience will be opened in your web browser, and your video will begin playing. If Silverlight is not yet installed, you will be instructed to install it. These files can be uploaded together to the Silverlight Streaming service or your web server for online use. Inner Workings of the Sample Project Audio for Silverlight As of this writing, the released version of Microsoft Silverlight does not support the Windows Media Audio 10 Professional codec; the Windows Media Audio 9.2 codec should be used for Silverlight compatibility. Manual File Management for SelenioFlex Ingest LE Users A Command script will automatically take care of file relocation and copying for SelenioFlex IngestPro and SelenioFlex IngestEnterprise users, but SelenioFlex Ingest LE users must perform the following three steps manually in Windows Explorer after the encode has completed. 1. Create a subdirectory (folder) for your finished Silverlight experience 2. Move the two output files created by the sample Silverlight project (one will be called StartPlayer.js, the other will be a.wmv file with the same base filename as your source input video file) from your default output directory into that new folder 3. Copy the following files from the SelenioFlex Ingest software PublishTemplates\ Silverlight_Sample folder (C:\Program Files\Imagine Communications\SelenioFlex Ingest\PublishTemplates Silverlight _Sample on most systems) into the new folder you created in step 1: 2015 Imagine Communications Corp. Proprietary and Confidential. Page 5

6 baseplayer.js DR_Logo_Horizontal_Positive200.png MicrosoftAjax.js player.js Player.xaml PlayerStrings.js Silverlight.js Silverlight._Sample.html Your Silverlight experience will then be ready to use as described earlier in this document. How the SelenioFlex Ingest Publish Template Works In this sample Silverlight player experience (which consists of multiple files), the elements that are created by SelenioFlex Ingest are the wmv media file and the StartPlayer.js Javascript file, which specifies information about the media file to be played by Silverlight. To create the StartPlayer.js file a SelenioFlex Ingest Publish template (Digital_Rapids_StartPlayer_ Template.js, one of the sample files provided) is used by the SelenioFlex Ingest Publish feature. Within this template, the system Tags %OF% (output filename) and %OE% (output extension) are used as placeholders for the encoded media file: function get_mediainfo(mediainfoindex) { switch (mediainfoindex) { case 0: return { "mediaurl": "%OF%.%OE%", "placeholderimage": "", "chapters": [ ] }; default: throw Error.invalidOperation("No such mediainfo"); } } By using this file as the template in the Publish feature on the SelenioFlex Ingest software s Output tab, and specifying StartPlayer.js as the published output (in the same directory as the output media file i.e. %od%\startplayer.js), the SelenioFlex Ingest Software will automatically create the new StartPlayer.js file, replacing the system tags in the template with the correct output filename and extension Imagine Communications Corp. Proprietary and Confidential. Page 6

7 Notes on Creating New Templates Note that if you wish to use the default Silverlight player templates provided with Microsoft applications (such as Expression Encoder), these player template files include other variables specific to those applications. Use Expression to output a test file through your desired player template once, and use the resulting output Silverlight player files as the basis for creating new templates for use with Imagine Communications SelenioFlex Ingest. (Simply insert the SelenioFlex Ingest system tags into the Expression-created startplayer.js file, and save that as a new SelenioFlex Ingest Publish template). If you are programming your own Silverlight player from scratch, you can include the SelenioFlex Ingest system tags directly into your code Imagine Communications Corp. Proprietary and Confidential. Page 7

NEXIO Insight Client v15.1

NEXIO Insight Client v15.1 NEXIO Insight Client v15.1 15-May-2015 Revision: Release Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and its contents

More information

Microsoft Smooth Streaming

Microsoft Smooth Streaming Microsoft Smooth Streaming for SelenioFlex Ingest August 2015 for SelenioFlex Ingest Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers

More information

Novar Database Mail Setup Guidelines

Novar Database Mail Setup Guidelines Database Mail Setup Guidelines August 2015 Delivering the Moment Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and

More information

User's Manual. iphone Codec. for SelenioFlex Ingest

User's Manual. iphone Codec. for SelenioFlex Ingest iphone Codec for SelenioFlex Ingest August 2015 for SelenioFlex Ingest Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document

More information

Nexio G8 SNMP Support

Nexio G8 SNMP Support 3/28/2014 175-100361-00 Publication Information 2014 Imagine Communications. Proprietary and Confidential. Imagine Communications considers this document and its contents to be proprietary and confidential.

More information

Nexio Insight LDAP Synchronization Service

Nexio Insight LDAP Synchronization Service Nexio Insight LDAP Synchronization Service 15-May-2015 Revision: Release Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document

More information

Video On Demand (VOD)

Video On Demand (VOD) User Guide Video On Demand (VOD) March 2015 Delivering the Moment Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document

More information

Users Guide. SelenioFlex File. Version 2.10.0

Users Guide. SelenioFlex File. Version 2.10.0 SelenioFlex File Version 2.10.0 August 2015 Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and its contents to be

More information

Microsoft SQL Replication

Microsoft SQL Replication Microsoft SQL Replication v1 28-January-2016 Revision: Release Publication Information 2016 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and

More information

Nexio Connectus Cluster Set Up with SQL Server Backend

Nexio Connectus Cluster Set Up with SQL Server Backend Nexio Connectus Cluster Set Up with SQL Server Backend 2.1.2 3/20/2014 Edition: A 2.1.2 Publication Information 2014 Imagine Communications. Proprietary and Confidential. Imagine Communications considers

More information

WIM Image Upgrade Instructions

WIM Image Upgrade Instructions v2.1 v2.1 Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and its contents to be proprietary and confidential. Except

More information

MS830 / MS833 Barcode Reader v1.0 9-December-2014

MS830 / MS833 Barcode Reader v1.0 9-December-2014 MS830 / MS833 Barcode Reader v1.0 9-December-2014 Publication Information 2014 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and its contents

More information

SQL Server 2012 - Express Edition

SQL Server 2012 - Express Edition SQL Server 2012 - Express Edition 20-August-2015 Revision: Release Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document

More information

SQL Server 2008 - Express Edition 8-April-2014

SQL Server 2008 - Express Edition 8-April-2014 SQL Server 2008 - Express Edition 8-April-2014 SQL Server 2008 - Express Edition Publication Information 2014 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers

More information

NEXIO 7.0 Software Release

NEXIO 7.0 Software Release Installation Guide NEXIO 7.0 Software Release September 2013 175-100474-00 Delivering the Moment Publication Information 2014 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications

More information

Nexio Insight EP Logger Application

Nexio Insight EP Logger Application Nexio Insight EP Logger Application v15.4 5/25/2016 Revision: Release v15.4 Publication Information 2016 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this

More information

Installation Guide. Non Linear Services. August 2015. Delivering the Moment

Installation Guide. Non Linear Services. August 2015. Delivering the Moment Non Linear Services August 2015 Delivering the Moment Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and its contents

More information

ADC Installation Reference. SQL Server 2012. 17-November-2014. Revision: Release

ADC Installation Reference. SQL Server 2012. 17-November-2014. Revision: Release ADC Installation Reference SQL Server 2012 17-November-2014 Revision: Release ADC Installation Reference Publication Information 2014 Imagine Communications Corp. Proprietary and Confidential. Imagine

More information

SelenioFlex TM Live Manager

SelenioFlex TM Live Manager User s Guide SelenioFlex TM Live Manager Product Version 2.1.0 06/11/2014 Publication Information 2014 Imagine Communications. Proprietary and Confidential. Imagine Communications considers this document

More information

Nexio Connectus with Nexio G-Scribe

Nexio Connectus with Nexio G-Scribe Nexio Connectus with Nexio G-Scribe 2.1.2 3/20/2014 Edition: A 2.1.2 Publication Information 2014 Imagine Communications. Proprietary and Confidential. Imagine Communications considers this document and

More information

ADC Windows 7 Professional

ADC Windows 7 Professional ADC Windows 7 Professional 8-April-2014 Revision: Release Publication Information 2014 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and its

More information

Nexio Backup and Recovery

Nexio Backup and Recovery Nexio Backup and Recovery 11/2/2015 175-100271-00 RevE Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and its contents

More information

Universal Management Service 2015

Universal Management Service 2015 Universal Management Service 2015 UMS 2015 Help All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

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

Spotify Homepage Takeover

Spotify Homepage Takeover Formats Spotify Homepage Takeover Build Guide Table of Contents Overview... 2 Supported Platforms... 3 Known Issues... 3 Implementing a Spotify Homepage Takeover... 3 Included Template Files... 3 HTML...

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

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

Windows Sever 2008: 32Bit For ADC Device Server and File Server Implementations Release: 9-February-2012 Rebrand: 30-April-2014

Windows Sever 2008: 32Bit For ADC Device Server and File Server Implementations Release: 9-February-2012 Rebrand: 30-April-2014 Windows Sever 2008: 32Bit For ADC Device Server and File Server Implementations Release: 9-February-2012 Rebrand: 30-April-2014 Publication Information 2014 Imagine Communications Corp. Proprietary and

More information

Mediasite A Video Content Management & Distribution Platform. Technical planner: TP-10

Mediasite A Video Content Management & Distribution Platform. Technical planner: TP-10 Mediasite A Video Content Management & Distribution Platform Technical planner: TP-10 2012 Sonic Foundry, Inc. All rights reserved. No part of this document may be copied and/or redistributed without the

More information

Application Note - JDSU PathTrak Video Monitoring System Data Backup and Restore Process

Application Note - JDSU PathTrak Video Monitoring System Data Backup and Restore Process Application Note - JDSU PathTrak Video Monitoring System Data Backup and Restore Process This Application Note provides instructions on how to backup and restore JDSU PathTrak Video Monitoring data. Automated

More information

SELF SERVICE RESET PASSWORD MANAGEMENT BACKUP GUIDE

SELF SERVICE RESET PASSWORD MANAGEMENT BACKUP GUIDE SELF SERVICE RESET PASSWORD MANAGEMENT BACKUP GUIDE Copyright 1998-2015 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by

More information

Video Encoding Best Practices

Video Encoding Best Practices Video Encoding Best Practices SAFARI Montage Creation Station and Managed Home Access Introduction This document provides recommended settings and instructions to prepare user-created video for use with

More information

VThis A PP NOTE PROCESSING P2 MEDIA WITH FLIPFACTORY

VThis A PP NOTE PROCESSING P2 MEDIA WITH FLIPFACTORY A PP NOTE PROCESSING P2 MEDIA WITH FLIPFACTORY Synopsis...2 MXF Codec Features and Capabilities...2 Using P2 Monitors in a Factory...3 Making P2 Media Accessible to FlipFactory...3 Access Options...5 Submitting

More information

Using Virtual Audio Cable and Omnia A/X with NexGen Streaming Audio

Using Virtual Audio Cable and Omnia A/X with NexGen Streaming Audio Using Virtual Audio Cable and Omnia A/X with NexGen Streaming Audio Overview As Internet Streaming technology has become more widely used, the need for audio processing completed at a software level has

More information

Authoring Blu-ray Discs with Adobe Encore in an Apple Final Cut Studio Workflow

Authoring Blu-ray Discs with Adobe Encore in an Apple Final Cut Studio Workflow Workflow Guide Authoring Blu-ray Discs with Adobe Encore in an Apple Final Cut Studio Workflow Creating MPEG-2 Output Files for Blu-ray Discs Adobe Premiere Pro CS3 includes Adobe Encore for authoring

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

Exporting to DVD with EDIUS

Exporting to DVD with EDIUS How To Guide Exporting to DVD with EDIUS desktop. grassvalley. com professional. grassvalley. com 2008 Thomson. All rights reserved. Grass Valley is a trademark of Thomson. All other trademarks are properties

More information

Polar Help Desk Installation Guide

Polar Help Desk Installation Guide Polar Help Desk Installation Guide Copyright (legal information) Copyright Polar 1995-2005. All rights reserved. The information contained in this document is proprietary to Polar and may not be used or

More information

Preparing a Windows 7 Gold Image for Unidesk

Preparing a Windows 7 Gold Image for Unidesk Preparing a Windows 7 Gold Image for Unidesk What is a Unidesk gold image? In Unidesk, a gold image is, essentially, a virtual machine that contains the base operating system and usually, not much more

More information

PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu

PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu PaperStream Connect Setup Guide Version 1.0.0.0 Copyright Fujitsu 2014 Contents Introduction to PaperStream Connect... 2 Setting up PaperStream Capture to Release to Cloud Services... 3 Selecting a Cloud

More information

Application Notes for Integrating Verint ULTRA9 VoIP Call Recording Service With Avaya Interaction Center - Issue 1.1

Application Notes for Integrating Verint ULTRA9 VoIP Call Recording Service With Avaya Interaction Center - Issue 1.1 Avaya Solution & Interoperability Test Lab Application Notes for Integrating Verint ULTRA9 VoIP Call Recording Service With Avaya Interaction Center - Issue 1.1 Abstract Verint Ultra Intelligent Recording

More information

MEP-7000 FREQUENTLY ASKED QUESTIONS (FAQS)

MEP-7000 FREQUENTLY ASKED QUESTIONS (FAQS) MEP-7000 FREQUENTLY ASKED QUESTIONS (FAQS) Note: Unless otherwise stated, PC connection refers to a Microsoft Windows operating system. What can I connect to the MEP-7000 using the USB ports? There are

More information

MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT SILVERLIGHT 5 These license terms are an agreement between Microsoft Corporation (or based on where you

MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT SILVERLIGHT 5 These license terms are an agreement between Microsoft Corporation (or based on where you MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT SILVERLIGHT 5 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them.

More information

Telestream Enhances Avid Workflows

Telestream Enhances Avid Workflows Solution Brief Rev July 2005 Telestream Enhances Avid Workflows Telestream s digital media transcoding and delivery products FlipFactory and ClipMail Pro allow you to re-purpose and deliver inbound media

More information

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

Compressor 3. User Manual

Compressor 3. User Manual Compressor 3 User Manual Copyright 2010 Apple Inc. All rights reserved. Your rights to the software are governed by the accompanying software license agreement. The owner or authorized user of a valid

More information

Logic Pro 9. TDM Guide

Logic Pro 9. TDM Guide Logic Pro 9 TDM Guide Copyright 2009 Apple Inc. All rights reserved. Your rights to the software are governed by the accompanying software license agreement. The owner or authorized user of a valid copy

More information

Compressor 4. User Manual

Compressor 4. User Manual Compressor 4 User Manual Copyright 2012 Apple Inc. All rights reserved. Your rights to the software are governed by the accompanying software license agreement. The owner or authorized user of a valid

More information

Broadcast your Live events with. July 2014

Broadcast your Live events with. July 2014 Broadcast your Live events with July 2014 Live broadcasting on Dailymotion Recording Editing Encoding Transmitting Hosting By you or your external service provider By us Film your event with a video camera

More information

Unity Error Message: Your voicemail box is almost full

Unity Error Message: Your voicemail box is almost full Unity Error Message: Your voicemail box is almost full Document ID: 111781 Contents Introduction Prerequisites Requirements Components Used Conventions Problem Solution Delete Voice Mail Messages from

More information

PRODUCTION GUIDE. Adform HTML5 Floor Ad (1280x70 > 980x400)

PRODUCTION GUIDE. Adform HTML5 Floor Ad (1280x70 > 980x400) PRODUCTION GUIDE Adform HTML5 Floor Ad (1280x70 > 980x400) Production Guide 1 Table of Contents HTML5 Floor Ad (1280x70 > 980x400) 2 User Experience 2 Creative assets 2 Banner asset 2 Video component 3

More information

Cut a video into multiple short clips

Cut a video into multiple short clips Step-by-Step Guide Cut a video into multiple short clips Separating the highlights and key messages from hours of raw footage requires a tool that makes for easy clipping and painless export to multiple

More information

Email Data Protection. Administrator Guide

Email Data Protection. Administrator Guide Email Data Protection Administrator Guide Email Data Protection Administrator Guide Documentation version: 1.0 Legal Notice Legal Notice Copyright 2015 Symantec Corporation. All rights reserved. Symantec,

More information

VThis App Note USING FLIPFACTORY PLAYBACK SERVICE FOR AVID INTERPLAY TRANSFER ENGINE. App Not e

VThis App Note USING FLIPFACTORY PLAYBACK SERVICE FOR AVID INTERPLAY TRANSFER ENGINE. App Not e App Not e USING FLIPFACTORY PLAYBACK SERVICE FOR AVID INTERPLAY TRANSFER ENGINE Synopsis...2 Installing Telestream Playback Service...4 Configuring Telestream Playback Service...11 Configuring Interplay

More information

Mediasite. captioning

Mediasite. captioning Mediasite captioning 2013 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

More information

DivX Converter User Guide

DivX Converter User Guide DivX Converter User Guide Contents Introduction... 2 Registering DivX Converter... 2 DivX Converter Profiles... 3 Using DivX Converter... 3 Combine videos and add a menu... 4 File settings... 5 Output

More information

Quick Start. Guide. The. Guide

Quick Start. Guide. The. Guide Quick Start 1 Quick Start Introducing VirtualDub Working with video requires a variety of tools to achieve the best possible results. re are some processes for which dedicated-purpose tools can be invaluable

More information

TIBCO ActiveMatrix BPM Integration with Content Management Systems Software Release 2.2.0 September 2013

TIBCO ActiveMatrix BPM Integration with Content Management Systems Software Release 2.2.0 September 2013 TIBCO ActiveMatrix BPM Integration with Content Management Systems Software Release 2.2.0 September 2013 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE.

More information

Keynote DeviceAnywhere/HP Application Lifecycle Management (HP ALM/QC) Integration Guide. TCE Automation 5.2

Keynote DeviceAnywhere/HP Application Lifecycle Management (HP ALM/QC) Integration Guide. TCE Automation 5.2 Keynote DeviceAnywhere/HP Application Lifecycle Management (HP ALM/QC) Integration Guide TCE Automation 5.2 Copyright Copyright 2012 Keynote DeviceAnywhere. All Rights Reserved. August 2012. Notice 2012

More information

Using Impatica for Power Point

Using Impatica for Power Point Using Impatica for Power Point What is Impatica? Impatica is a tool that will help you to compress PowerPoint presentations and convert them into a more efficient format for web delivery. Impatica for

More information

Windows Media Components for QuickTime

Windows Media Components for QuickTime Windows Media Components for QuickTime Version 2.2 T E L E S T R E A M 2005-2008 Telestream, Table of Contents Overview Windows Media Components for QuickTime TM.............. 1 Feature Comparison...................................

More information

Desktop Messenger 4.9 USER GUIDE 2011-03-29

Desktop Messenger 4.9 USER GUIDE 2011-03-29 Desktop Messenger 4.9 USER GUIDE 2011-03-29 TABLE OF CONTENTS 1. Introduction 4 2. Requirements 4 3. Install and register 4 4. Contacts 5 4.1. Add new contact 5 4.2. Add new group 5 4.3. Auto-complete

More information

May 09, 2010. Creating live broadcast with Kaltura Complete guide

May 09, 2010. Creating live broadcast with Kaltura Complete guide Creating live broadcast with Kaltura Complete guide May 09, 2010 Page 1 1. Change history... 3 2. Overview... 3 3. Client side integration... 4 3.1. Internet connection... 4 3.2. Broadcasting machine...

More information

Bentley CONNECT Dynamic Rights Management Service

Bentley CONNECT Dynamic Rights Management Service v1.0 Implementation Guide Last Updated: March 20, 2013 Table of Contents Notices...5 Chapter 1: Introduction to Management Service...7 Chapter 2: Configuring Bentley Dynamic Rights...9 Adding Role Services

More information

User Guide for Avaya Scopia Add-in for Microsoft Outlook for Aura Collaboration Suite

User Guide for Avaya Scopia Add-in for Microsoft Outlook for Aura Collaboration Suite User Guide for Avaya Scopia Add-in for Microsoft Outlook for Aura Collaboration Suite Version 8.3 For Solution 8.3 March 2014 2000-2014 Avaya Inc. All intellectual property rights in this publication are

More information

Customer Tips. Xerox Network Scanning HTTP/HTTPS Configuration using Microsoft IIS. for the user. Purpose. Background

Customer Tips. Xerox Network Scanning HTTP/HTTPS Configuration using Microsoft IIS. for the user. Purpose. Background Xerox Multifunction Devices Customer Tips June 5, 2007 This document applies to these Xerox products: X WC Pro 232/238/245/ 255/265/275 for the user Xerox Network Scanning HTTP/HTTPS Configuration using

More information

NETWRIX USER ACTIVITY VIDEO REPORTER

NETWRIX USER ACTIVITY VIDEO REPORTER NETWRIX USER ACTIVITY VIDEO REPORTER ADMINISTRATOR S GUIDE Product Version: 1.0 January 2013. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Welcome to Corel VideoStudio Pro X5

Welcome to Corel VideoStudio Pro X5 Contents Welcome to Corel VideoStudio Pro X5............................ 2 New Features and Enhancements................................ 4 Getting to Know the Workspace.................................

More information

ivms-4200 Client Software Quick Start Guide

ivms-4200 Client Software Quick Start Guide ivms-4200 Client Software Quick Start Guide Notices The information in this documentation is subject to change without notice and does not represent any commitment on behalf of HIKVISION. HIKVISION disclaims

More information

Using Microsoft Expression Web to Upload Your Site

Using Microsoft Expression Web to Upload Your Site Using Microsoft Expression Web to Upload Your Site Using Microsoft Expression Web to Upload Your Web Site This article briefly describes how to use Microsoft Expression Web to connect to your Web server

More information

hp pavilion home pc hp dvd writer

hp pavilion home pc hp dvd writer hp pavilion home pc hp dvd writer The information in this document is subject to change without notice. Hewlett-Packard Company makes no warranty of any kind with regard to this material, including, but

More information

CS SoftDent Practice Management Software Installation Guide for Client/Server Configurations

CS SoftDent Practice Management Software Installation Guide for Client/Server Configurations DE1005-15 CS SoftDent Practice Management Software Installation Guide for Client/Server Configurations Notice Carestream Health, Inc., 2012. No part of this publication may be reproduced, stored in a retrieval

More information

SelenioFlex Live Manager 2.2 Software

SelenioFlex Live Manager 2.2 Software SelenioFlex Live Manager 2.2 Software SelenioFlex Live Manager 2.2 Installation System Requirements SelenioFlex Live Manager Server The SelenioFlex Live Manager Server s CPU is used most intensively for

More information

User Guide. DocAve Lotus Notes Migrator for Microsoft Exchange 1.1. Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration

User Guide. DocAve Lotus Notes Migrator for Microsoft Exchange 1.1. Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration User Guide DocAve Lotus Notes Migrator for Microsoft Exchange 1.1 Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration This document is intended for anyone wishing to familiarize themselves

More information

PEG.TV. Version 1.0. User Manual

PEG.TV. Version 1.0. User Manual PEG.TV Version 1.0 User Manual Trademarks TelVue Corporation is a registered trademark. All other products, services, or company names mentioned herein are claimed as trademarks and trade names by their

More information

USER GUIDE Version 2.0

USER GUIDE Version 2.0 USER GUIDE Version 2.0 TABLE of CONTENTS Introduction... 3 Hardware Overview... 3 Software Overview... 4 DAYSHIFT Panel... 5 Settings Panel... 6 Setup Tab... 6 Configure... 6 Show User Guide... 6 Preview

More information

Transition to Compressor 4.1. White Paper December 2013

Transition to Compressor 4.1. White Paper December 2013 Transition to Compressor 4.1 White Paper December 2013 2 Contents 3 Introduction 4 New Interface Current View Active View Completed View 6 Basic Encoding Workflow 8 Destinations 11 Distributed Transcoding

More information

MTS Remote Drive Service. Quick Start Guide

MTS Remote Drive Service. Quick Start Guide MTS Remote Drive Service Quick Start Guide Signing In to Remote Drive service through My Internet Account To sign in to use the service, you need to be a registered user with a user name and password.

More information

a basic guide to video conversion using SUPER

a basic guide to video conversion using SUPER a basic guide to video conversion using SUPER This is a basic guide to video conversion using the freeware video conversion tool SUPER, from erightsoft. SUPER is a graphic front end to several free, powerful,

More information

Adfotain Manager Express Release 1.3 Software User Manual May 2009

Adfotain Manager Express Release 1.3 Software User Manual May 2009 Adfotain Manager Express Release 1.3 Software User Manual May 2009 0 Contents 1. Overview... 1 1.1. Workflow... 1 1.2. Basic operations... 1 2. Installation... 2 2.1. Minimum system requirements... 2 2.2.

More information

Sony HDV Workflows. in Apple Final Cut Pro 6

Sony HDV Workflows. in Apple Final Cut Pro 6 Sony HDV Workflows in Apple Final Cut Pro 6 1 Introduction 2 Workflow Overview 1 Introduction...........................................4 2 Workflow Overview......................................6 CompactFlash

More information

Use the Microsoft Office Word Add-In to Create a Source Document Template for Microsoft Dynamics AX 2012 WHITEPAPER

Use the Microsoft Office Word Add-In to Create a Source Document Template for Microsoft Dynamics AX 2012 WHITEPAPER Use the Microsoft Office Word Add-In to Create a Source Document Template for Microsoft Dynamics AX 2012 WHITEPAPER Microsoft Office Word Add-Ins Whitepaper Junction Solutions documentation 2012 All material

More information

Slide Index. Technical Support Training

Slide Index. Technical Support Training MessageStats 7.1 Slide Index Learning Objectives- Slide 3 Product Overview- Slides 4-5 Common Issues- Slides 6-7 Troubleshooting Checklist- Slides 9-23 Common Error Messages- Slide 24 29 MessageStats Report

More information

GETTING STARTED WITH STUDIO ONE ARTIST

GETTING STARTED WITH STUDIO ONE ARTIST GETTING STARTED WITH STUDIO ONE ARTIST 2009, PreSonus Audio Electronics, Inc. All Rights Reserved. TABLE OF CONTENTS Studio One Artist Features...3 System Requirements...4 Installation and Authorization...5

More information

Kaltura On-Prem Evaluation Package - Getting Started

Kaltura On-Prem Evaluation Package - Getting Started Kaltura On-Prem Evaluation Package - Getting Started Thank you for your interest in the Kaltura On-Prem Online Video Platform (OVP). Before you get started with your Kaltura On-Prem evaluation, a Kaltura

More information

Strong Authentication for Juniper Networks SSL VPN

Strong Authentication for Juniper Networks SSL VPN Strong Authentication for Juniper Networks SSL VPN with Powerful Authentication Management for Service Providers and Enterprises Authentication Service Delivery Made EASY Copyright Copyright 2011. CRYPTOCard

More information

Installing Sage SalesLogix on Microsoft Windows 8, Windows Server 2012, and Internet Explorer 10 Version 8.0.0.02 Developed by Sage SalesLogix User

Installing Sage SalesLogix on Microsoft Windows 8, Windows Server 2012, and Internet Explorer 10 Version 8.0.0.02 Developed by Sage SalesLogix User Installing Sage SalesLogix on Microsoft Windows 8, Windows Server 2012, and Internet Explorer 10 Version 8.0.0.02 Developed by Sage SalesLogix User Assistance Installing Sage SalesLogix on Microsoft Windows

More information

Hills Professional Series NVRs and Cameras

Hills Professional Series NVRs and Cameras FAQs Hills Professional Series NVRs and Cameras (V1.1) 1. What is the default NVR resolution? By Default NVR video output resolution is 1080P. Resolution may be changed if necessary to suit the attached

More information

Manual English KOI Desktop App 2.0.x

Manual English KOI Desktop App 2.0.x Manual English KOI Desktop App 2.0.x KOI Kommunikation, Organisation, Information Comm-Unity EDV GmbH 2010 Contents Introduction... 3 Information on how to use the documentation... 3 System requirements:...

More information

Automation Media Workflow Delivering the Moment

Automation Media Workflow Delivering the Moment Automation Introduction Automation Media Workflow Delivering the Moment Publication Information 2014 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document

More information

Xerox Multifunction Devices. Verify Device Settings via the Configuration Report

Xerox Multifunction Devices. Verify Device Settings via the Configuration Report Xerox Multifunction Devices Customer Tips March 15, 2007 This document applies to these Xerox products: X WC 4150 X WCP 32/40 X WCP 35/45/55 X WCP 65/75/90 X WCP 165/175 X WCP 232/238 X WCP 245/255 X WCP

More information

SQL Server Setup for Assistant/Pro applications Compliance Information Systems

SQL Server Setup for Assistant/Pro applications Compliance Information Systems SQL Server Setup for Assistant/Pro applications Compliance Information Systems The following document covers the process of setting up the SQL Server databases for the Assistant/PRO software products form

More information

TIBCO Spotfire Automation Services 6.5. User s Manual

TIBCO Spotfire Automation Services 6.5. User s Manual TIBCO Spotfire Automation Services 6.5 User s Manual Revision date: 17 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

Setting up and Automating a MS Dynamics AX Job in JAMS

Setting up and Automating a MS Dynamics AX Job in JAMS Setting up and Automating a MS Dynamics AX Job in JAMS Introduction... 1 Creating a User for the AX Job Execution... 2 Setting up the AX Job... 4 Create a New folder... 4 Adding a new Dynamics AX Job using

More information

CCH Audit Automation. Version 4.4 Service Pack 2.1. Release Notes

CCH Audit Automation. Version 4.4 Service Pack 2.1. Release Notes CCH Audit Automation Version 4.4 Service Pack 2.1 Release Notes Legal Notice Disclaimer CCH Software has made every effort to ensure the accuracy and completeness of these Release Notes. However, CCH

More information

Sizmek Formats. Collage. Build Guide

Sizmek Formats. Collage. Build Guide Formats Collage Build Guide Table Of Contents Overview... 3 Supported Platforms... 3 Specifications... 3 Known Issues... 3 Ad Behavior Screenshots... 4 Template Included Files... 8 Setting up in Workshop...

More information

HP Velocity Live QoS Support

HP Velocity Live QoS Support HP Velocity Live QoS Support Copyright 2012 Hewlett-Packard Development Company, L.P. Microsoft and Windows are U.S. registered trademarks of Microsoft Corporation. The information contained herein is

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Application Setup help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

Mediasite. captioning

Mediasite. captioning Mediasite captioning 2014 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

More information

Job Scheduler User Guide IGSS Version 11.0

Job Scheduler User Guide IGSS Version 11.0 Job Scheduler User Guide IGSS Version 11.0 The information provided in this documentation contains general descriptions and/or technical characteristics of the performance of the products contained therein.

More information