Wowza Streaming Engine. Configuration Reference
|
|
|
- Juliana Blair
- 10 years ago
- Views:
Transcription
1 Wowza Streaming Engine Configuration Reference
2 Wowza Streaming Engine: Configuration Reference Version: 4.3
3 This document is for informational purposes only and in no way shall be interpreted or construed to create warranties of any kind, either express or implied, regarding the information contained herein. No Endorsement or Warranty for Third-Party Links and Software This document contains links to third-party websites ("Linked Sites") that are not under the control of Wowza Media Systems, LLC ("Wowza "). Wowza is not responsible for the content on or operation of Linked Sites. If you access Linked Sites, you do so at your own risk and understand that Wowza accepts no responsibility or liability for the content or operation of Linked Sites. Wowza provides these links only as a convenience, and the inclusion of a link does not imply that Wowza endorses such Linked Sites or any content, products, or services available from Linked Sites. This document also refers to third-party software that is not licensed, sold, or distributed by Wowza (collectively, "Third-Party Software"). Wowza does not endorse, is not responsible for, and accepts no liability related to Third-Party Software. Please ensure that any and all use of Wowza software and thirdparty software is properly licensed. Wowza Trademarks Wowza, Wowza Streaming Cloud, Wowza Streaming Engine, along with other trademarks, logos, trade dress, and other proprietary colors and markings, are each trademarks or registered trademarks of Wowza in the United States and in other countries (collectively, "Wowza Marks"). No right to use Wowza Marks in any way is granted hereunder. Contact [email protected] for information about obtaining the right to use Wowza Marks. Any use of Wowza Marks, authorized or otherwise, shall inure to the sole benefit of Wowza. Third-Party Trademarks and Copyrights Trademarks, product names, logos, designs, trade dress, and other proprietary markings of non-wowza third parties (collectively, "Third-Party Marks") may be trademarks or registered trademarks of their respective owners. Use of Third-Party Marks is for the sole purpose of identifying third-party products and services and does not represent endorsement, sponsorship, partnership, or other affiliation between Wowza and such third parties. A list of applicable patent and copyright notices related to content in this document is available on the Wowza website at
4 Document History Version Description Date Doc v4.3.0 Document release for Wowza Streaming Engine Note A more recent version of this document may be available online. See the Wowza Media Systems Documentation webpage for the latest updates.
5 Table of Contents Introduction... 6 Server Configuration Files... 7 Server.xml...7 MediaCache.xml VHosts.xml Tune.xml log4j.properties Virtual Host Configuration Files StartupStreams.xml VHost.xml Application Configuration Files Application.xml... 27
6 Chapter 1 Introduction T his document describes the most commonly used settings and configuration items in the XML configuration files that are located in the [install-dir]/conf folder of the Wowza Streaming Engine media server software installation. Basic configuration settings are described, but the details of internal settings are omitted. 6
7 Chapter 2 Server Configuration Files Server.xml The Server.xml file configuration file is used to define and set server options that are independent of streaming applications that run on the media server. Name Name of the media server. Description Text description of the media server. RESTInterface Wowza Streaming Engine software provides REST Application Programming Interfaces (APIs) that can be used to configure and manage the server through HTTP requests. The RESTInterface settings are used to control access to the REST APIs. For more information, see How to access documentation for Wowza Streaming Engine REST APIs. RESTInterface/[Enable, IPAddress, Port, AuthenticationMethod, DiagnosticURLEnable] Enable: Boolean value that turns on/off the REST interface for Wowza Streaming Engine software. IPAddress: Network interface IP address that the REST interface binds to. If IPAddress is set to the wildcard (*) character, the REST interface binds to all available network interfaces. Port: Port used to access the REST interface (8087). 7
8 AuthenticationMethod: HTTP authentication method used to access the REST interface. This can be one of the following types: none, basic, or digest. The default value is digest. Example URLs for accessing the REST API: DiagnosticURLEnable: Boolean value. When set to true (default), the following REST API URLs are available to users for diagnostic purposes: Setting this value to false removes these URLs from the REST API. RESTInterface/SSLConfig/[*] Enable: Boolean value that specifies whether access to the REST APIs should be made over a secure HTTP (HTTPS) connection using a Secure Sockets Layer (SSL) certificate. The default value is false (disabled). KeyStorePath: Full path to the keystore file. KeyStorePassword: Keystore password. KeyStoreType: Keystore type. The default value is JKS for Sun Java JRE. SSLProtocol: Cryptographic protocol. The default value is TLS (Transport Layer Security). Algorithm: Encryption algorithm. The default value is SunX509 for Sun Java JRE. CipherSuites: Comma-separated list of cipher suites. Protocols: Comma-separated list of SSL/TLS protocol names. RESTInterface/[IPWhiteList, IPBlackList] IPWhiteList: Comma-separated list of IP addresses that are authorized to use the REST interface. Wildcard (*) characters are supported (for example, *.*). The default value is the localhost loopback address ( ) IPBlackList: Comma-separated list of IP addresses that are prohibited from using the REST interface. Wildcard (*) characters are supported. RESTInterface/[EnableXMLFile] EnableXMLFile: Boolean value that enables/disables the /v2/servers/{server}/xml/{filename} REST API (for example, For security reasons, it's highly recommend that you keep this value set to the default value (false). 8
9 RESTInterface/[DocumentationServerEnable, DocumentationServerPort, DocumentationServerAuthenticationMethod] DocumentationServerEnable: Boolean value that turns on/off the REST API documentation for Wowza Streaming Engine software. DocumentationServerPort: Port used to access the REST API documentation (8089). DocumentationServerAuthenticationMethod: HTTP authentication method used to access the REST API documentation. This can be one of the following types: none, basic, or digest. The default value is digest. Example URLs for accessing REST API documentation: RESTInterface/Properties Custom properties with name, type, and value, as defined by the user. CommandInterface/HostPort Wowza Streaming Engine command interface. This interface is used only to allow remote shutdown of the server. The entire CommandInterface section should be commented-out when a server is deployed in production. ProcessorCount: Number of threads allocated to the CommandInterface: ${com.wowza.wms.tuningauto} IpAddress: IP address or domain name of the address that the CommandInterface listens to for incoming requests. If IpAddress is set to the wildcard (*) character, it tries to listen for incoming connections on all available network interfaces. Port: 8083 is the command interface port used to shut down the server during testing. It can't be used when the CommandInterface section is commented-out, as it should be when a server is deployed in production AdminInterface/ObjectList List of objects made available through the Java Management Extensions (JMX) interface. For more information, see "AdminInterface/ObjectList" in How to use JConsole. 9
10 Stats/Enable Interface that returns server statistics to administrators through Wowza Streaming Engine Manager or HTTPProviders on port These statistics reference the HTTP Providers serverinfo, connectioncounts, and connectioninfo. Enable: Boolean option that specifies whether statistics are compiled and sent to the Wowza Streaming Engine Manager console or HTTPProviders. JMXRemoteConfiguration/[*] Java Management Extensions (JMX) interface configuration. For more information, see "Remote JMX Configuration" in How to use JConsole. UserAgents Values in HTTP requests that are interpreted as RTMPT requests. Any HTTP request header that includes a UserAgents value is considered to be an RTMPT request. Streams/DefaultStreamPrefix Specification of the streaming protocol default type. The default is mp4, but this type can be overridden in IServerNotify2, which is the server listener in onserverconfigloaded. The IServer APIs that control the setting of this value are IServer.setDefaultStreamNamePrefix(String streamnameprefix) and String IServer.getDefaultStreamNamePrefix(). The variable is also settable in the file [installdir]conf/server.xml.serverlisteners. ServerListeners Set of event handlers that allow developers to invoke server-side Java from JavaScript. ServerListeners can be used as a proxy to bypass client-side security. Configure server event listeners and virtual host (VHost) event listeners in the Server.xml file. Call these listeners when events occur at a server or VHost level. VHostListeners Set of event handlers that capture VHost events in order to extend server functionality. Server event listeners and VHost event listeners can be configured in the Server.xml file. These listeners are called when events occur at a server or VHost level. For the triggering 10
11 event to work, a VHost listener must be compiled, packaged into a.jar file, and placed in the [install-dir]/lib folder in the Wowza Streaming Engine installation. It can be invoked when an entry is added to the <VHostListeners> container in [install-dir]/conf/server.xml. HandlerThreadPool/PoolSize, TransportThreadPool/PoolSize Maximum size of server-level threads in the handler and transport thread pools. The handler thread pool is used to process incoming messages. The transport thread pool is used to read/write data from the transport sockets. Server-level thread pools are only used if a VHost's thread pool size is set to 0. This server-level thread pool is also used to process the shutdown command; therefore, it should never be set to a value less than 10. RTP/DatagramStartingPort Lowest UDP port value assigned to incoming UDP streams. Ports are assigned starting with this value and are then incremented by 1. The most common value for RTSP/RTP-based servers is If you plan to support RTSP/RTP, native RTP, or MPEG-TS streams, you should open UDP ports RTP/DatagramPortSharing Boolean value that specifies port sharing options. If set to true, then UDP ports (both unicast and multicast) can be shared between Session Description Protocol (SDP) files and MPEG-TS streams or shared between application instances. Setting this value to true enables two SDP files to share RTP ports. For example, if you have a single video stream with multiple audio streams (each in a different language), then you can create two SDP files that share the single RTP video stream and refer to a unique audio stream. This also enables the same SDP file or MPEG-TS stream to be loaded by different application instances. If set to false, UDP ports aren't allowed to be shared and an error is generated if an attempt is made to reuse a UDP port. Manager Container element for properties defined to be used by Wowza Streaming Engine Manager. 11
12 Properties Typed name/value pairs. Properties are available in the server-side API through the IServer.getProperties() interface. Custom properties are added to the collection returned by IServer.getProperties(). MediaCache.xml The MediaCache.xml configuration file is used to configure the Media Cache system in Wowza Streaming Engine software. The media cache can retrieve content from either a web server or HTTP (the server must support HTTP/1.1 byte range requests) or network attached file system or any similar device that's recognized as a disk by the operating system. MediaCache WriterThreadPool/PoolSize: Number of threads in the writer pool that are used to write media blocks to the caching system. This value should be set to twice the number of CPU cores on the machine. ReadAheadThreadPool/PoolSize: Number of threads in the readahead pool that are used to read blocks from the cache source before they are requested. The readahead system keeps a steady flow of bytes moving from the source to the cache to avoid stuttering during playback. This value should be set to the number of CPU cores on the machine MaxPendingWriteRequestSize: Number of bytes of memory that can be occupied by blocks waiting to be written to storage. Think of this storage area as a temporary memory-based cache. Values are specified in bytes and the following units are supported: K (kilobytes), M (megabytes), G (gigabytes), or T (terabytes). MaxPendingReadAheadRequestSize: Number of bytes of memory that can be occupied by blocks waiting to be written to the cache store. Values are specified in bytes and the following units are supported: K (kilobytes), M (megabytes), G (gigabytes), or T (terabytes). GCFrequency: Time, in milliseconds, between cache-purging/cache-pruning sessions. Based on time-to-live settings, items stored in the cache are purged when they haven't been used in a given period of time maximum time-to-live, or if there's content waiting to enter the cache minimum time-to-live. The default value is (10 seconds). ContextMapperClass: Reserved for future use (leave blank). AddFileExtensionIfNeeded: Indication of whether to include a file name extension. If true and the stream name does not include a file name extension, then a file name extension will be added. The value of this extension is based on the stream name prefix. Set this property to false to prevent the Media Cache from automatically adding file name extensions to cache items. 12
13 URLEscapeStreamNameSpaces: Boolean. If true, spaces in stream names are URL-escaped before being sent to the source HTTP server. The default value is true. URLEscapeStreamNameAll: Boolean. If true, the entire stream name is URL-escaped before being sent to the source HTTP server. The default value is false. OnStartReloadCache: Boolean. This value specifies whether to reload the cache when the server starts. OnStartReloadCacheVerifySource: Boolean. This value specifies whether to verify the source when reloading the cache. MediaCacheStore Name: Cache store name. Description: Text description of the cache store. Path: Path to the storage location. Always use forward slashes when defining paths, for example, ${com.wowza.wms.context.serverconfighome}/mediacache. Cached files are stored in a two-tier directory structure. MaxSize: Maximum size in bytes of data that will be stored in this cache store. Values are specified in bytes, and the following units are supported: K (kilobytes), M (megabytes), G (gigabytes), or T (terabytes). Level1FolderCount: Number of first-level folders created to store cached items. Level2FolderCount: Number of second-level folders created to store cached items. FileCount: Number of items that can be stored in each level2 folder. For example, if the level1 folder count is set to 24, and the level2 folder count is set to 24, and the file count is set to 1000, then 24x24x1000 or (the product of 24x24x1000) files can be stored in this cache store. WriteRate: Maximum rate at which content can be written to this cache store. Throttling the write rate helps control the flow of content that enters the cache so that it doesn't overwhelm the file system, impeding the flow of content that's being served out of the cache. Values are expressed in bytes per second and the following units are supported: K (kilobytes), M (megabytes), G (gigabytes), or T (terabytes). WriteRateMaxBucketSize: Value that works in concert with WriteRate to control how the write rate is throttled. This value should be set to 6 times the WriteRate. Values are specified in bytes and the following units are supported: K (kilobytes), M (megabytes), G (gigabytes), or T (terabytes). WriteRateFillFrequency: Refresh rate, in milliseconds, of the write rate control mechanism. This value works in concert with WriteRate to control how the write rate is throttled. This value should be set to
14 Properties: Custom properties with name, type, value, and actions that are defined by the user. Properties can be retrieved by using the MediaCacheStore.getProperties() method. MediaCacheSource Descriptions of sources of content that are made available to Wowza Streaming Engine software. Settings are enumerated and used as follows: Name: Name of the source, used for logging purposes. This name isn't used to control streaming or the addressing of the content. Type: Identifies the Media Cache source type: File. For re-streaming files from network-attached storage HTTP. For re-streaming files from HTTP-based servers. Amazon S3. For re-streaming files from an Amazon S3 bucket. Description: Text description of the Media Cache source under examination. BasePath and Prefix: Setting that works together with Prefix to control how content is mapped back to a source configuration. The Prefix is used to map the stream name to the source. To restream the content, the Prefix portion is replaced by the BasePath value. For example, if you set Prefix to content1/ and BasePath to then the stream name: content1/mycoolvideo.flv will be retrieved from the following URL: BaseClass: Full class path to the MediaCacheSource implementation that's used to deliver the content. HTTP content: com.wowza.wms.mediacache.impl.mediacacheitemhttpimpl File-based content: com.wowza.wms.mediacache.impl.mediacacheitemfileimpl ReaderClass: Reserved for future use. DefaultBlockSize: Size of the blocks in bytes of data that are read from the source to populate the cache. Values are specified in bytes and the following units are supported: K (kilobytes), M (megabytes), G (gigabytes), or T (terabytes). MaxTimeToLive: Maximum time, in milliseconds, that an item will remain in the cache unused. The time-to-live counter starts when the last client to view the content stops viewing the content. If no other viewers view this content within the time-to-live window, the content will be purged from the cache. MinTimeToLive: Minimum time, in milliseconds, that an item will remain in the cache unused if there are items waiting to enter the cache, and the cache is full. ReadAhead: Boolean. A switch that controls the use of the readahead function. If ReadAhead is set to true, content blocks will be pre-populated in the cache based on the ReadAheadThreshold percentage. If set to false, no readahead occurs. 14
15 ReadAheadThreshold: Percentage that controls when the request is made to read the next block. For example, if ReadAheadThreshold is set to 50 percent, then a successive content block will be queued to be read when the current content block is read beyond the halfway mark. Properties: Custom properties with path, name, type, and value, as defined by the user. VHosts.xml The VHosts.xml configuration file defines the virtual host (VHost) environments on the media server. By default, Wowza Streaming Engine software ships with a single VHost environment named _defaultvhost_. For a complete description of this configuration file, see "Virtual Hosting" in the Wowza Streaming Engine User's Guide. Tune.xml The Tune.xml configuration file provides fine-tuning of settings for the media server. Tune.xml has three basic sections: HeapSize Defined settings for development and production environments, or setting of an absolute value. ${com.wowza.wms.tuningheapsizeproduction}: Assumption that Wowza Streaming Engine software is the only application that's running on the server. ${com.wowza.wms.tuningheapsizedevelopment}: Assumption that Wowza Streaming Engine software is sharing resources with other applications. GarbageCollector Defined settings that specify GarbageCollector options. GarbageCollector syntax includes the following options: ${com.wowza.wms.tuninggarbagecollectorconcurrentdefault}: Best concurrent garbage collector settings for your hardware. Uses a Java garbage collector that's designed for applications that prefer shorter GC pauses and that can share processor resources with the garbage collector while the application is running. ${com.wowza.wms.tuninggarbagecollectorg1default}: Best G1 garbage collector settings for your hardware. Uses a Java garbage collector that's designed for low pause time, high- 15
16 throughput applications. The G1 collector is a server-style garbage collector, targeted for multi-processor machines with large memories and is fully supported in Oracle JDK 7 Update 4 and later releases. You can also specify a custom GarbageCollector setting directly as shown in the following example: <GarbageCollector>-XX:+UseConcMarkSweepGC -XX:+UseParNewGC - XX:NewSize=512m</GarbageCollector>) VMOptions Other Java command-line options. -server: Appends the server option for maximum program execution speed for applications that are running in the server environment. When the -server option is appended, longrunning server-side processes are optimized for that use case. -Djava.net.preferIPv4Stack=true: Boolean. If IPv6 is available on the operating system, the underlying native socket will be an IPv6 socket. When true, this setting allows Java applications to connect to, and accept connections from, both IPv4 and IPv6 hosts. If an application is configured to use only IPv4 sockets, then this property can be set to true. The implication of such a setting is that the application won't be able to communicate with IPv6 hosts. -XX:+HeapDumpOnOutOfMemoryError - XX:HeapDumpPath="${com.wowza.wms.AppHome}/logs": Dumps the heap to a file when java.lang.outofmemoryerror is thrown. The path to the directory or file name that contains the heap dump is provided. -Duser.language=en -Duser.country=US -Dfile.encoding=Cp1252: String values that set the language and country of the current virtual machine. These values specify the local language, the local country, and the default character encoding, or charset, for the Java virtual machine. -verbose:gc - Xloggc:"${com.wowza.wms.AppHome}/logs/gc_${com.wowza.wms.StartupDateTime}.log " -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintHeapAtGC - XX:+PrintGCApplicationConcurrentTime -XX:+PrintGCApplicationStoppedTime: List of all currently set VMOptions (there should not be any newlines) as delineated by using the following switches: VMOptions/VMOption/verbose: Boolean. If you want to know when and where classes are loaded into the Java virtual machine, you can use the verbose option on the java command. 16
17 VMOptions/VMOption/Xloggc: Boolean. Reports on each garbage collection event, as with -verbose:gc, but logs this data to a file. In addition to the information from verbose:gc, Xloggc logs each reported event preceded by the time, in seconds, since the first garbage-collection event. Note: Always use a local file system for storage of this file to avoid stalling the Java virtual machine (due to network latency). If you're working with a full file system, this file may be truncated and logging will continue in the truncated file. This option overrides verbose:gc. VMOptions/VMOption/PrintGCDetails: Boolean. This option will print additional detail at garbage collection. VMOptions/VMOption/PrintGCTimeStamps: Boolean. This option prints timestamps at garbage collection. VMOptions/VMOption/PrintHeapAtGC: Boolean. This option prints the heap layout before and after each garbage collection. VMOptions/VMOption/PrintGCApplicationConcurrentTime: Boolean. This option prints the length of time that the application has been running. VMOptions/VMOption/PrintGCApplicationStoppedTime: Boolean. This option prints the length of time that the application has been stopped. log4j.properties The log4j.properties file is used to configure logging for Wowza Streaming Engine software. The Wowza Streaming Engine software uses the Java-based log4j logging system. By default, the server is configured to log basic information to the console window and detailed information in W3C Extended Common Log Format (ECLF) to log files. For more information about how to configure the logging system, see "Logging" in the Wowza Streaming Engine User's Guide. 17
18 Chapter 3 Virtual Host Configuration Files StartupStreams.xml The StartupStreams.xml configuration file lists the streams to start when a virtual host (VHost) starts. Streams must be valid MediaCaster types: rtp, rtp-record, shoutcast, shoutcast-record, or liverepeater. StartupStream/Application Application name and instance name to use when starting the stream in the form [application]/[appinstance]. If [appinstance] is omitted, the default application name _definst_ is used. StartupStream/StreamName Name of the stream to start up. If needed, this value should include a stream name prefix. StartupStream/MediaCasterType MediaCaster type name used to start the stream. 18
19 VHost.xml The VHost.xml configuration file defines the settings used to configure a virtual host (VHost). Wowza Streaming Engine software can serve multiple users from separate virtual hosting environments. Each VHost environment has its own set of configuration files, application folders, and log files. HostPortList/HostPort List of IP addresses and TCP ports that Wowza Streaming Engine software will bind to for incoming and outgoing streaming connections. Wowza Streaming Engine software can be configured for any number of TCP ports. HostPorts are used to stream RTMP, RTSP, and HTTP. A HostPort can be configured to use Secure Sockets Layer (SSL) encryption. HTTPProviders configuration is done on a per-hostport basis. HostPortList/HostPort/ProcessorCount Number of threads allocated to use to service connections. For more information about recommended values to use based on server resources, see Performance Tuning. HostPortList/HostPort/[IpAddress, Port] IpAddress: IP address or domain name of the address that Wowza Streaming Engine software will listen to for incoming requests. If IpAddress is set to the wildcard (*) character, the server will try to listen for incoming connections on all available network interfaces. Port is a comma-separated list of ports. HostPortList/HostPort/HTTPIdent2Response Utility class for parsing and converting host-port information from commands. Represents a list of host-port pairs. HostPortList/HostPort/SocketConfiguration/[*] Detailed socket connection configuration that's created by this HostPort definition at runtime. You can use these settings to tune the performance of the socket connections that are used to send data into and out of Wowza Streaming Engine software. SendBufferSize, ReceiveBufferSize, and ReadBufferSize are the most important settings in this group. They 19
20 define the size of the memory buffers that are used during data transfer over the socket connection. Values of 0 for SendBufferSize and ReceiveBufferSize instruct the Wowza Streaming Engine software to use the operating system default values for these settings. For operating systems that support it, TCP auto-tuning at the kernel level may be used to set the buffer sizes dynamically for individual connections. For more information about recommended values to use based on server resources, see Performance Tuning. The ReuseAddress and KeepAlive settings should both be set to true. They are only provided for completeness. The AcceptorBackLog setting controls the maximum number of TCP connection requests that can be pending before new connection requests are refused. Wowza Streaming Engine software will respond to TCP connection requests as quickly as possible. TCP connection requests should not be set to a value of less than 50. Setting this value to -1 allows the operating system to control the maximum number of pending TCP connection requests. Note Using the "automatic" -1 setting value isn't always the best decision. When interpreting a -1 AcceptorBacklog value, some platforms will set a very small number as the maximum possible TCP connection requests and this can greatly increase connection times. HostPortList/HostPort/HTTPStreamerAdapterIDs Comma-separated list of HTTPStreamers that this HostPort will include when processing HTTP requests. HTTPStreamerAdapterIDs can contain none, one, or more of the following values (separated by commas): cupertinostreaming (Apple HLS), smoothstreaming, sanjosestreaming (Adobe HDS), dvrchunkstreaming, mpegdashstreaming. HostPortList/HostPort/HTTPProviders List of HTTP Providers that this HostPort includes when processing HTTP requests. For more information, see "HTTP Providers" in the Wowza Streaming Engine User's Guide. HostPortList/HostPort/HTTPProviders/HTTPProvider: BaseClass: Base class of the HTTPProvider class, such as com.wowza.wms.http.httpserverinfoxml. RequestFilters: HTTP request type limiter. To restrict the types of HTTP requests your Web server will process, configure the server to analyze specific criteria for each incoming request as specified by files such as clientaccesspolicy.xml and crossdomain.xml. AuthenticationMethod: Authentication method specifier such as basic, admin-digest, digest, block, admin-basic, admin-block, or none. 20
21 HostPortList/HostPort/SSLConfig/[*] Secure Sockets Layer (SSL) configuration for a given HostPort. KeyStorePath. Full path to the keystore file. KeyStorePassword. Keystore password. KeyStoreType. Keystore type. The default value is JKS for Sun Java JRE. SSLProtocol. Cryptographic protocol. The default value is TLS (Transport Layer Security). Algorithm. Encryption algorithm. The default value is SunX509 for Sun Java JRE. HTTPStreamerAdapters List of HTTPStreamers that are enabled for HostPort entries. All HTTPStreamers listed here can be streamed by using the HostPort IP address and port combination. If you want to disable a particular HTTP streaming protocol, you can remove it from this list. ID: Identity that's one of the following options: cupertinostreaming, sanjosestreaming, smoothstreaming, mpegdashstreaming, or dvrchunkstreaming. These options represent the HTTP streaming protocols and wells as DVR streaming from origin to edge in a Wowza live stream repeater configuration. Name: Name for one of the following options: cupertinostreaming, sanjosestreaming, smoothstreaming, mpegdashstreaming, or dvrchunkstreaming. Properties: Custom properties with path, name, type, and value, as defined by the user. HandlerThreadPool/PoolSize, TransportThreadPool/PoolSize Maximum size of the virtual host-level threads in the handler and transport thread pools. The handler thread pool is used to process incoming messages while the transport thread pool is used to read/write data from the transport sockets. If the pool size is set to 0 for a given thread pool type, the server-level thread pool of the same type is used for this virtual host. For more information about recommended values to use based on server resources, see Performance Tuning. IdleWorkers/[WorkerCount, CheckFrequency, MinimumWaitTime] WorkerCount controls the number of threads being used to generate idle events. CheckFrequency is the time, in milliseconds, between system checks that monitor whether a client has been idle for Client/IdleFrequency. The CheckFrequency value should be onefourth or less of the Client/IdleFrequency value. For more information about recommended 21
22 values to use based on server resources, see Performance Tuning. MinimumWaitTime specifies an interval in seconds that the server will wait. NetConnections/[ProcessorCount, IdleFrequency] Settings used to tune connections made between Wowza server computers, for example, when using the live stream repeater. ProcessorCount is the number of threads allocated to connections. Increasing the IdleFrequency from the default 250 milliseconds will give the CPU a little more time so it won't be working as hard. NetConnections/[SocketConfiguration] ReuseAddress: Boolean. This value determines whether the address of the incoming RTP datagram can be reused. ReceiveBufferSize: Size in bytes of the buffer that receives incoming data. ReadBufferSize: Size of the memory buffer that contains read data. Values of 0 for SendBufferSize and ReadBufferSize configure Wowza Streaming Engine software to use the operating system default values for these settings. SendBufferSize: Size of the memory buffer that contains data to be sent. Values of 0 for SendBufferSize and ReadBufferSize configure Wowza Streaming Engine software to use the operating system default values for these settings. KeepAlive: Time, in milliseconds, that a connection remains open when no data is being transferred. AcceptorBacklog: Number of connections allowed in backup queue. MediaCasters/ProcessorCount Number of threads allocated to MediaCasters: ${com.wowza.wms.tuningauto} MediaCasters/SocketConfiguration ReuseAddress: Boolean. This value determines whether the address of the incoming RTP datagram can be reused. ReceiveBufferSize: Size in bytes of the buffer that receives incoming data. ReadBufferSize: Size of the memory buffer that contains read data. Values of 0 for SendBufferSize and ReadBufferSize configure Wowza Streaming Engine software to use the operating system default values for these settings. 22
23 SendBufferSize: Size of the memory buffer that contains data to be sent. Values of 0 for SendBufferSize and ReadBufferSize configure Wowza Streaming Engine software to use the operating system default values for these settings. KeepAlive: Time, in milliseconds, that a connection remains open when no data is being transferred. ConnectionTimeout: The time (in milliseconds) that this MediaCaster will wait when connecting to a remote service. LiveStreamTranscoders/MaximumConcurrentTranscodes Maximum number of concurrent live source streams that are transcoded at any point in time. This setting is useful if you licensed the Wowza Streaming Engine software with a Pro Edition license, which enables an unlimited number of concurrent transcodes, and you want to limit the number of concurrent transcodes due to CPU/hardware limitations. A value of 0 allows an unlimited number of concurrent transcodes. Note If you licensed the Wowza Streaming Engine software with a Perpetual Edition or Monthly Subscription Edition license, you can use this setting to limit the number of concurrent transcodes for billing purposes. HTTPTunnel/KeepAliveTimeout Keepalive time, in milliseconds, for RTMPT, RTMPTE, and RTMPS connections. Client/[ClientTimeout, IdleFrequency] ClientTimeout, IdleFrequency: Respectively, the length of time, in milliseconds, that the server will wait before shutting down an unresponsive client connection and the length of time, in milliseconds, between idle events. For basic video on demand (VOD) streaming, a value of 250 provides the best reliability-versus-performance ratio. For live streaming, a value between 125 and 250 is more desirable. Higher values will increase the frequency at which media data is sent to Adobe Flash clients. If you adjust this value, be sure to also adjust IdleWorkers/CheckFrequency to a value that's less than or equal to one-fourth of this value. For example, if the value of ClientTimeout and IdleFrequency is 200, then the value of IdleWorkers/CheckFrequency should be 50 or less. 23
24 RTP/IdleFrequency Time, in milliseconds, between idle events for RTP connections. RTP/DatagramConfiguration/[Incoming, Outgoing]/[*] Datagram socket configuration for incoming and outgoing RTP connections. ReuseAddress. Boolean value that determines whether the address of the incoming/outgoing RTP datagram can be reused. ReceiveBufferSize. Size, in bytes, of the incoming UDP buffer. SendBufferSize. Size, in bytes, of the outgoing UDP buffer. MulticastTimeout. Timeout value, in milliseconds, for multicast polling. DatagramMaximumPacketSize. Maximum size, in bytes, for a single incoming UDP packet. RTP/[*]/ProcessorCount Number of threads allocated to incoming and outgoing unicast and multicast UDP streams. Application/ApplicationTimeout Length of time, in milliseconds, that the server will wait before shutting down an application to which no clients are connected. A value of 0 keeps applications running until the virtual host is shut down. If this value isn't provided, the value set in the VHost.xml file is used. Application/PingTimeout Time, in milliseconds, that the server will wait for a ping response from the client. The ping mechanism that's used to validate a client connection is an RTMP internal ping, not an ICMP ping. If PingTimeout is set to 0, the server will wait indefinitely. Application/UnidentifiedSessionTimeout Time, in milliseconds, that the server will wait for an unidentified client session before disconnecting the application. 24
25 Application/ValidationFrequency Time, in milliseconds, that the server will wait during server-to-client validation. Validation only occurs if the client stops sending data to the server. Validation is done by sending a ping request from the server to the client. If ValidationFrequency is set to 0, the server won't validate client connections. Application/MaximumPendingWriteBytes Maximum number of bytes that are allowed to be queued and remain waiting to be sent. If this value is exceeded on an individual client connection, that connection is terminated. If MaximumPendingWriteBytes is set to 0, there is no maximum value. Application/MaximumSetBufferTime Maximum buffer time allowed on the client side, in milliseconds. A value for MaximumSetBufferTime of 0 removes the buffer time limit. This property can be used to deter stream rippers that might connect to Wowza Streaming Engine software and attempt to set a very large buffer time in order to steal content. Unlimited buffer time can lead to server-side memory run-up. StartStartupStreams Boolean value that indicates system action upon startup streams. When set to true, streams that are defined in StartupStreams.xml are instantiated at server startup. When set to false, streams aren't started at server startup. Manager/TestPlayer/[IpAddress, Port, SSLEnable] IpAddress: IP address or server name that the TestPlayer should use to connect to the server. Default: ${com.wowza.wms.hostport.ipaddress} Port: Port that the TestPlayer should use to connect to the server. Default: ${com.wowza.wms.hostport.firststreamingport} SSLEnable: Enables the test player to use a VHost port with SSL enabled. Sets the stream URL protocol to https: or rtmps: The default value is ${com.wowza.wms.hostport.sslenable}, which will query the hostport in VHost.xml and set to true or false depending on its value. Note 25
26 When Wowza StreamLock AddOn is configured, IpAddress must be set to the StreamLock certificate name, for example: <IpAddress>52f51948efc92.streamlock.net</IpAddress> If a nonstandard SSL port is used, set it explicitly to the port, for example: <Port>9443</Port>. If you have enabled StreamLock for the default streaming port (1935), keep the default Port value. The values true/false for SSLEnable determine which URL prefix is used in test player URLs: true (rtmps or https) and false (rtmp or http). When multiple streaming ports are defined for a VHost, the default port (${com.wowza.wms.hostport.firststreamingport}) can be over-ridden. Amazon EC2 instances use private and public DNS values as IP addresses. EC2 private/public IP address usage with the StreamLock feature requires the private DNS value or the wildcard (*) character to be used as the IP address in order for EC2 AMIs with StreamLock configurations to work. Bind failures occur if the EC2 public DNS value is used as the IP address. You must also restart the server to update StreamLock changes. Restarting the VHost will not update StreamLock changes. Properties Typed name/value pairs. All virtual host properties are copied to virtual hosts upon creation. These properties are available in the server-side API through the IVHost.getProperties() interface. 26
27 Chapter 4 Application Configuration Files Application.xml The Application.xml configuration file defines the configuration settings for an application. An application is a contextual state/environment for media streaming that specifies a set of operating properties within Wowza Streaming Engine software. Users can create as many applications as needed for live streaming, video on demand, transcoding, ndvr, or restreaming from other servers and live sources. Name, AppType, and Description Name: The name of the application. Required. AppType: The type of the application, such as live, vod, livehttporigin, vodhttporigin, liveedge, vodedge. Required. Description: A text description of the application. Optional. ApplicationTimeout Length of time, in milliseconds, that the server will wait before shutting down an application to which no clients are connected. A Timeout value of 0 will keep applications running until the virtual host is shut down. If this value is not provided (or the section is commented out), the value set in the VHost.xml file is used. PingTimeout Length of time, in milliseconds, that the server will wait for a ping response from the client. The ping mechanism that's used to validate a client connection is an RTMP internal ping, not an ICMP ping. If PingTimeout is set to 0, the server will wait indefinitely. If this value isn't provided (or the section is commented out), the value set in the VHost.xml file is used. 27
28 ValidationFrequency Length of time, in milliseconds, that the server will wait during server-to-client validation. Validation only occurs if the client stops sending data to the server. Validation is done by sending a ping request from the server to the client. If ValidationFrequency is set to 0, the server won't validate client connections. If this value isn't provided (or the section is commented out), the value set in the VHost.xml file is used. MaximumPendingWriteBytes Maximum number of bytes that are allowed to be queued and remain waiting to be sent. If this value is exceeded for an individual client connection, then the connection is terminated. If MaximumPendingWriteBytes is set to 0, there is no maximum value. If this value isn't provided (or the section is commented out), the value set in the VHost.xml file is used. MaximumSetBufferTime Maximum number of milliseconds honored server-side for client-side calls to NetStream.setBufferTime(seconds). To turn off this check, set the value of MaximumSetBufferTime to 0. The default value is (60 seconds). This setting is used to protect against spoofing threats (such as those posed by Replay Media Catcher and Grab Pro), which can set a very large client-side buffer to trick a server into sending all the media data at once. This can cause the server to consume a large amount of Java heap memory. MaximumStorageDirDepth Maximum number of subfolders that are allowed in any storage path. This setting helps to protect against symbolic link loops. Connections/AutoAccept Setting that determines whether the application automatically accepts Adobe Flash client playback connection requests. If set to true, all connection requests are accepted automatically. If set to false, the application must make a server-side call to client.acceptconnection() to accept a connection request. Connections/AllowDomains Comma-delimited list of domain names or IP addresses for which client connections are accepted. The domain names or IP addresses that are specified represent the domain name 28
29 or IP address of an Adobe Flash SWF file that connects to Wowza Streaming Engine software or the IP address of a client that connects to Wowza Streaming Engine software. If no value is specified, then connections from all domains or IP addresses are accepted. For example, if you have the SWF file you can set AllowDomains to in order to configure the Wowza Streaming Engine instance so that only clients from the mycompany.com domain can access the server. You can also add an IP address (or IP address wildcard) to accept all connections from a particular IP address. You might filter based on IP address when you're working with a client-side live source that doesn't provide a valid referrer. You can use the wildcard character (*) to match partial domain names or IP addresses. For example, if you want to match all domain names that end with mycompany.com, you would specify the domain name *.mycompany.com. Allow-domains processing occurs just before the onconnect event method. Therefore, if you want to provide finer-grained access control to your server, you can override the onconnect event handler in a custom module and provide your own filtering mechanism. Streams/StreamType Name of the default stream type for this application. For more information about stream types, see "Stream Types" in the Wowza Streaming Engine User's Guide. Streams/StorageDir, KeyDir, SharedObjects/StorageDir Streams/StorageDir: Full path to the directory where the application reads and writes media files. KeyDir is the directory where the Cupertino streaming (Apple HLS) AES-128 encryption keys are stored. SharedObjects/StorageDir is the full path to the directory where the application reads and writes remotely stored object data. If no values are specified, an application uses the following directories: %WMSCONFIG_HOME%/applications/[application]/streams/[appinstance] %WMSCONFIG_HOME%/applications/[application]/sharedobjects/[appinstance] %WMSCONFIG_HOME%/applications/[application]/keys/[appinstance] %WMSCONFIG_HOME% [application] [appinstance] the value of the environment variable WMSCONFIG_HOME the name of the application the name of the application instance 29
30 The following variables are supported: Variable Name ${com.wowza.wms.apphome} ${com.wowza.wms.confighome} ${com.wowza.wms.context.vhost} ${com.wowza.wms.context.vhostconfighome} ${com.wowza.wms.context.application} ${com.wowza.wms.context.applicationinstance} Description Application home directory Configuration home directory Virtual host name Virtual host config directory Application name Application instance name Streams/LiveStreamPacketizers HTTP streaming packetization schemes to use for live source streams. Live stream packetization is done to make a stream available for HTTP streaming to the Apple iphone and ipod touch, Adobe Flash Player, Microsoft Silverlight, and MPEG-DASH players. It is also done to enable DVR for a live stream. LiveStreamPacketizers can contain none, one, or more of the following values (separated by commas): LiveStreamPacketizers cupertinostreamingpacketizer smoothstreamingpacketizer sanjosestreamingpacketizer mpegdashstreamingpacketizer cupertinostreamingrepeater smoothstreamingrepeater sanjosestreamingrepeater mpegdashstreamingrepeater dvrstreamingpacketizer dvrstreamingrepeater Description Cupertino: ios devices Smooth: Microsoft Silverlight San Jose: Adobe Flash MPEG-DASH Cupertino: Live stream repeater for ios devices Cupertino: Live stream repeater for Microsoft Silverlight San Jose: Live stream repeater for Adobe Flash MPEG-DASH: Live streaming repeater for MPEG-DASH players Wowza ndvr: Streaming Wowza ndvr: Live stream repeater 30
31 Streams/Properties Defined properties and name/value pairs for instances of Streams. Transcoder/LiveStreamTranscoder Name of the default Transcoder handler for this application. If set to transcoder, the Transcoder is enabled for this application. If no value is specified, live source streams aren't transcoded. Transcoder/Templates Comma-separated list of template names to search when matching a live source stream to a Transcoder template. If the Transcoder is enabled, each new live stream that's published to the application can be transcoded. Wowza Streaming Engine software will search the Templates list for the first template file that exists. After it finds a template, it uses that template to transcode the stream. If no matches are found, the stream won't be transcoded. The default value for this setting is: ${SourceStreamName}.xml, transrate.xml The first item in the template name list uses the variable ${SourceStreamName}. If there's a Transcoder template in the template directory with the name [stream-name].xml (where [stream-name] is the name of the live source stream), then that template is used. If this file doesn't exist, the transrate.xml template is used (if it exists). If neither template exists, then the stream won't be transcoded. Only the variable ${SourceStreamName} is supported. Transcoder/ProfileDir Environment variable that specifies the path to the Transcoder profiles: {com.wowza.wms.context.vhostconfighome}/transcoder/profiles Transcoder/TemplateDir Full path to the directory where the application looks for templates that are used to control the Transcoder. By default, Wowza Streaming Engine software looks for templates in the [install-dir]/transcoder/templates folder, for example, ${com.wowza.wms.context.vhostconfighome}/transcoder/templates. You can also define a per-application templates folder by using path variables. For example, if you want to set up a per-application templates folder, specify the following path: 31
32 ${com.wowza.wms.context.vhostconfighome}/conf/${com.wowza.wms.context.appli cation}/profiles The following variables are supported: Variable Name ${com.wowza.wms.apphome} ${com.wowza.wms.confighome} ${com.wowza.wms.context.vhost} ${com.wowza.wms.context.vhostconfighome} ${com.wowza.wms.context.application} ${com.wowza.wms.context.applicationinstance} Description Application home directory Configuration home directory Virtual host name Virtual host config directory Application name Application instance name Transcoder/Properties Name/value pairs defined by the user for the Transcoder. DVR/Recorders Name of the default DVR recorder for this application. DVR/Store As a single server or as an origin, set the Store to dvrfilestorage. Store should be empty for edge servers. DVR/WindowDuration Duration, in seconds, of material available for DVR playback. The default value of 0 denotes that there's no DVR window (all data is available for DVR playback). DVR/StorageDir Full path to the directory where the application reads and writes Wowza ndvr data. 32
33 The following variables are supported: Variable Name ${com.wowza.wms.apphome} ${com.wowza.wms.confighome} ${com.wowza.wms.context.vhost} ${com.wowza.wms.context.vhostconfighome} ${com.wowza.wms.context.application} ${com.wowza.wms.context.applicationinstance} Description Application home directory Configuration home directory Virtual host name Virtual host config directory Application name Application instance name DVR/ArchiveStrategy Value that tells the DVR store what to do with an old stream when a new stream of the same app instance and stream name starts. The default value is append. ArchiveStrategy can contain only one of the following values: ArchiveStrategy append delete version Description Append the new stream information to the end of the previous store. Delete the old DVR store and start a new one. Create a new version of the DVR store. DVR/Properties Defined DVR properties and name/value pairs for this application. TimedText/VODTimedTextProviders Comma-separated list of video on demand (VOD) caption providers. These caption providers are declared in TimedTextProviders.xml. Properties Additional configuration settings and name/value pairs for fine tuning TimedText. 33
34 HTTPStreamers Streaming protocols supported by Wowza Streaming Engine software. HTTP streaming which is available to the Apple iphone and ipod touch, Adobe Flash, Microsoft Silverlight, and MPEG-DASH also allows DVR streaming to repeat DVR audio and video content from the origin to the edge. HTTPStreamers can contain none, one, or more of the following values (separated by commas): HTTPStreamers cupertinostreaming smoothstreaming sanjosestreaming mpegdashstreaming dvrchunkstreaming Description Cupertino: HTTP streaming to iphone and ipod touch Smooth: HTTP streaming to Microsoft Silverlight San Jose: HTTP streaming to Adobe Flash MPEG-DASH: HTTP streaming to MPEG-DASH players DVR: Enable streaming from origin to edge MediaCacheSourceList Specifies which of the Media Cache Sources that are configured on the system can be accessed by a VOD edge application. The wildcard (*) character means that all Media Cache sources configured on the system can be accessed by the application. Selected Media Cache sources can be specified as a comma-separated list. Media Cache Sources are HTTP-based servers and network-attached file systems that provide file-based content to the Media Cache system for re-streaming. For example, a VOD application running on an Amazon EC2 instance could include amazons3 and/or dvrorigin Media Cache Sources. Client/IdleFrequency Time, in milliseconds, between idle events. Idle events represent the heartbeat of streaming for Adobe Flash and RTSP/RTP streaming. The idle frequency represents how often new data is sent to the player. If this value is set to -1, then the value specified in the VHost.xml file is used. Client/Access/[*] Settings that control the default access that an Adobe Flash client connection has to assets associated with a particular Wowza Streaming Engine application. An individual client's access can be modified through the server-side API. This is most commonly done in the onconnect or onconnectaccept event handler. To control access, each of these settings compares the asset name (stream name or shared object name) to a comma-delimited list of 34
35 names. If any part of the asset name matches one of the elements in the list, then the requested access is granted. The values are case-sensitive. If no parameter value is specified, then access is denied to all clients. If the parameter value is set to the wildcard (*) character, then access is granted to all clients. For example, if StreamReadAccess is set to testa/testb;testc, then the following stream name would be granted the following access: Stream Name testc testc/test testc/test testa/testb testa/testb123 testa/testb/file123 testa/test Access Status Granted Access Granted Access Denied Access (incorrect case) Granted Access Granted Access Granted Access Denied Access (incomplete match) StreamReadAccess: Setting controls the access to view or listen to a NetStream object. StreamWriteAccess: Setting controls the access to write or publish to a NetStream object. StreamAudioSampleAccess: Setting controls the access to call SoundMixer.computeSpectrum() to grab the waveform data of a NetStream object. StreamVideoSampleAccess: Setting controls the access to call BitmapData.draw() to take a snapshot of a NetStream object. SharedObjectReadAccess: Setting controls the access to read values from a RemoteSharedObject. SharedObjectWriteAccess: Setting controls the access to write values to a RemoteSharedObject. RTP/Authentication/[PublishMethod, PlayMethod] Authentication method used to secure RTSP connections to Wowza Streaming Engine software. PublishMethod is for source connections and PlayMethod is for playback connections. Authentication methods are defined and configured in Authentication.xml. By default, there are three authentication methods: none: There is no authentication. basic: User name and password are sent in cleartext. digest: Password is hashed using MD5 and is never sent in cleartext over the network. 35
36 User names and passwords are stored in the conf/publish.password file. The publish.password file contains one line per user formatted as [user name][space][password]. The authentication method can also be set at the virtual host level in VHost.xml. RTP/[AVSyncMethod, MaxRTCPWaitTime] Settings that control how Wowza Streaming Engine software synchronizes audio and video channels when receiving an RTP stream. AVSyncMethod configures the methodology used to synchronize the audio and video channels using one of the following values: senderreport: Uses the Sender Report (SR) packets that are sent over the Real Time Control Protocol (RTCP) channel. This is the default value. rtptimecode: Assumes that RTP timecodes are absolute timecode values. systemclock: Synchronizes based on the system clock. MaxRTCPWaitTime is the maximum period of time, in milliseconds, that the Wowza Streaming Engine instance will wait to receive an SR packet over the RTCP channel. If no SR packets are received within this time, the server defaults to using the rtptimecode method. RTP/IdleFrequency Length of time, in milliseconds, between RTP idle events. Idle events are used to send new media data and events to an RTP or MPEG-TS sessions. RTP/RTSPSessionTimeout Elapsed time, in milliseconds, after which an idle RTSP session is determined to be stale and is disconnected. To turn off idle disconnect, set this value to 0. Wowza Streaming Engine software monitors all RTSP sessions and looks for periodic RTSP messages or RTCP receiver packets over RTP. If the server hasn't received messages during the session timeout period, the session is disconnected. RTP/RTSPMaximumPendingWriteBytes Maximum number of bytes that can wait to be written to an RTSP session. If an RTSP session has more bytes waiting to be written than are specified by this setting, the session is disconnected. Wowza Streaming Engine software monitors the RTSP/TCP connection and watches the number of bytes that are waiting to be delivered. If the number of pending 36
37 bytes exceeds the specified value, then the session is determined to be inactive and the session is disconnected. To turn off maximum pending write byte monitoring, set the RTP/RTSPMaximumPendingWriteBytes value to 0. RTP/[RTSPBindIpAddress, RTSPConnectionIPAddress, RTSPOriginIpAddress] Setting that controls the IP addresses that are exchanged and used during RTSP/RTP port and IP address negotiation when the RTP portion of the stream is delivered over UDP. The RTSPBindIpAddress property is the IP address that Wowza Streaming Engine software binds to when delivering RTP packets over UDP. If the server is using network address translation (NAT) routing, then this address should be set to the internal IP address of the network interface that's mapped to the external IP address. If NAT isn't being used, then this value should be set to the external IP address of the server. The RTSPConnectionIpAddress and RTSPOriginIpAddress are the IP addresses that are exchanged as part of the Session Description Protocol (SDP) data. The RTSPConnectionIpAddress value is the IP address specified in the (c=) line of the SDP data and the RTSPOriginIpAddress value is the IP address specified in the (o-) line of the SDP data. These two values should be set to the external IP address of the server. RTP/IncomingDatagramPortRanges UDP port ranges that this application can use for stream ingestion. Single ports and port ranges can be defined. For example, the following entry enables port and ports through 20004: <IncomingDatagramPortRanges>10000, </IncomingDatagramPortRanges> This setting only affects stream ingestion when using Session Description Protocol (SDP) files or MPEG-TS udp:// URLs to pull streams. The values contained in IncomingDatagramPortRanges don't affect UDP ports that are dynamically assigned during RTSP port negotiation. RTP/Properties Supplemental configuration settings for tuning RTP. MediaCaster/RTP/RTSP/[RTPTransportMode] RTSP flavor that's used to re-stream an RTSP/RTP source, such as an IP camera. If set to interleave, Wowza Streaming Engine software uses RTSP/RTP interleaved (RTP over TCP) to 37
38 connect to RTSP sources. If set to udp, Wowza Streaming Engine software uses RTSP/RTP in non-interleaved mode (RTP over UDP) to connect to RTSP sources. MediaCaster/[StreamValidator] Enable: Boolean. If set to true, then the StreamValidator is active. ResetNameGroups: Boolean. If set to true, then when a stream is reset and it belongs to a MediaStreamNameGroup, all streams in the group are reset. If false, only the unhealthy stream is reset. StreamStartTimeout: Setting that controls the timeout, in milliseconds, for the first packet when monitoring incoming packets (audio, video, data) to be sure packets continue to flow from the live source to stream. StreamTimeout: Setting that controls the timeout, in milliseconds, for packets after the first packet. The stream type refers to a catch-all of any packet of any type (audio, video, data). If any of these values are set to 0, the test is turned off. VideoStartTimeout: Setting that controls the timeout, in milliseconds, for the first packet when monitoring incoming video packets to be sure packets continue to flow from the live source to stream. VideoTimeout: Setting that controls the timeout, in milliseconds, for video packets after the first packet. AudioStartTimeout: Setting that controls the timeout, in milliseconds, for the first audio packet when monitoring incoming packets. AudioTimeout: Setting that controls the timeout, in milliseconds, for audio packets after the first packet. VideoTCToleranceEnable: Boolean value that monitors video timecode jumps when set to true. For details, see How to enable advanced monitoring and resetting of MediaCaster streams. VideoTCPosTolerance: Value that defines the allowable gap, in milliseconds, between the current and previous video packets. If videotcpostolerance and videotcnegtolerance values in milliseconds are set to 3000 and -500 respectively, then the timecode difference between the currently arriving packet and the previous video packet must fall within 3000 and -500 milliseconds. VideoTCNegTolerance: Value that defines the allowable gap, in milliseconds, between the current and previous video packets. If videotcnegtolerance and videotcpostolerance values in milliseconds are set to 3000 and -500 respectively, then the timecode difference between the currently arriving packet and the previous video packet must fall within 3000 and -500 milliseconds. 38
39 AudioTCToleranceEnable: Boolean value that monitors audio timecode jumps when set to true. For details, see How to enable advanced monitoring and resetting of MediaCaster streams. AudioTCPosTolerance: Value that defines the allowable gap, in milliseconds, between the current and previous audio packets. If AudioTCPosTolerance and AudioTCNegTolerance values in milliseconds are set to 3000 and -500 respectively, then the timecode difference between the currently arriving packet and the previous audio packet must fall within 3000 and -500 milliseconds. AudioTCNegTolerance: Value that defines the allowable gap, in milliseconds, between the current and previous audio packets. If AudioTCNegTolerance and AudioTCPosTolerance values in milliseconds are set to 3000 and -500 respectively, then the timecode difference between the currently arriving packet and the previous audio packet must fall within 3000 and -500 milliseconds. DataTCToleranceEnable: Boolean value that monitors timecode jumps when set to true. For details, see How to enable advanced monitoring and resetting of MediaCaster streams. DataTCPosTolerance: Value that defines the allowable gap, in milliseconds, between the current and previous data packets. If DataTCPosTolerance and DataTCNegTolerance values in milliseconds are set to 3000 and -500 respectively, then the timecode difference between the currently arriving packet and the previous data packet must fall within 3000 and -500 milliseconds. DataTCNegTolerance: Value that defines the allowable gap, in milliseconds, between the current and previous data packets. If DataTCNegTolerance and DataTCPosTolerance values in milliseconds are set to 3000 and -500 respectively, then the timecode difference between the currently arriving packet and the previous data packet must fall within 3000 and -500 milliseconds. AVSyncToleranceEnable: Boolean value that monitors timecode jumps when set to true. For details, see How to enable advanced monitoring and resetting of MediaCaster streams. AVSyncTolerance: Timecode difference between the currently arriving packet and the previous data packet. DebugLog: Boolean. When set to true, this turns on verbose logging for debugging. MediaCaster/Properties Defined MediaCaster properties for an application. MediaReader/Properties Defined MediaReader properties for an application. 39
40 MediaWriter/Properties Defined MediaWriter properties for an application. LiveStreamPacketizer/Properties Defined LiveStreamPacketizer properties for an application. HTTPStreamer/Properties Defined HTTPStreamer properties for an application. Manager/Properties These properties are name/value pairs, which are supplemental properties used by Wowza Streaming Engine Manager. This element is included for future use. Repeater/[OriginURL, QueryString] Origin URL and query string to use when using the application as a live stream repeater. If the application is a DVR repeater, the OriginURL is the URL of the DVR origin server from which to retrieve audio and video chunks. StreamRecorder/Properties Supplemental configuration settings for tuning StreamRecorder instances. For more information, see the help text that accompanies property settings in Wowza Streaming Engine Manager. Modules/Module/[Name, Description, Class] List of modules available to this application. The Modules list must contain a unique Name element in order to identify the module. The Description field isn't used. The Class field is the full package name and class name of the module. For more information, see "Server-side Modules" in the Wowza Streaming Engine User's Guide. 40
41 Properties Typed name/value pairs. All application properties are copied to child application instances during instance creation. These properties are available in the server-side API through the IApplicationInstance.getProperties() interface. 41
Wowza Media Server 3. Configuration Reference. Copyright 2006-2014 Wowza Media Systems, LLC. All rights reserved.
Wowza Media Server 3 Configuration Reference Wowza Media Server 3: Configuration Reference Version: 3.6.4 http://www.wowza.com This document is for informational purposes only and in no way shall be interpreted
Wowza Media Server Pro. User s Guide
Wowza Media Server Pro User s Guide Wowza Media Server Pro: User s Guide Version 1.7 Copyright 2006 2009 Wowza Media Systems, Inc. http://www.wowzamedia.com Third-Party Information This document contains
Wowza Streaming Engine. Dynamic Load Balancing AddOn. Copyright 2014-2015 Wowza Media Systems, LLC. All rights reserved.
Wowza Streaming Engine Dynamic Load Balancing AddOn Wowza Streaming Engine: Dynamic Load Balancing AddOn Version: 4.0 http://www.wowza.com 2 This document is for informational purposes only and in no way
QuickTime, iphone, ipad and ipod are either registered trademarks or trademarks of Apple, Inc. in the United States and/or other countries.
Load Testing Tool This document is for informational purposes only and in no way shall be interpreted or construed to create any warranties of any kind, either express or implied, regarding the information
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
Using the Adobe Access Server for Protected Streaming
Adobe Access April 2014 Version 4.0 Using the Adobe Access Server for Protected Streaming Copyright 2012-2014 Adobe Systems Incorporated. All rights reserved. This guide is protected under copyright law,
CHAPTER 1 - JAVA EE OVERVIEW FOR ADMINISTRATORS
CHAPTER 1 - JAVA EE OVERVIEW FOR ADMINISTRATORS Java EE Components Java EE Vendor Specifications Containers Java EE Blueprint Services JDBC Data Sources Java Naming and Directory Interface Java Message
Oracle WebLogic Server 11g Administration
Oracle WebLogic Server 11g Administration This course is designed to provide instruction and hands-on practice in installing and configuring Oracle WebLogic Server 11g. These tasks include starting and
ADOBE CONNECT ENTERPRISE SERVER 6
Chapter 1: ADOBE CONNECT ENTERPRISE SERVER 6 SSL CONFIGURATION GUIDE Copyright 2006 Adobe Systems Incorporated. All rights reserved. Adobe Connect Enterprise Server 6, for Windows If this guide is distributed
bbc Adobe LiveCycle Data Services Using the F5 BIG-IP LTM Introduction APPLIES TO CONTENTS
TECHNICAL ARTICLE Adobe LiveCycle Data Services Using the F5 BIG-IP LTM Introduction APPLIES TO Adobe LiveCycle Enterprise Suite CONTENTS Introduction................................. 1 Edge server architecture......................
CA Unified Infrastructure Management
CA Unified Infrastructure Management Probe Guide for IIS Server Monitoring iis v1.7 series Copyright Notice This online help system (the "System") is for your informational purposes only and is subject
Domains and Network Configuration
5 Domains and Network Configuration In WebLogic Server, a domain is a group of servers, with a common set of configuration information. Every server must be in a domain, whether it is a standalone server
Rebasoft Auditor Quick Start Guide
Copyright Rebasoft Limited: 2009-2011 1 Release 2.1, Rev. 1 Copyright Notice Copyright 2009-2011 Rebasoft Ltd. All rights reserved. REBASOFT Software, the Rebasoft logo, Rebasoft Auditor are registered
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
FileMaker Server 11. FileMaker Server Help
FileMaker Server 11 FileMaker Server Help 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered
bbc Overview Adobe Flash Media Rights Management Server September 2008 Version 1.5
bbc Overview Adobe Flash Media Rights Management Server September 2008 Version 1.5 2008 Adobe Systems Incorporated. All rights reserved. Adobe Flash Media Rights Management Server 1.5 Overview for Microsoft
Configuring Nex-Gen Web Load Balancer
Configuring Nex-Gen Web Load Balancer Table of Contents Load Balancing Scenarios & Concepts Creating Load Balancer Node using Administration Service Creating Load Balancer Node using NodeCreator Connecting
MID-TIER DEPLOYMENT KB
MID-TIER DEPLOYMENT KB Author: BMC Software, Inc. Date: 23 Dec 2011 PAGE 1 OF 16 23/12/2011 Table of Contents 1. Overview 3 2. Sizing guidelines 3 3. Virtual Environment Notes 4 4. Physical Environment
Job Reference Guide. SLAMD Distributed Load Generation Engine. Version 1.8.2
Job Reference Guide SLAMD Distributed Load Generation Engine Version 1.8.2 June 2004 Contents 1. Introduction...3 2. The Utility Jobs...4 3. The LDAP Search Jobs...11 4. The LDAP Authentication Jobs...22
CA Nimsoft Monitor. Probe Guide for IIS Server Monitoring. iis v1.5 series
CA Nimsoft Monitor Probe Guide for IIS Server Monitoring iis v1.5 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and
Crestron Fusion Version 9.3 Enterprise Management Platform Installation Guide
Crestron Fusion Version 9.3 Enterprise Management Platform Installation Guide The specific patents that cover Crestron products are listed at patents.crestron.com. Crestron, the Crestron logo, Capture
Configuring Security Features of Session Recording
Configuring Security Features of Session Recording Summary This article provides information about the security features of Citrix Session Recording and outlines the process of configuring Session Recording
LogLogic Microsoft Dynamic Host Configuration Protocol (DHCP) Log Configuration Guide
LogLogic Microsoft Dynamic Host Configuration Protocol (DHCP) Log Configuration Guide Document Release: September 2011 Part Number: LL600026-00ELS090000 This manual supports LogLogic Microsoft DHCP Release
FileMaker Server 13. FileMaker Server Help
FileMaker Server 13 FileMaker Server Help 2010-2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker,
S y s t e m A r c h i t e c t u r e
S y s t e m A r c h i t e c t u r e V e r s i o n 5. 0 Page 1 Enterprise etime automates and streamlines the management, collection, and distribution of employee hours, and eliminates the use of manual
FileMaker Server 10 Help
FileMaker Server 10 Help 2007-2009 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, the file folder logo, Bento and the Bento logo
FileMaker Server 14. FileMaker Server Help
FileMaker Server 14 FileMaker Server Help 2007 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks
www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012
www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this documentation,
Backup Exec Cloud Storage for Nirvanix Installation Guide. Release 2.0
Backup Exec Cloud Storage for Nirvanix Installation Guide Release 2.0 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the
Flight Workflow User's Guide. Release 12.0.0
Flight Workflow User's Guide Release 12.0.0 Copyright 2015 Signiant Inc. All rights reserved. Contents CHAPTER 1 Flight Introduction 4 FlightUploadReference 4 FlightDownloadReference 4 Cloud Storage Configuration
Wowza Streaming Cloud TM Overview
Wowza Streaming Cloud TM Overview Wowza Media Systems, LLC February 2015 This document is for informational purposes only and in no way shall be interpreted or construed to create any warranties of any
Blue Coat Security First Steps Solution for Streaming Media
Blue Coat Security First Steps Solution for Streaming Media SGOS 6.5 Third Party Copyright Notices 2014 Blue Coat Systems, Inc. All rights reserved. BLUE COAT, PROXYSG, PACKETSHAPER, CACHEFLOW, INTELLIGENCECENTER,
Integrating VoltDB with Hadoop
The NewSQL database you ll never outgrow Integrating with Hadoop Hadoop is an open source framework for managing and manipulating massive volumes of data. is an database for handling high velocity data.
LANDesk Management Suite 8.7 Extended Device Discovery
LANDesk Management Suite 8.7 Extended Device Discovery Revision 1.0 Roy Meyer Feb. 7, 2007 Information in this document is provided in connection with LANDesk Software products. No license, express or
Migrating, Installing, and Configuring ADOBE CONNECT 8
Migrating, Installing, and Configuring ADOBE CONNECT 8 Copyright 2011 Adobe Systems Incorporated. All rights reserved. Migrating, Installing, and Configuring Adobe Connect 8 This guide is licensed for
StreamServe Persuasion SP4 Service Broker
StreamServe Persuasion SP4 Service Broker User Guide Rev A StreamServe Persuasion SP4 Service Broker User Guide Rev A 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No
Flexible Routing and Load Control on Back-End Servers. Controlling the Request Load and Quality of Service
ORACLE TRAFFIC DIRECTOR KEY FEATURES AND BENEFITS KEY FEATURES AND BENEFITS FAST, RELIABLE, EASY-TO-USE, SECURE, AND SCALABLE LOAD BALANCER [O.SIDEBAR HEAD] KEY FEATURES Easy to install, configure, and
vcenter Hyperic Configuration Guide
vcenter Hyperic 5.8 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of
CA Performance Center
CA Performance Center Single Sign-On User Guide 2.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is
CA Nimsoft Monitor Snap
CA Nimsoft Monitor Snap Configuration Guide for IIS Server Monitoring iis v1.5 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to change
PowerChute TM Network Shutdown Security Features & Deployment
PowerChute TM Network Shutdown Security Features & Deployment By David Grehan, Sarah Jane Hannon ABSTRACT PowerChute TM Network Shutdown (PowerChute) software works in conjunction with the UPS Network
Using DC Agent for Transparent User Identification
Using DC Agent for Transparent User Identification Using DC Agent Web Security Solutions v7.7, 7.8 If your organization uses Microsoft Windows Active Directory, you can use Websense DC Agent to identify
EdgeCast Networks Inc. Token-Based Authentication Administration Guide
EdgeCast Networks Inc. Token-Based Authentication Administration Guide Disclaimer Care was taken in the creation of this guide. However, EdgeCast Networks Inc. cannot accept any responsibility for errors
An Oracle White Paper September 2013. Advanced Java Diagnostics and Monitoring Without Performance Overhead
An Oracle White Paper September 2013 Advanced Java Diagnostics and Monitoring Without Performance Overhead Introduction... 1 Non-Intrusive Profiling and Diagnostics... 2 JMX Console... 2 Java Flight Recorder...
EMC ApplicationXtender Server
EMC ApplicationXtender Server 6.5 Monitoring Guide P/N 300-010-560 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 1994-2010 EMC Corporation. All
BrightStor ARCserve Backup for Windows
BrightStor ARCserve Backup for Windows Agent for Microsoft SQL Server r11.5 D01173-2E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the
Understanding Slow Start
Chapter 1 Load Balancing 57 Understanding Slow Start When you configure a NetScaler to use a metric-based LB method such as Least Connections, Least Response Time, Least Bandwidth, Least Packets, or Custom
SSL CONFIGURATION GUIDE
HYPERION RELEASE 9.3.1 SSL CONFIGURATION GUIDE CONTENTS IN BRIEF About This Document... 2 Assumptions... 2 Information Sources... 2 Identifying SSL Points for Hyperion Products... 4 Common Activities...
Using RADIUS Agent for Transparent User Identification
Using RADIUS Agent for Transparent User Identification Using RADIUS Agent Web Security Solutions Version 7.7, 7.8 Websense RADIUS Agent works together with the RADIUS server and RADIUS clients in your
IBM Security QRadar Version 7.2.2. WinCollect User Guide V7.2.2
IBM Security QRadar Version 7.2.2 WinCollect User Guide V7.2.2 Note Before using this information and the product that it supports, read the information in Notices on page 47. Product information This
UNICORE UFTPD server UNICORE UFTPD SERVER. UNICORE Team
UNICORE UFTPD server UNICORE UFTPD SERVER UNICORE Team Document Version: 1.0.0 Component Version: 2.3.2 Date: 14 09 2015 UNICORE UFTPD server Contents 1 UNICORE UFTP 1 1.1 UFTP features...................................
User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream
User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner
Syslog Windows Tool Set (WTS) Configuration File Directives And Help
orrelog Syslog Windows Tool Set (WTS) Configuration File Directives And Help The CO-sysmsg.cnf file contains all the parameters and specifications related to the program s operation. This file is found
CA Clarity Project & Portfolio Manager
CA Clarity Project & Portfolio Manager Using CA Clarity PPM with Open Workbench and Microsoft Project v12.1.0 This documentation and any related computer software help programs (hereinafter referred to
CA Nimsoft Monitor. Probe Guide for Internet Control Message Protocol Ping. icmp v1.1 series
CA Nimsoft Monitor Probe Guide for Internet Control Message Protocol Ping icmp v1.1 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes
Adobe LiveCycle Data Services 3 Performance Brief
Adobe LiveCycle ES2 Technical Guide Adobe LiveCycle Data Services 3 Performance Brief LiveCycle Data Services 3 is a scalable, high performance, J2EE based server designed to help Java enterprise developers
McAfee Web Gateway 7.4.1
Release Notes Revision B McAfee Web Gateway 7.4.1 Contents About this release New features and enhancements Resolved issues Installation instructions Known issues Find product documentation About this
IceWarp to IceWarp Server Migration
IceWarp to IceWarp Server Migration Registered Trademarks iphone, ipad, Mac, OS X are trademarks of Apple Inc., registered in the U.S. and other countries. Microsoft, Windows, Outlook and Windows Phone
CA Workload Automation Agent for UNIX, Linux, or Windows
CA Workload Automation Agent for UNIX, Linux, or Windows Implementation Guide r11.3, Third Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter
Copyright 2012 Trend Micro Incorporated. All rights reserved.
Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the software, please review the readme files,
mguard Device Manager Release Notes Version 1.6.1
mguard Device Manager Release Notes Version 1.6.1 Innominate Security Technologies AG Rudower Chaussee 13 12489 Berlin Germany Phone: +49 30 921028 0 Fax: +49 30 921028 020 [email protected] http://www.innominate.com/
BlackBerry Enterprise Service 10. Version: 10.2. Configuration Guide
BlackBerry Enterprise Service 10 Version: 10.2 Configuration Guide Published: 2015-02-27 SWD-20150227164548686 Contents 1 Introduction...7 About this guide...8 What is BlackBerry Enterprise Service 10?...9
Using LDAP Authentication in a PowerCenter Domain
Using LDAP Authentication in a PowerCenter Domain 2008 Informatica Corporation Overview LDAP user accounts can access PowerCenter applications. To provide LDAP user accounts access to the PowerCenter applications,
How To Test The Bandwidth Meter For Hyperv On Windows V2.4.2.2 (Windows) On A Hyperv Server (Windows V2) On An Uniden V2 (Amd64) Or V2A (Windows 2
BANDWIDTH METER FOR HYPER-V NEW FEATURES OF 2.0 The Bandwidth Meter is an active application now, not just a passive observer. It can send email notifications if some bandwidth threshold reached, run scripts
FileMaker Server 12. FileMaker Server Help
FileMaker Server 12 FileMaker Server Help 2010-2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc.
MarkLogic Server. Database Replication Guide. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.
Database Replication Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Database Replication
CA Nimsoft Monitor. Probe Guide for Active Directory Server. ad_server v1.4 series
CA Nimsoft Monitor Probe Guide for Active Directory Server ad_server v1.4 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as
EMC ApplicationXtender Server
EMC ApplicationXtender Server 6.0 Monitoring Guide P/N 300 008 232 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 1994 2009 EMC Corporation. All
GlobalSCAPE DMZ Gateway, v1. User Guide
GlobalSCAPE DMZ Gateway, v1 User Guide GlobalSCAPE, Inc. (GSB) Address: 4500 Lockhill-Selma Road, Suite 150 San Antonio, TX (USA) 78249 Sales: (210) 308-8267 Sales (Toll Free): (800) 290-5054 Technical
CA Workload Automation Agent for Databases
CA Workload Automation Agent for Databases Implementation Guide r11.3.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the
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
How To Install An Aneka Cloud On A Windows 7 Computer (For Free)
MANJRASOFT PTY LTD Aneka 3.0 Manjrasoft 5/13/2013 This document describes in detail the steps involved in installing and configuring an Aneka Cloud. It covers the prerequisites for the installation, the
SOA Software: Troubleshooting Guide for Agents
SOA Software: Troubleshooting Guide for Agents SOA Software Troubleshooting Guide for Agents 1.1 October, 2013 Copyright Copyright 2013 SOA Software, Inc. All rights reserved. Trademarks SOA Software,
Wowza Streaming Engine. User's Guide. Copyright 2006-2015 Wowza Media Systems, LLC. All rights reserved.
Wowza Streaming Engine User's Guide Wowza Streaming Engine: User's Guide Version: 4.2 http://www.wowza.com This document is for informational purposes only and in no way shall be interpreted or construed
Integrated Cisco Products
Installation Guide Supplement for use with Integrated Cisco Products Websense Web Security Websense Web Filter v7.5 1996 2010, Websense Inc. All rights reserved. 10240 Sorrento Valley Rd., San Diego, CA
Apple Remote Desktop Focus on Task Server
Apple Remote Desktop Focus on Task Server K Apple Computer, Inc. 2006 Apple Computer, Inc. All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the
Data Collection and Analysis: Get End-to-End Security with Cisco Connected Analytics for Network Deployment
White Paper Data Collection and Analysis: Get End-to-End Security with Cisco Connected Analytics for Network Deployment Cisco Connected Analytics for Network Deployment (CAND) is Cisco hosted, subscription-based
Transparent Identification of Users
Transparent Identification of Users Websense Web Security Solutions v7.5, v7.6 Transparent Identification of Users 1996 2011, Websense, Inc. All rights reserved. 10240 Sorrento Valley Rd., San Diego, CA
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
Cisco Unified Workforce Optimization
Cisco Unified Workforce Optimization Desktop Requirements Guide Version 10.5 First Published: June 18, 2014 Last Updated: March 6, 2015 THE SPECIFICATIONS AND INFORMATION REGARDING THE PRODUCTS IN THIS
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
Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings...
Post Installation Guide for Primavera Contract Management 14.1 July 2014 Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings...
Sharp Remote Device Manager (SRDM) Server Software Setup Guide
Sharp Remote Device Manager (SRDM) Server Software Setup Guide This Guide explains how to install the software which is required in order to use Sharp Remote Device Manager (SRDM). SRDM is a web-based
Oracle WebLogic Server
Oracle WebLogic Server Creating WebLogic Domains Using the Configuration Wizard 10g Release 3 (10.3) November 2008 Oracle WebLogic Server Oracle Workshop for WebLogic Oracle WebLogic Portal Oracle WebLogic
ELIXIR LOAD BALANCER 2
ELIXIR LOAD BALANCER 2 Overview Elixir Load Balancer for Elixir Repertoire Server 7.2.2 or greater provides software solution for load balancing of Elixir Repertoire Servers. As a pure Java based software
Migrating, Installing, and Configuring ADOBE CONNECT 9
Migrating, Installing, and Configuring ADOBE CONNECT 9 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: About this document
Migrating, Installing, and Configuring ADOBE CONNECT 9
Migrating, Installing, and Configuring ADOBE CONNECT 9 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: About this document
Table of Contents. Requirements and Options 1. Checklist for Server Installation 5. Checklist for Importing from CyberAudit 2.0 13
Cy be r Audi t We b Table of Contents C H A P T E R 1 Requirements and Options 1 System and Hardware Requirements...1 Computer... 1 Operating System... 1 Browser... 2 CyberLock Hardware... 2 Installation
MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM?
MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM? Ashutosh Shinde Performance Architect [email protected] Validating if the workload generated by the load generating tools is applied
Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0
Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Third edition (May 2012). Copyright International Business Machines Corporation 2012. US Government Users Restricted
Cache Configuration Reference
Sitecore CMS 6.2 Cache Configuration Reference Rev: 2009-11-20 Sitecore CMS 6.2 Cache Configuration Reference Tips and Techniques for Administrators and Developers Table of Contents Chapter 1 Introduction...
Legal Notices. Warranty
Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting
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)
SOA Software: Troubleshooting Guide for Policy Manager for DataPower
SOA Software: Troubleshooting Guide for Policy Manager for DataPower Troubleshooting Guide for Policy Manager for DataPower 1 SOA Software Policy Manager Troubleshooting Guide for Policy Manager for DataPower
Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010
Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 This document describes the different types of Unisphere management stations and tells how to install
Release Notes for Epilog for Windows Release Notes for Epilog for Windows v1.7/v1.8
Release Notes for Epilog for Windows v1.7/v1.8 InterSect Alliance International Pty Ltd Page 1 of 22 About this document This document provides release notes for Snare Enterprise Epilog for Windows release
RMCS Installation Guide
RESTRICTED RIGHTS Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (C)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS
Release Notes. Upgrades to LifeSize UVC Video Center. New Features. LifeSize UVC Video Center Release: v2.1
Release Notes LifeSize UVC Video Center Release: v2.1 Upgrades to LifeSize UVC Video Center... 1 New Features... 1 Resolved Issues... 2 Known Issues... 2 Product Limitations... 4 Interoperability... 6
CentovaCast Reseller's Guide
CentovaCast Copyright 2007-2008, Centova Technologies Inc. Published November, 2008 For Centova Cast v2.2 Table of Contents 1. Configuring Settings...3 1.1.1. Basic Configuration...3 1.1.2. Reseller Options
Dove User Guide Copyright 2010-2011 Virgil Trasca
Dove User Guide Dove User Guide Copyright 2010-2011 Virgil Trasca Table of Contents 1. Introduction... 1 2. Distribute reports and documents... 3 Email... 3 Messages and templates... 3 Which message is
