home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="utf-8"?><!-- DWXMLSource="stats.xml" --><!DOCTYPE xsl:stylesheet [
- <!ENTITY nbsp " ">
- <!ENTITY copy "©">
- <!ENTITY reg "®">
- <!ENTITY trade "™">
- <!ENTITY mdash "—">
- <!ENTITY ldquo "“">
- <!ENTITY rdquo "”">
- <!ENTITY pound "£">
- <!ENTITY yen "¥">
- <!ENTITY euro "€">
- ]>
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="html" encoding="utf-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
- <xsl:template match="/stats">
-
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title>Benchmarks</title>
- <link href="http://www.mediacoderhq.com/wizard/benchmark/sysinfo.css" rel="stylesheet" type="text/css"/>
- </head>
-
- <body class="sysinfo">
- <xsl:if test="speed">
- <table width="100%" border="0" cellspacing="5">
- <tr>
- <td> </td>
- <td width="150" title="Number of seconds that is elapsed during benchmarking">Time Elapsed</td>
- <td><xsl:value-of select="totalElapsedTime"/> sec(s)</td>
- </tr>
- <tr>
- <td> </td>
- <td title="Total number of seconds of files encoded">Total Content Duration</td>
- <td><xsl:value-of select="durationCount"/> sec(s)</td>
- </tr>
- <tr>
- <td> </td>
- <td title="Number of files encoded for benchmarking">Total Files</td>
- <td><xsl:value-of select="processedFiles"/></td>
- </tr>
- <tr>
- <td> </td>
- <td title="Encoding time versus play time">Encoding Speed</td>
- <td><xsl:value-of select="speed"/>x</td>
- </tr>
- <xsl:if test="fps">
- <tr>
- <td> </td>
- <td title="Average encoding frame rate">Encoding Frame Rate</td>
- <td><xsl:value-of select="fps"/> fps</td>
- </tr>
- </xsl:if>
- </table>
- </xsl:if>
- <xsl:if test="processedFiles='0'">
- <div align="center">
- Benchmark not yet performed
- </div>
- </xsl:if>
- </body>
- </html>
-
- </xsl:template>
- </xsl:stylesheet>