asf-file-props
Version:
Extract basic metadata from ASF/WMA/WMV files
28 lines (27 loc) • 629 B
HTML
<style>
body {
width: 500px;
margin: auto;
padding: 50px;
text-align: center;
}
table {
border: 1px solid salmon;
margin: 50px auto;
padding: 5px;
}
</style>
<h1>Select a file</h1>
<input type="file" id="fileInput" accept="audio/x-ms-wma, video/x-ms-asf, video/x-ms-wmv">
<table>
<thead><caption>Properties</caption>
<tr>
<th>Property</th>
<th>Value</th>
</tr>
</thead>
<tbody id="resultTable"></tbody>
</table>
<script type="module" src="./index.js">
</script>