Skip to content

Commit

Permalink
同じファイルが再選択された場合でも変換が走るようにする
Browse files Browse the repository at this point in the history
  • Loading branch information
sile committed Oct 3, 2024
1 parent f66df69 commit a69ab96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/transcode_wasm/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h3>入力 MP4 ファイル</h3>
<br />
変換が完了したら<b>出力 MP4 ファイル</b>のリンクが有効になります。
<br /><br />
<input id="input" type="file" accept="video/mp4" onchange="startTranscode()" />
<input id="input" type="file" accept="video/mp4" onclick="event.target.value = ''" onchange="startTranscode()" />
<br />

<h3>出力 MP4 ファイル</h3>
Expand All @@ -48,7 +48,7 @@ <h3>変換設定</h3>
<option value="hev1.1.6.L93.B0">H.265 (1.6.L93.B0)</option>
<option value="vp8">VP8</option>
<option value="vp09.00.10.08">VP9 (00.10.08)</option>
<option value="av01.0.01M.08">AV1 (0.01M.08)</option>
<option value="av01.0.01M.08" selected>AV1 (0.01M.08)</option>
</select>
&nbsp;
解像度:
Expand Down

0 comments on commit a69ab96

Please sign in to comment.