{"id":6180,"date":"2024-03-26T08:23:44","date_gmt":"2024-03-26T07:23:44","guid":{"rendered":"https:\/\/www.pschatzmann.ch\/home\/?p=6180"},"modified":"2024-03-26T17:10:07","modified_gmt":"2024-03-26T16:10:07","slug":"changing-the-sample-size-to-32-bits-using-a-es9018-dac","status":"publish","type":"post","link":"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/","title":{"rendered":"Changing the Sample Size to 32 bits (e.g. for an ES9018 DAC)"},"content":{"rendered":"<p>There are some DACs out there that only support 32 bits: E.g the <strong>ES9018K2M<\/strong> module which is sold as high end HIFI DAC.<\/p>\n<p>Therefore sometimes it is necessary to <strong>change the sample size<\/strong> e.g. from 16 to 32 bits when  your codec produces 16 bits.<\/p>\n<p>This can be easily done with the help of the <a href=\"https:\/\/pschatzmann.github.io\/arduino-audio-tools\/classaudio__tools_1_1_number_format_converter_stream.html\">NumberFormatConverterStream<\/a> class of the <a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools.git\">Arduino Audio Tools<\/a> library:<\/p>\n<pre><code>I2SStream i2s; \/\/ final output of decoded stream\nNumberFormatConverterStream fc(i2s); \/\/ write the 16bit data to fc\n\/\/ conigure 16 -&gt; 32 bit\nfc.begin(16, 32);\n<\/code><\/pre>\n<h3>Arduino Sketch<\/h3>\n<p>Here is a complete sketch of an Internet Radio:<\/p>\n<pre><code>#include \"AudioTools.h\"\n#include \"AudioCodecs\/CodecMP3Helix.h\"\n\nURLStream url(\"ssid\",\"password\");\nI2SStream i2s; \/\/ final output of decoded stream\nNumberFormatConverterStream nfc(i2s);\nEncodedAudioStream dec(&amp;nfc, new MP3DecoderHelix()); \/\/ Decoding stream\nStreamCopy copier(dec, url); \/\/ copy url to decoder\n\nvoid setup(){\n  Serial.begin(115200);\n  AudioLogger::instance().begin(Serial, AudioLogger::Info);  \n\n  \/\/ convert 16 bits to 32, you could also change the gain\n  nfc.begin(16, 32); \n\n  \/\/ setup i2s\n  auto config = i2s.defaultConfig(TX_MODE);\n  \/\/ you could define e.g your pins and change other settings\n  \/\/config.pin_ws = 10;\n  \/\/config.pin_bck = 11;\n  \/\/config.pin_data = 12;\n  \/\/config.mode = I2S_STD_FORMAT;\n  \/\/config.bits_per_sample = 32; \/\/ we coult do this explicitly\n  i2s.begin(config);\n\n  \/\/ setup I2S based on sampling rate provided by decoder\n  dec.begin();\n\n\/\/ mp3 radio\n  url.begin(\"http:\/\/stream.srg-ssr.ch\/m\/rsj\/mp3_128\",\"audio\/mp3\");\n\n}\n\nvoid loop(){\n  copier.copy();\n}\n\n<\/code><\/pre>\n<p>The decoder automatically sends any audio format changes to the number format converter which forwards them to i2s. Therefore you end up automatically with the correct sample rate and number of channels w\/o the need to define them in the sketch!<\/p>\n<p>Please double check the potentially updated code from the <a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools\/blob\/main\/examples\/examples-stream\/streams-url_mp3_helix-i2s_32bit\/streams-url_mp3_helix-i2s_32bit.ino\">examples directory<\/a>.<\/p>\n<h2>Dependencies<\/h2>\n<p>You need to install the following libraries:<\/p>\n<ul>\n<li><a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools.git\">audio-tools<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/pschatzmann\/arduino-libhelix.git\">libhelix<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>There are some DACs out there that only support 32 bits: E.g the ES9018K2M module which is sold as high end HIFI DAC. Therefore sometimes it is necessary to change the sample size e.g. from 16 to 32 bits when your codec produces 16 bits. This can be easily done [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":6184,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_crdt_document":"","_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"categories":[20,22],"tags":[],"class_list":["post-6180","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-arduino","category-machine-sound"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Changing the Sample Size to 32 bits (e.g. for an ES9018 DAC) - Phil Schatzmann<\/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:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Changing the Sample Size to 32 bits (e.g. for an ES9018 DAC) - Phil Schatzmann\" \/>\n<meta property=\"og:description\" content=\"There are some DACs out there that only support 32 bits: E.g the ES9018K2M module which is sold as high end HIFI DAC. Therefore sometimes it is necessary to change the sample size e.g. from 16 to 32 bits when your codec produces 16 bits. This can be easily done [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/\" \/>\n<meta property=\"og:site_name\" content=\"Phil Schatzmann\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-26T07:23:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-26T16:10:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2024\/03\/ES9018.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"359\" \/>\n\t<meta property=\"og:image:height\" content=\"252\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"pschatzmann\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"pschatzmann\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/03\\\/26\\\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/03\\\/26\\\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\\\/\"},\"author\":{\"name\":\"pschatzmann\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"headline\":\"Changing the Sample Size to 32 bits (e.g. for an ES9018 DAC)\",\"datePublished\":\"2024-03-26T07:23:44+00:00\",\"dateModified\":\"2024-03-26T16:10:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/03\\\/26\\\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\\\/\"},\"wordCount\":150,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/03\\\/26\\\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/ES9018.jpeg\",\"articleSection\":[\"Arduino\",\"Machine Sound\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/03\\\/26\\\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/03\\\/26\\\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\\\/\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/03\\\/26\\\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\\\/\",\"name\":\"Changing the Sample Size to 32 bits (e.g. for an ES9018 DAC) - Phil Schatzmann\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/03\\\/26\\\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/03\\\/26\\\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/ES9018.jpeg\",\"datePublished\":\"2024-03-26T07:23:44+00:00\",\"dateModified\":\"2024-03-26T16:10:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/03\\\/26\\\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/03\\\/26\\\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/03\\\/26\\\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/ES9018.jpeg\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/ES9018.jpeg\",\"width\":359,\"height\":252},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/03\\\/26\\\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Changing the Sample Size to 32 bits (e.g. for an ES9018 DAC)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\",\"name\":\"Phil Schatzmann Consulting\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\",\"name\":\"pschatzmann\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\",\"width\":305,\"height\":305,\"caption\":\"pschatzmann\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Changing the Sample Size to 32 bits (e.g. for an ES9018 DAC) - Phil Schatzmann","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:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/","og_locale":"en_US","og_type":"article","og_title":"Changing the Sample Size to 32 bits (e.g. for an ES9018 DAC) - Phil Schatzmann","og_description":"There are some DACs out there that only support 32 bits: E.g the ES9018K2M module which is sold as high end HIFI DAC. Therefore sometimes it is necessary to change the sample size e.g. from 16 to 32 bits when your codec produces 16 bits. This can be easily done [&hellip;]","og_url":"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/","og_site_name":"Phil Schatzmann","article_published_time":"2024-03-26T07:23:44+00:00","article_modified_time":"2024-03-26T16:10:07+00:00","og_image":[{"width":359,"height":252,"url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2024\/03\/ES9018.jpeg","type":"image\/jpeg"}],"author":"pschatzmann","twitter_card":"summary_large_image","twitter_misc":{"Written by":"pschatzmann","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/#article","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/"},"author":{"name":"pschatzmann","@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"headline":"Changing the Sample Size to 32 bits (e.g. for an ES9018 DAC)","datePublished":"2024-03-26T07:23:44+00:00","dateModified":"2024-03-26T16:10:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/"},"wordCount":150,"commentCount":0,"publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2024\/03\/ES9018.jpeg","articleSection":["Arduino","Machine Sound"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/","url":"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/","name":"Changing the Sample Size to 32 bits (e.g. for an ES9018 DAC) - Phil Schatzmann","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/#primaryimage"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2024\/03\/ES9018.jpeg","datePublished":"2024-03-26T07:23:44+00:00","dateModified":"2024-03-26T16:10:07+00:00","breadcrumb":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/#primaryimage","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2024\/03\/ES9018.jpeg","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2024\/03\/ES9018.jpeg","width":359,"height":252},{"@type":"BreadcrumbList","@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/03\/26\/changing-the-sample-size-to-32-bits-using-a-es9018-dac\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pschatzmann.ch\/home\/"},{"@type":"ListItem","position":2,"name":"Changing the Sample Size to 32 bits (e.g. for an ES9018 DAC)"}]},{"@type":"WebSite","@id":"https:\/\/www.pschatzmann.ch\/home\/#website","url":"https:\/\/www.pschatzmann.ch\/home\/","name":"Phil Schatzmann Consulting","description":"","publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pschatzmann.ch\/home\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1","name":"pschatzmann","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png","width":305,"height":305,"caption":"pschatzmann"},"logo":{"@id":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png"}}]}},"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/6180","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/comments?post=6180"}],"version-history":[{"count":9,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/6180\/revisions"}],"predecessor-version":[{"id":6206,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/6180\/revisions\/6206"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media\/6184"}],"wp:attachment":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media?parent=6180"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/categories?post=6180"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/tags?post=6180"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}