{"id":39469,"date":"2024-11-02T04:45:35","date_gmt":"2024-11-02T04:45:35","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=39469"},"modified":"2024-11-26T06:41:28","modified_gmt":"2024-11-26T06:41:28","slug":"%ea%b2%8c%ec%9e%84-%ec%82%ac%ec%9a%b4%eb%93%9c-%ec%a0%9c%ec%9e%91-%eb%a6%ac%eb%b2%84%eb%b8%8c-%eb%94%9c%eb%a0%88%ec%9d%b4-eq-%eb%93%b1%ec%9d%98-%ed%9a%a8%ea%b3%bc-%ec%a0%81%ec%9a%a9%ec%9c%bc","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/39469\/","title":{"rendered":"\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1"},"content":{"rendered":"<p><body><\/p>\n<p>\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791\uc740 \ub2e8\uc21c\ud788 \uc74c\uc545\uacfc \ud6a8\uacfc\uc74c\uc744 \ub9cc\ub4dc\ub294 \uac83\uc744 \ub118\uc5b4, \uc0ac\uc6a9\uc790\uc758 \ubab0\uc785\uac10\uc744 \ub192\uc774\uace0 \uac8c\uc784\uc758 \ubd84\uc704\uae30\ub97c \uc870\uc131\ud558\ub294 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \ubcf8 \uc544\ud2f0\ud074\uc5d0\uc11c\ub294 \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ(\uc774\ud004\ub77c\uc774\uc800) \ub4f1\uc758 \ud6a8\uacfc\ub97c \ud65c\uc6a9\ud558\uc5ec \uac8c\uc784 \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0\ub97c \ud5a5\uc0c1\uc2dc\ud0a4\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>1. \ub9ac\ubc84\ube0c(Reverb)<\/h2>\n<p>\ub9ac\ubc84\ube0c\ub294 \uc18c\ub9ac\uac00 \uacf5\uac04\uc5d0\uc11c \uc5ec\ub7ec \ud45c\uba74\uc5d0 \ubc18\uc0ac\ub418\uba74\uc11c \uc0dd\uae30\ub294 \uc794\ud5a5\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4. \uac8c\uc784\uc5d0\uc11c\ub294 \ub2e4\uc591\ud55c \uacf5\uac04\uac10\uc744 \ud45c\ud604\ud560 \uc218 \uc788\uc5b4, \uc0ac\uc6b4\ub4dc\uc758 \uae4a\uc774\uc640 \uc2e4\uc81c\uac10\uc744 \ub354\ud574\uc90d\ub2c8\ub2e4.<\/p>\n<h3>1.1 \ub9ac\ubc84\ube0c\uc758 \ud544\uc694\uc131<\/h3>\n<p>\ub9ac\ubc84\ube0c\ub97c \uc801\uc6a9\ud558\uba74 \uac8c\uc784 \ud658\uacbd\uc5d0 \ub530\ub978 \ub9ac\uc5bc\ud55c \uc0ac\uc6b4\ub4dc\ub97c \uc0dd\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \ube48 \ubc29, \ub3d9\uad74, \ub610\ub294 \uc232 \uc18d\uc5d0\uc11c \ub4e4\ub9ac\ub294 \uc18c\ub9ac\ub294 \uc11c\ub85c \ub2e4\ub985\ub2c8\ub2e4. \ub9ac\ubc84\ube0c\ub294 \uc774\ub7ec\ud55c \ucc28\uc774\ub97c \ub098\ud0c0\ub0b4\ub294\ub370 \ub3c4\uc6c0\uc744 \uc90d\ub2c8\ub2e4.<\/p>\n<h3>1.2 \ub9ac\ubc84\ube0c \ud6a8\uacfc \uc801\uc6a9 \uc608\uc81c<\/h3>\n<pre><code>import soundfile as sf\nimport numpy as np\nfrom scipy.signal import convolve\n\ndef apply_reverb(sound, reverb_impulse, reverb_amount=0.5):\n    reverb_sound = convolve(sound, reverb_impulse, mode='full')[:len(sound)]\n    return (1 - reverb_amount) * sound + reverb_amount * reverb_sound\n\n# \uc0ac\uc6b4\ub4dc \ud30c\uc77c\uacfc \ub9ac\ubc84\ube0c \uc784\ud384\uc2a4 \uc751\ub2f5 \ubd88\ub7ec\uc624\uae30\noriginal_sound, sample_rate = sf.read('original_sound.wav')\nreverb_impulse, _ = sf.read('reverb_impulse.wav')\n\n# \ub9ac\ubc84\ube0c \ud6a8\uacfc \uc801\uc6a9\nsound_with_reverb = apply_reverb(original_sound, reverb_impulse)\n\n# \uacb0\uacfc \uc800\uc7a5\nsf.write('sound_with_reverb.wav', sound_with_reverb, sample_rate)\n<\/code><\/pre>\n<h2>2. \ub51c\ub808\uc774(Delay)<\/h2>\n<p>\ub51c\ub808\uc774\ub294 \uc18c\ub9ac\uac00 \ud2b9\uc815 \uc2dc\uac04 \uc9c0\uc5f0 \ud6c4\uc5d0 \ubc18\ubcf5\ub418\ub294 \ud6a8\uacfc\uc785\ub2c8\ub2e4. \uac8c\uc784\uc5d0\uc11c \ub51c\ub808\uc774\ub97c \uc801\uc808\ud788 \uc0ac\uc6a9\ud558\uba74 \uc0ac\uc6b4\ub4dc\uc758 \uc5ed\ub3d9\uc131\uc744 \ub192\uc774\uace0 \ub4f1\uc7a5 \uce90\ub9ad\ud130\uc758 \uc6c0\uc9c1\uc784\uc774\ub098 \ud658\uacbd \uc561\uc158\uc744 \ub354\uc6b1 \uac15\uc870\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>2.1 \ub51c\ub808\uc774\uc758 \ud544\uc694\uc131<\/h3>\n<p>\ub51c\ub808\uc774\ub294 \uc0ac\uc6b4\ub4dc\uc758 \uc2dc\uac04\uc801 \ud750\ub984\uc744 \uc870\uc791\ud558\uc5ec \uae34\uc7a5\uac10\uc774\ub098 \uc11c\uc2a4\ud39c\uc2a4\ub97c \uc870\uc131\ud558\ub294 \ub370 \uc720\uc6a9\ud558\uac8c \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \ub610\ud55c, \uc5ec\ub7ec \uc74c\uc6d0\uc774 \ud568\uaed8 \uc874\uc7ac\ud560 \ub54c \uc0ac\uc6b4\ub4dc\uc758 \ubcf5\uc7a1\uc131\uc744 \uc904\uc774\ub294 \uc5ed\ud560\ub3c4 \uc218\ud589\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>2.2 \ub51c\ub808\uc774 \ud6a8\uacfc \uc801\uc6a9 \uc608\uc81c<\/h3>\n<pre><code>def apply_delay(sound, delay_time, feedback=0.5, mix=0.5):\n    delay_samples = int(delay_time * sample_rate)\n    delayed_sound = np.zeros(len(sound) + delay_samples)\n    \n    for i in range(len(sound)):\n        delayed_sound[i] += sound[i]\n        if i &gt;= delay_samples:\n            delayed_sound[i] += feedback * delayed_sound[i - delay_samples]\n    \n    return mix * delayed_sound[:len(sound)] + (1 - mix) * sound\n\n# \ub51c\ub808\uc774 \ud6a8\uacfc \uc801\uc6a9\nsound_with_delay = apply_delay(original_sound, delay_time=0.5)\n\n# \uacb0\uacfc \uc800\uc7a5\nsf.write('sound_with_delay.wav', sound_with_delay, sample_rate)\n<\/code><\/pre>\n<h2>3. \uc774\ud004\ub77c\uc774\uc800(Equalizer, EQ)<\/h2>\n<p>\uc774\ud004\ub77c\uc774\uc800\ub294 \uc8fc\ud30c\uc218 \ub300\uc5ed\uc758 \uc74c\ub7c9\uc744 \uc870\uc808\ud558\uc5ec \uc0ac\uc6b4\ub4dc\uc758 \ud2b9\uc131\uc744 \ubcc0\ud615\ud558\ub294 \ub3c4\uad6c\uc785\ub2c8\ub2e4. \uc8fc\ud30c\uc218 \uc870\uc808\uc744 \ud1b5\ud574 \uac01\uae30 \ub2e4\ub978 \uc545\uae30\ub098 \uc18c\ub9ac\uc758 \ub69c\ub837\ud568\uc744 \uac15\uc870\ud558\uace0, \uc804\uccb4 \ubbf9\uc2a4\uc758 \ubc38\ub7f0\uc2a4\ub97c \uc7a1\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>3.1 EQ\uc758 \ud544\uc694\uc131<\/h3>\n<p>\uac8c\uc784\uc5d0\uc11c\ub294 \ub2e4\ucc44\ub85c\uc6b4 \uc0ac\uc6b4\ub4dc\uac00 \uc874\uc7ac\ud558\uba70, \uac01 \uc0ac\uc6b4\ub4dc\ub294 \uc11c\ub85c \uacb9\uce58\uc9c0 \uc54a\ub3c4\ub85d \uc870\uc808\ub418\uc5b4\uc57c \ud569\ub2c8\ub2e4. EQ\ub97c \ud1b5\ud574 \ud2b9\uc815 \uc8fc\ud30c\uc218\ub97c \uac15\uc870\ud558\uac70\ub098 \uc81c\uac70\ud568\uc73c\ub85c\uc368, \uac01 \uc0ac\uc6b4\ub4dc\uac00 \ub354 \uc27d\uac8c \uac10\uc9c0\ub418\uace0 \uad6c\ubd84\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub85c \uc778\ud574 \ud50c\ub808\uc774\uc5b4\uc758 \uac8c\uc784 \ubab0\uc785\ub3c4\uac00 \ub354\uc6b1 \ud5a5\uc0c1\ub429\ub2c8\ub2e4.<\/p>\n<h3>3.2 EQ \ud6a8\uacfc \uc801\uc6a9 \uc608\uc81c<\/h3>\n<pre><code>from scipy.signal import butter, lfilter\n\ndef apply_eq(sound, cutoff_freq=1000, sample_rate=44100):\n    nyquist = 0.5 * sample_rate\n    normal_cutoff = cutoff_freq \/ nyquist\n    b, a = butter(1, normal_cutoff, btype='low', analog=False)\n    filtered_sound = lfilter(b, a, sound)\n    return filtered_sound\n\n# EQ \ud6a8\uacfc \uc801\uc6a9\nsound_with_eq = apply_eq(original_sound)\n\n# \uacb0\uacfc \uc800\uc7a5\nsf.write('sound_with_eq.wav', sound_with_eq, sample_rate)\n<\/code><\/pre>\n<h2>4. \uacb0\ub860<\/h2>\n<p>\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791\uc5d0\ub294 \uc5ec\ub7ec \ud6a8\uacfc\uc758 \uc801\uc808\ud55c \uc801\uc6a9\uc774 \ub9e4\uc6b0 \uc911\uc694\ud569\ub2c8\ub2e4. \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc744 \ud1b5\ud574 \uc0ac\uc6b4\ub4dc\uc758 \ud004\ub9ac\ud2f0\ub97c \ub192\uc774\uace0, \ud50c\ub808\uc774\uc5b4\uc758 \uacbd\ud5d8\uc744 \ud48d\ubd80\ud558\uac8c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \ud6a8\uacfc\ub97c \uc0ac\uc6a9\ud558\uc5ec \uac8c\uc784\uc758 \ubd84\uc704\uae30\ub97c \uc870\uc131\ud558\uace0, \uac01 \uc694\uc18c\ub4e4\uc774 \uc11c\ub85c \uc870\ud654\ub97c \uc774\ub8e8\ub3c4\ub85d \ub9cc\ub4dc\ub294 \uac83\uc774 \ud544\uc218\uc801\uc785\ub2c8\ub2e4.<\/p>\n<p>\uc704\uc758 \uc608\uc81c \ucf54\ub4dc\ub97c \ud1b5\ud574 \uac01 \ud6a8\uacfc\ub97c \uc9c1\uc811 \uc801\uc6a9\ud574 \ubcf4\uace0, \ub354 \ub098\uc740 \uc0ac\uc6b4\ub4dc\ub97c \ucd94\uad6c\ud558\ub294 \uacfc\uc815\uc5d0\uc11c \ub04a\uc784\uc5c6\uc774 \uc2e4\ud5d8\ud558\uace0 \uac1c\uc120\ud558\ub294 \uac83\uc774 \uc911\uc694\ud569\ub2c8\ub2e4. \uac8c\uc784 \uc0ac\uc6b4\ub4dc\ub97c \uc81c\uc791\ud558\uba74\uc11c \ub2e4\uc591\ud55c \uc2dc\ub3c4\ub97c \ud574\ubcf4\uba74, \ub354\uc6b1 \ud604\uc2e4\uac10 \uc788\ub294 \uc0ac\uc6b4\ub4dc\ub97c \ub9cc\ub4dc\ub294 \ub370 \ud070 \ub3c4\uc6c0\uc774 \ub420 \uac83\uc785\ub2c8\ub2e4.<\/p>\n<p>\uac8c\uc784\uc758 \uc0ac\uc6b4\ub4dc \ub514\uc790\uc778\uc740 \uc804\ubc18\uc801\uc778 \uac8c\uc784 \uacbd\ud5d8\uc5d0 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \uc5ec\ub7ec\ubd84\ub3c4 \ub2e4\uc591\ud55c \ud6a8\uacfc\ub97c \uc2e4\ud5d8\ud574 \ubcf4\uba70 \ub3c5\ucc3d\uc801\uc774\uace0 \ubab0\uc785\uac10 \uc788\ub294 \uc0ac\uc6b4\ub4dc\ub97c \ub9cc\ub4e4\uc5b4 \ubcf4\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791\uc740 \ub2e8\uc21c\ud788 \uc74c\uc545\uacfc \ud6a8\uacfc\uc74c\uc744 \ub9cc\ub4dc\ub294 \uac83\uc744 \ub118\uc5b4, \uc0ac\uc6a9\uc790\uc758 \ubab0\uc785\uac10\uc744 \ub192\uc774\uace0 \uac8c\uc784\uc758 \ubd84\uc704\uae30\ub97c \uc870\uc131\ud558\ub294 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \ubcf8 \uc544\ud2f0\ud074\uc5d0\uc11c\ub294 \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ(\uc774\ud004\ub77c\uc774\uc800) \ub4f1\uc758 \ud6a8\uacfc\ub97c \ud65c\uc6a9\ud558\uc5ec \uac8c\uc784 \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0\ub97c \ud5a5\uc0c1\uc2dc\ud0a4\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. \ub9ac\ubc84\ube0c(Reverb) \ub9ac\ubc84\ube0c\ub294 \uc18c\ub9ac\uac00 \uacf5\uac04\uc5d0\uc11c \uc5ec\ub7ec \ud45c\uba74\uc5d0 \ubc18\uc0ac\ub418\uba74\uc11c \uc0dd\uae30\ub294 \uc794\ud5a5\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4. \uac8c\uc784\uc5d0\uc11c\ub294 \ub2e4\uc591\ud55c \uacf5\uac04\uac10\uc744 \ud45c\ud604\ud560 \uc218 \uc788\uc5b4, \uc0ac\uc6b4\ub4dc\uc758 \uae4a\uc774\uc640 \uc2e4\uc81c\uac10\uc744 \ub354\ud574\uc90d\ub2c8\ub2e4. 1.1 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/39469\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[197],"tags":[],"class_list":["post-39469","post","type-post","status-publish","format-standard","hentry","category-197"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/39469\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791\uc740 \ub2e8\uc21c\ud788 \uc74c\uc545\uacfc \ud6a8\uacfc\uc74c\uc744 \ub9cc\ub4dc\ub294 \uac83\uc744 \ub118\uc5b4, \uc0ac\uc6a9\uc790\uc758 \ubab0\uc785\uac10\uc744 \ub192\uc774\uace0 \uac8c\uc784\uc758 \ubd84\uc704\uae30\ub97c \uc870\uc131\ud558\ub294 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \ubcf8 \uc544\ud2f0\ud074\uc5d0\uc11c\ub294 \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ(\uc774\ud004\ub77c\uc774\uc800) \ub4f1\uc758 \ud6a8\uacfc\ub97c \ud65c\uc6a9\ud558\uc5ec \uac8c\uc784 \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0\ub97c \ud5a5\uc0c1\uc2dc\ud0a4\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. \ub9ac\ubc84\ube0c(Reverb) \ub9ac\ubc84\ube0c\ub294 \uc18c\ub9ac\uac00 \uacf5\uac04\uc5d0\uc11c \uc5ec\ub7ec \ud45c\uba74\uc5d0 \ubc18\uc0ac\ub418\uba74\uc11c \uc0dd\uae30\ub294 \uc794\ud5a5\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4. \uac8c\uc784\uc5d0\uc11c\ub294 \ub2e4\uc591\ud55c \uacf5\uac04\uac10\uc744 \ud45c\ud604\ud560 \uc218 \uc788\uc5b4, \uc0ac\uc6b4\ub4dc\uc758 \uae4a\uc774\uc640 \uc2e4\uc81c\uac10\uc744 \ub354\ud574\uc90d\ub2c8\ub2e4. 1.1 &hellip; \ub354 \ubcf4\uae30 &quot;\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/39469\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-02T04:45:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:41:28+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/39469\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39469\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1\",\"datePublished\":\"2024-11-02T04:45:35+00:00\",\"dateModified\":\"2024-11-26T06:41:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39469\/\"},\"wordCount\":10,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"\uac8c\uc784\uc0ac\uc6b4\ub4dc\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/39469\/\",\"url\":\"https:\/\/atmokpo.com\/w\/39469\/\",\"name\":\"\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-02T04:45:35+00:00\",\"dateModified\":\"2024-11-26T06:41:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39469\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/39469\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/39469\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/39469\/","og_locale":"ko_KR","og_type":"article","og_title":"\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791\uc740 \ub2e8\uc21c\ud788 \uc74c\uc545\uacfc \ud6a8\uacfc\uc74c\uc744 \ub9cc\ub4dc\ub294 \uac83\uc744 \ub118\uc5b4, \uc0ac\uc6a9\uc790\uc758 \ubab0\uc785\uac10\uc744 \ub192\uc774\uace0 \uac8c\uc784\uc758 \ubd84\uc704\uae30\ub97c \uc870\uc131\ud558\ub294 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \ubcf8 \uc544\ud2f0\ud074\uc5d0\uc11c\ub294 \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ(\uc774\ud004\ub77c\uc774\uc800) \ub4f1\uc758 \ud6a8\uacfc\ub97c \ud65c\uc6a9\ud558\uc5ec \uac8c\uc784 \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0\ub97c \ud5a5\uc0c1\uc2dc\ud0a4\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. \ub9ac\ubc84\ube0c(Reverb) \ub9ac\ubc84\ube0c\ub294 \uc18c\ub9ac\uac00 \uacf5\uac04\uc5d0\uc11c \uc5ec\ub7ec \ud45c\uba74\uc5d0 \ubc18\uc0ac\ub418\uba74\uc11c \uc0dd\uae30\ub294 \uc794\ud5a5\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4. \uac8c\uc784\uc5d0\uc11c\ub294 \ub2e4\uc591\ud55c \uacf5\uac04\uac10\uc744 \ud45c\ud604\ud560 \uc218 \uc788\uc5b4, \uc0ac\uc6b4\ub4dc\uc758 \uae4a\uc774\uc640 \uc2e4\uc81c\uac10\uc744 \ub354\ud574\uc90d\ub2c8\ub2e4. 1.1 &hellip; \ub354 \ubcf4\uae30 \"\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1\"","og_url":"https:\/\/atmokpo.com\/w\/39469\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-02T04:45:35+00:00","article_modified_time":"2024-11-26T06:41:28+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/39469\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/39469\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1","datePublished":"2024-11-02T04:45:35+00:00","dateModified":"2024-11-26T06:41:28+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/39469\/"},"wordCount":10,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["\uac8c\uc784\uc0ac\uc6b4\ub4dc"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/39469\/","url":"https:\/\/atmokpo.com\/w\/39469\/","name":"\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-02T04:45:35+00:00","dateModified":"2024-11-26T06:41:28+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/39469\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/39469\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/39469\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"\uac8c\uc784 \uc0ac\uc6b4\ub4dc \uc81c\uc791, \ub9ac\ubc84\ube0c, \ub51c\ub808\uc774, EQ \ub4f1\uc758 \ud6a8\uacfc \uc801\uc6a9\uc73c\ub85c \uc0ac\uc6b4\ub4dc \ud004\ub9ac\ud2f0 \ud5a5\uc0c1"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39469","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=39469"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39469\/revisions"}],"predecessor-version":[{"id":39470,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39469\/revisions\/39470"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=39469"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=39469"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=39469"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}