Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
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 28 29 30 31
Tags more
Archives
Today
Total
관리 메뉴

도토리

유튜브 소리 작아서 속터질때 본문

JS/2

유튜브 소리 작아서 속터질때

dotoryyy 2020. 8. 9. 16:57
var videoElement = document.querySelector("video");
var audioCtx = new AudioContext();
var em_source = audioCtx.createMediaElementSource(videoElement);
var gainNode = audioCtx.createGain();
gainNode.gain.value = 3; ★
em_source.connect(gainNode);
gainNode.connect(audioCtx.destination);

 

'JS > 2' 카테고리의 다른 글

유데미 한글자막  (0) 2020.11.29
js 룰렛  (0) 2019.12.27
접근성 TAB  (0) 2019.12.19
Comments