{"id":5932,"date":"2023-11-03T09:08:03","date_gmt":"2023-11-03T08:08:03","guid":{"rendered":"https:\/\/www.pschatzmann.ch\/home\/?p=5932"},"modified":"2024-03-21T07:50:58","modified_gmt":"2024-03-21T06:50:58","slug":"arduino-audio-tools-a-snapcast-client-for-arduino","status":"publish","type":"post","link":"https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/","title":{"rendered":"Arduino Audio Tools &#8211; A Snapcast Client for Arduino"},"content":{"rendered":"<p><a href=\"https:\/\/github.com\/badaix\/snapcast\"><strong>Snapcast<\/strong><\/a> is a <strong>multiroom client-server audio player<\/strong>, where all <strong>clients are time synchronized<\/strong> with the server to play perfectly synced audio. It&#8217;s not a standalone player, but an extension that turns your existing audio player into a Sonos-like multiroom solution.<\/p>\n<p>This week I have spent some time to <a href=\"https:\/\/github.com\/pschatzmann\/arduino-snapclient\">work a new client for Arduino<\/a> that should integrate with my <a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools\">AudioTools<\/a> and I have a first <strong>DRAFT version<\/strong> that started to work.<\/p>\n<h3>Arduino Sketch<\/h3>\n<p>Here is the related Arduino Sketch that I have <strong>tested with an ESP32<\/strong>:<\/p>\n<pre><code>#include \"AudioCodecs\/CodecOpus.h\"\n#include \"AudioTools.h\"\n#include \"SnapClient.h\"\n\n#define ARDUINO_LOOP_STACK_SIZE (10 * 1024)\n\nOpusAudioDecoder opus;\nI2SStream out;\nSnapClient client(out, opus);\n\nvoid setup() {\n  Serial.begin(115200);\n  \/\/ login to wifi\n  WiFi.begin(CONFIG_WIFI_SSID, CONFIG_WIFI_PASSWORD);\n  Serial.print(\"Connecting to WiFi ..\");\n  while (WiFi.status() != WL_CONNECTED) {\n    Serial.print('.');\n    delay(1000);\n  }\n\n  \/\/ print ip address\n  Serial.println();\n  Serial.println(WiFi.localIP());\n\n  \/\/ setup I2S to define custom pins\n  auto cfg = out.defaultConfig();\n  config.pin_bck = 14;\n  config.pin_ws = 15;\n  config.pin_data = 22;\n  out.begin(cfg);\n\n  \/\/ start snap client\n  client.begin();\n}\n\nvoid loop() { client.doLoop(); }\n\n<\/code><\/pre>\n<p>So we just need to pass the <strong>decoder and the output stream as argments to the constructor<\/strong> of the SnapClient object, <strong>start the Wifi<\/strong> and the <strong>client<\/strong> and call doLoop() in the Arduino loop!<\/p>\n<p>To test it out I was executing the following command on my Linux Desktop:  <code>ffmpeg -i http:\/\/stream.srg-ssr.ch\/m\/rsj\/mp3_128 -f s16le -ar 48000  \/tmp\/snapfifo<\/code>!<\/p>\n<p>For further information please read the <a href=\"https:\/\/github.com\/pschatzmann\/arduino-snapclient\">documentation in the project<\/a>.<\/p>\n<h3>Open Topics<\/h3>\n<p>There are still a couple of additional <strong>things to do<\/strong>:<\/p>\n<ul>\n<li>testing more codecs<\/li>\n<li>adding additional support for playback synchronization<\/li>\n<li>testing and issue resolution on other platforms<\/li>\n<\/ul>\n<p>Please <a href=\"https:\/\/github.com\/pschatzmann\/arduino-snapclient\/discussions\">let me know<\/a> if you want to work on any of these topics or if you have an further proposals<\/p>\n<h3>Dependencies<\/h3>\n<p><a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools\">arduino-audio-tools.h<\/a><br \/>\n<a href=\"https:\/\/github.com\/pschatzmann\/arduino-libopus\">arduino-libopus<\/a><br \/>\n<a href=\"https:\/\/github.com\/pschatzmann\/arduino-snapclient\">arduino-snapclient<\/a><\/p>\n<h3>Final Comments<\/h3>\n<p>Please do not use the sketch from this page, but double check with the examples in the projects. I am not updating this page and I can&#8217;t guarantee that there are no changes to the API&#8230;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Snapcast is a multiroom client-server audio player, where all clients are time synchronized with the server to play perfectly synced audio. It&#8217;s not a standalone player, but an extension that turns your existing audio player into a Sonos-like multiroom solution. This week I have spent some time to work a [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":5933,"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":[46],"class_list":["post-5932","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-arduino","category-machine-sound","tag-communications"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Arduino Audio Tools - A Snapcast Client for Arduino - 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\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Arduino Audio Tools - A Snapcast Client for Arduino - Phil Schatzmann\" \/>\n<meta property=\"og:description\" content=\"Snapcast is a multiroom client-server audio player, where all clients are time synchronized with the server to play perfectly synced audio. It&#8217;s not a standalone player, but an extension that turns your existing audio player into a Sonos-like multiroom solution. This week I have spent some time to work a [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/\" \/>\n<meta property=\"og:site_name\" content=\"Phil Schatzmann\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-03T08:08:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-21T06:50:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2023\/11\/snap.png\" \/>\n\t<meta property=\"og:image:width\" content=\"129\" \/>\n\t<meta property=\"og:image:height\" content=\"129\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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\\\/2023\\\/11\\\/03\\\/arduino-audio-tools-a-snapcast-client-for-arduino\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/11\\\/03\\\/arduino-audio-tools-a-snapcast-client-for-arduino\\\/\"},\"author\":{\"name\":\"pschatzmann\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"headline\":\"Arduino Audio Tools &#8211; A Snapcast Client for Arduino\",\"datePublished\":\"2023-11-03T08:08:03+00:00\",\"dateModified\":\"2024-03-21T06:50:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/11\\\/03\\\/arduino-audio-tools-a-snapcast-client-for-arduino\\\/\"},\"wordCount\":247,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/11\\\/03\\\/arduino-audio-tools-a-snapcast-client-for-arduino\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/snap.png\",\"keywords\":[\"Communications\"],\"articleSection\":[\"Arduino\",\"Machine Sound\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/11\\\/03\\\/arduino-audio-tools-a-snapcast-client-for-arduino\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/11\\\/03\\\/arduino-audio-tools-a-snapcast-client-for-arduino\\\/\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/11\\\/03\\\/arduino-audio-tools-a-snapcast-client-for-arduino\\\/\",\"name\":\"Arduino Audio Tools - A Snapcast Client for Arduino - Phil Schatzmann\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/11\\\/03\\\/arduino-audio-tools-a-snapcast-client-for-arduino\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/11\\\/03\\\/arduino-audio-tools-a-snapcast-client-for-arduino\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/snap.png\",\"datePublished\":\"2023-11-03T08:08:03+00:00\",\"dateModified\":\"2024-03-21T06:50:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/11\\\/03\\\/arduino-audio-tools-a-snapcast-client-for-arduino\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/11\\\/03\\\/arduino-audio-tools-a-snapcast-client-for-arduino\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/11\\\/03\\\/arduino-audio-tools-a-snapcast-client-for-arduino\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/snap.png\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/snap.png\",\"width\":129,\"height\":129},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/11\\\/03\\\/arduino-audio-tools-a-snapcast-client-for-arduino\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Arduino Audio Tools &#8211; A Snapcast Client for Arduino\"}]},{\"@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":"Arduino Audio Tools - A Snapcast Client for Arduino - 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\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/","og_locale":"en_US","og_type":"article","og_title":"Arduino Audio Tools - A Snapcast Client for Arduino - Phil Schatzmann","og_description":"Snapcast is a multiroom client-server audio player, where all clients are time synchronized with the server to play perfectly synced audio. It&#8217;s not a standalone player, but an extension that turns your existing audio player into a Sonos-like multiroom solution. This week I have spent some time to work a [&hellip;]","og_url":"https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/","og_site_name":"Phil Schatzmann","article_published_time":"2023-11-03T08:08:03+00:00","article_modified_time":"2024-03-21T06:50:58+00:00","og_image":[{"width":129,"height":129,"url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2023\/11\/snap.png","type":"image\/png"}],"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\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/#article","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/"},"author":{"name":"pschatzmann","@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"headline":"Arduino Audio Tools &#8211; A Snapcast Client for Arduino","datePublished":"2023-11-03T08:08:03+00:00","dateModified":"2024-03-21T06:50:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/"},"wordCount":247,"commentCount":0,"publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2023\/11\/snap.png","keywords":["Communications"],"articleSection":["Arduino","Machine Sound"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/","url":"https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/","name":"Arduino Audio Tools - A Snapcast Client for Arduino - Phil Schatzmann","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/#primaryimage"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2023\/11\/snap.png","datePublished":"2023-11-03T08:08:03+00:00","dateModified":"2024-03-21T06:50:58+00:00","breadcrumb":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/#primaryimage","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2023\/11\/snap.png","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2023\/11\/snap.png","width":129,"height":129},{"@type":"BreadcrumbList","@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/11\/03\/arduino-audio-tools-a-snapcast-client-for-arduino\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pschatzmann.ch\/home\/"},{"@type":"ListItem","position":2,"name":"Arduino Audio Tools &#8211; A Snapcast Client for Arduino"}]},{"@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\/5932","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=5932"}],"version-history":[{"count":19,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/5932\/revisions"}],"predecessor-version":[{"id":5952,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/5932\/revisions\/5952"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media\/5933"}],"wp:attachment":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media?parent=5932"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/categories?post=5932"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/tags?post=5932"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}