{"id":31989,"date":"2024-11-01T09:04:44","date_gmt":"2024-11-01T09:04:44","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=31989"},"modified":"2024-11-01T11:33:49","modified_gmt":"2024-11-01T11:33:49","slug":"unity-basic-course-sound-and-sound-import","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/31989\/","title":{"rendered":"Unity Basic Course: Sound and Sound Import"},"content":{"rendered":"<p><body><\/p>\n<h2>1. Introduction<\/h2>\n<p>\n        Unity is a very powerful engine for game development, and among its various features, sound is a crucial element that enhances the immersion of the game. In this article, we will take a closer look at how Unity handles sound, how to import and use sound files.\n    <\/p>\n<h2>2. Importance of Sound<\/h2>\n<p>\n        Sound plays a vital role in shaping the atmosphere of a game, stimulating players&#8217; emotions, and emphasizing the unique characteristics of the game. For instance, calm background music enriches the experience during exploration, while tense background sounds heighten the tension in combat situations.\n    <\/p>\n<h3>2.1. Types of Sound<\/h3>\n<p>\n        The sounds used in Unity can be broadly classified into two categories: <strong>Background Music<\/strong> and <strong>Sound Effects<\/strong>. Background music primarily forms the overall atmosphere, while sound effects are sounds that are played in response to specific actions or events.\n    <\/p>\n<h2>3. Sound Components in Unity<\/h2>\n<p>\n        To implement sound in Unity, several components are necessary. These include <code>AudioClip<\/code>, <code>AudioSource<\/code>, and <code>AudioListener<\/code>. Let\u2019s take a closer look at each component.\n    <\/p>\n<h3>3.1. AudioClip<\/h3>\n<p>\n<code>AudioClip<\/code> is the data type used to load sound files. Sound files are typically imported in formats such as WAV, MP3, or Ogg Vorbis. Each file defines a piece of sound that can be played in the game.\n    <\/p>\n<h3>3.2. AudioSource<\/h3>\n<p>\n<code>AudioSource<\/code> is the component that plays <code>AudioClip<\/code>. It can be added to game objects, making that object the source of the sound. The main properties of <code>AudioSource<\/code> include:\n    <\/p>\n<ul>\n<li><strong>clip<\/strong>: The audio clip to play.<\/li>\n<li><strong>volume<\/strong>: The volume of the sound.<\/li>\n<li><strong>pitch<\/strong>: The pitch of the sound.<\/li>\n<li><strong>loop<\/strong>: Whether to play the sound in a loop.<\/li>\n<\/ul>\n<h3>3.3. AudioListener<\/h3>\n<p>\n<code>AudioListener<\/code> is the component that receives all sounds in the game. It is typically added to the camera and handles all sounds that the player can hear within the game.\n    <\/p>\n<h2>4. Importing Sound Files<\/h2>\n<p>\n        The process of importing sound files into Unity is very straightforward. Here is a step-by-step guide to the process.\n    <\/p>\n<h3>4.1. Preparing the Files<\/h3>\n<p>\n        First, prepare the sound files you want to use. While files in WAV or MP3 format are generally recommended, other formats can also be used as needed.\n    <\/p>\n<h3>4.2. Importing into Unity Project<\/h3>\n<p>\n        To import sound files into Unity, follow these steps.\n    <\/p>\n<ol>\n<li>Run the Unity Editor.<\/li>\n<li>Select the <code>Assets<\/code> folder in the Project window.<\/li>\n<li>Drag the prepared sound files into the <code>Assets<\/code> folder.<\/li>\n<\/ol>\n<h3>4.3. Setting Up Sound Files<\/h3>\n<p>\n        To set up the properties of the imported sound files, click on the file and adjust various properties in the Inspector window. Here, you can set the <strong>Load Type<\/strong> to determine how the sound is played:\n    <\/p>\n<ul>\n<li><strong>Decompress on Load<\/strong>: Loads all data into memory when loading the file. Be cautious if the file size is large.<\/li>\n<li><strong>Compressed in Memory<\/strong>: Keeps the data in a compressed form when loaded into memory.<\/li>\n<li><strong>Streaming<\/strong>: Plays the file while streaming. Used for large background music tracks.<\/li>\n<\/ul>\n<h2>5. Playing Sound<\/h2>\n<p>\n        To play sound, you need to add an <code>AudioSource<\/code> component to a game object. Follow these steps to do so.\n    <\/p>\n<h3>5.1. Adding AudioSource<\/h3>\n<p>\n        Select the game object that will play the sound, click the <strong>Add Component<\/strong> button in the Inspector window, search for <code>AudioSource<\/code>, and add it.\n    <\/p>\n<h3>5.2. Linking Sound Clips<\/h3>\n<p>\n        Drag the imported sound file into the <code>Audio Clip<\/code> field of the added <code>AudioSource<\/code> to link it.\n    <\/p>\n<h3>5.3. Playing Sound<\/h3>\n<p>\n        To play sound, you need to add a script. Let\u2019s add the following simple C# code to the game object to play the sound:\n    <\/p>\n<pre>\n        <code>\n        using UnityEngine;\n\n        public class SoundPlayer : MonoBehaviour\n        {\n            private AudioSource audioSource;\n\n            void Start()\n            {\n                audioSource = GetComponent<audiosource>();\n                audioSource.Play(); \/\/ Play sound\n            }\n        }\n        <\/audiosource><\/code>\n    <\/pre>\n<h2>6. Advanced Sound Control<\/h2>\n<p>\n        In Unity, you can control sound in various ways beyond basic playback. Settings for volume, pitch, bitrate, and more can provide a richer sound experience.\n    <\/p>\n<h3>6.1. Adjusting Volume<\/h3>\n<p>\nYou can adjust the volume of the sound using the <code>volume<\/code> property of <code>AudioSource<\/code>. For example, you can adjust the volume as follows:\n    <\/p>\n<pre>\n        <code>\n        audioSource.volume = 0.5f; \/\/ Volume 50%\n        <\/code>\n    <\/pre>\n<h3>6.2. Adjusting Pitch<\/h3>\n<p>\nYou can adjust the pitch of the sound using the <code>pitch<\/code> property of <code>AudioSource<\/code>. The default pitch is 1.0, and setting it to 2.0 makes the sound twice as high.\n    <\/p>\n<pre>\n        <code>\n        audioSource.pitch = 1.5f; \/\/ 50% higher\n        <\/code>\n    <\/pre>\n<h2>7. Using the Mixer<\/h2>\n<p>\n        By using Unity&#8217;s <strong>Audio Mixer<\/strong> feature, you can finely adjust various sound effects and volume settings. Let&#8217;s learn how to adjust sound output and effects using the mixer.\n    <\/p>\n<h3>7.1. Creating a Mixer<\/h3>\n<p>\nRight-click in the <code>Assets<\/code> folder and select <strong>Create &gt; Audio Mixer<\/strong> to create a new mixer. The created mixer can be modified in the <code>Audio Mixer<\/code> window.\n    <\/p>\n<h3>7.2. Linking Audio Sources to the Mixer<\/h3>\n<p>\n        Modify the <code>Output<\/code> property of each <code>AudioSource<\/code> to link it to the group of the created mixer. This allows you to adjust sound using the settings of the mixer.\n    <\/p>\n<h2>8. Optimizing Sound<\/h2>\n<p>\n        Optimizing sound in games is important for improving performance and minimizing memory usage. Here are some optimization methods.\n    <\/p>\n<h3>8.1. Removing Unnecessary Sounds<\/h3>\n<p>\n        Unused sound files should be removed from the project. This helps reduce memory usage and optimizes the size of the build file.\n    <\/p>\n<h3>8.2. Optimizing Audio Formats<\/h3>\n<p>\n        Choosing the appropriate audio format is also important. For example, background music can use compressed formats like MP3 or Ogg Vorbis to save memory. Sound effects may do better with the WAV format.\n    <\/p>\n<h2>9. Conclusion<\/h2>\n<p>\n        Handling sound in Unity offers various methods and is fundamental yet diverse. In this tutorial, we learned about the importance of sound along with the basic methods for importing, playing, and controlling it, as well as advanced features like mixing and optimization methods. Building on this foundation, you can create unique sounds for your own games.\n    <\/p>\n<h2>10. References<\/h2>\n<p>\n        If you want more information, refer to the following resources:\n    <\/p>\n<ul>\n<li><a href=\"https:\/\/learn.unity.com\/\">Unity Learn<\/a><\/li>\n<li><a href=\"https:\/\/docs.unity3d.com\/Manual\/Audio.html\">Unity Manual &#8211; Audio<\/a><\/li>\n<li><a href=\"https:\/\/www.youtube.com\/results?search_query=unity+audio+tutorial\">YouTube &#8211; Unity Audio Tutorials<\/a><\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Introduction Unity is a very powerful engine for game development, and among its various features, sound is a crucial element that enhances the immersion of the game. In this article, we will take a closer look at how Unity handles sound, how to import and use sound files. 2. Importance of Sound Sound plays &hellip; <a href=\"https:\/\/atmokpo.com\/w\/31989\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Unity Basic Course: Sound and Sound Import&#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":[135],"tags":[],"class_list":["post-31989","post","type-post","status-publish","format-standard","hentry","category-unity-basic"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Unity Basic Course: Sound and Sound Import - \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\/31989\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Unity Basic Course: Sound and Sound Import - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"1. Introduction Unity is a very powerful engine for game development, and among its various features, sound is a crucial element that enhances the immersion of the game. In this article, we will take a closer look at how Unity handles sound, how to import and use sound files. 2. Importance of Sound Sound plays &hellip; \ub354 \ubcf4\uae30 &quot;Unity Basic Course: Sound and Sound Import&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/31989\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:04:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:33:49+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=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/31989\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31989\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Unity Basic Course: Sound and Sound Import\",\"datePublished\":\"2024-11-01T09:04:44+00:00\",\"dateModified\":\"2024-11-01T11:33:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31989\/\"},\"wordCount\":881,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Unity Basic\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/31989\/\",\"url\":\"https:\/\/atmokpo.com\/w\/31989\/\",\"name\":\"Unity Basic Course: Sound and Sound Import - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:04:44+00:00\",\"dateModified\":\"2024-11-01T11:33:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31989\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/31989\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/31989\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Unity Basic Course: Sound and Sound Import\"}]},{\"@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":"Unity Basic Course: Sound and Sound Import - \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\/31989\/","og_locale":"ko_KR","og_type":"article","og_title":"Unity Basic Course: Sound and Sound Import - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"1. Introduction Unity is a very powerful engine for game development, and among its various features, sound is a crucial element that enhances the immersion of the game. In this article, we will take a closer look at how Unity handles sound, how to import and use sound files. 2. Importance of Sound Sound plays &hellip; \ub354 \ubcf4\uae30 \"Unity Basic Course: Sound and Sound Import\"","og_url":"https:\/\/atmokpo.com\/w\/31989\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:04:44+00:00","article_modified_time":"2024-11-01T11:33:49+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":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/31989\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/31989\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Unity Basic Course: Sound and Sound Import","datePublished":"2024-11-01T09:04:44+00:00","dateModified":"2024-11-01T11:33:49+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/31989\/"},"wordCount":881,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Unity Basic"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/31989\/","url":"https:\/\/atmokpo.com\/w\/31989\/","name":"Unity Basic Course: Sound and Sound Import - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:04:44+00:00","dateModified":"2024-11-01T11:33:49+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/31989\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/31989\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/31989\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Unity Basic Course: Sound and Sound Import"}]},{"@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\/31989","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=31989"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31989\/revisions"}],"predecessor-version":[{"id":31990,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31989\/revisions\/31990"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=31989"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=31989"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=31989"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}