-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsb2musicxml.html
More file actions
27 lines (27 loc) · 1.08 KB
/
Copy pathsb2musicxml.html
File metadata and controls
27 lines (27 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>file Upload</title>
</head>
<body>
<h3>Upload your scratch project (.sb2)</h3>
<ul>
<li>Click the button below and upload your sb2 file. To upload a file again, press F5.</li>
</ul>
<input type="file" id="infile" name="f">
<!-- <input type="text" id="filename" placeholder="選択されていません" readonly> -->
<div id="result" style="display:none;">
<h4>Success!</h4>
<ol>
<li><a href="#" id="dl-xml">Download Music XML (song.xml)</a></li>
<li><a href="#" id="dl-timing">Download timing list (song-timing.txt)</a></li>
<li><a href="#" id="dl-lyric">Download lyric list (song-lyric.txt)</a></li>
<li><a href="#" id="dl-mouth">Download mouth shape list (song-mouth.txt)</a></li>
<li><a href="http://www.sinsy.jp/" target="_blank">Upload the downloaded file to Sinsy</a></li>
</ol>
</div>
<script type="text/javascript" src="jszip.min.js"></script>
<script type="text/javascript" src="sb2musicxml.js"></script>
</body>
</html>