{"id":4405,"date":"2022-02-01T21:39:20","date_gmt":"2022-02-01T20:39:20","guid":{"rendered":"https:\/\/www.pschatzmann.ch\/home\/?p=4405"},"modified":"2024-03-21T07:55:44","modified_gmt":"2024-03-21T06:55:44","slug":"building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code","status":"publish","type":"post","link":"https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/","title":{"rendered":"Building an Arduino ESP32 Audio Bluetooth Receiver with output to SPDIF with just a few lines of code."},"content":{"rendered":"<p>The last couple of days I have spent to add <a href=\"https:\/\/en.wikipedia.org\/wiki\/S\/PDIF\">SDIF<\/a> audio output support to my <a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools\">Arduino AudioTools<\/a> library and I would like to thank <a href=\"https:\/\/github.com\/pschatzmann\/ESP32-A2DP\/discussions\/137#discussioncomment-2092631\">joba-1 for testing the solution<\/a>.<\/p>\n<p>Together with my <a href=\"https:\/\/github.com\/pschatzmann\/ESP32-A2DP\">ESP32-A2DP Bluetooth library<\/a> we can build now a Bluetooth receiver that outputs the audio signals as SPDIF with just a few lines of code:<\/p>\n<h2>The Arduino Sketch<\/h2>\n<p>Here is the Arduino Sketch<\/p>\n<pre><code>#define USE_A2DP\n#include \"AudioConfigLocal.h\"\n#include \"AudioTools.h\"\n\nBluetoothA2DPSink a2dp_sink;\nSPDIFStream spdif;\n\n\/\/ Write data to SPDIF in callback\nvoid read_data_stream(const uint8_t *data, uint32_t length) {\n    spdif.write(data, length);\n}\n\nvoid setup() {\n  Serial.begin(115200);\n  AudioLogger::instance().begin(Serial, AudioLogger::Warning);\n\n  \/\/ register callback\n  a2dp_sink.set_stream_reader(read_data_stream, false);\n\n  \/\/ Start Bluetooth Audio Receiver\n  a2dp_sink.set_auto_reconnect(false);\n  a2dp_sink.start(\"a2dp-spdif\");\n\n  \/\/ setup SPDIF output\n  auto cfg = spdif.defaultConfig();\n  cfg.pin_data = 23;\n  cfg.sample_rate = a2dp_sink.sample_rate();\n  cfg.channels = 2;\n  cfg.bits_per_sample = 16;\n  spdif.begin(cfg);\n\n}\n\nvoid loop() {\n  delay(100);\n}\n<\/code><\/pre>\n<p>The regular output of the BluetoothA2DPSink goes to I2S, but we can alternatively send the output to a <strong>callback methods<\/strong>: This is done with the <code>set_stream_reader(read_data_stream, false)<\/code>. In the callback method we just need to write the audio data to the SPDIFStream.<\/p>\n<p>Before starting the Bluetooth Sink, I deactivate the automatic reconnect &#8211; so that I can easily switch my feeding devices.<\/p>\n<p>With the #include &#8220;AudioConfigLocal.h&#8221; you have the possibility to define some <strong>sketch specific configuration<\/strong>. In my example I use this mechanism to define some specific <em>I2S_BUFFER_COUNT<\/em> and <em>I2S_BUFFER_SIZE<\/em> values.<\/p>\n<h2>Source Code<\/h2>\n<p>The <a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools\/tree\/main\/examples\/examples-basic-api\/basic-a2dp-spdif\">(potentially updated) source code<\/a> can be found on Github<\/p>\n<h2>Dependencies<\/h2>\n<p>The following libraries need to be installed<\/p>\n<ul>\n<li><a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools\">Arduino AudioTools<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/pschatzmann\/ESP32-A2DP\">ESP32-A2DP<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>The last couple of days I have spent to add SDIF audio output support to my Arduino AudioTools library and I would like to thank joba-1 for testing the solution. Together with my ESP32-A2DP Bluetooth library we can build now a Bluetooth receiver that outputs the audio signals as SPDIF [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":4407,"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-4405","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.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Building an Arduino ESP32 Audio Bluetooth Receiver with output to SPDIF with just a few lines of code. - 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\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Building an Arduino ESP32 Audio Bluetooth Receiver with output to SPDIF with just a few lines of code. - Phil Schatzmann\" \/>\n<meta property=\"og:description\" content=\"The last couple of days I have spent to add SDIF audio output support to my Arduino AudioTools library and I would like to thank joba-1 for testing the solution. Together with my ESP32-A2DP Bluetooth library we can build now a Bluetooth receiver that outputs the audio signals as SPDIF [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/\" \/>\n<meta property=\"og:site_name\" content=\"Phil Schatzmann\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-01T20:39:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-21T06:55:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/02\/spdif.png\" \/>\n\t<meta property=\"og:image:width\" content=\"176\" \/>\n\t<meta property=\"og:image:height\" content=\"175\" \/>\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\\\/2022\\\/02\\\/01\\\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/02\\\/01\\\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\\\/\"},\"author\":{\"name\":\"pschatzmann\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"headline\":\"Building an Arduino ESP32 Audio Bluetooth Receiver with output to SPDIF with just a few lines of code.\",\"datePublished\":\"2022-02-01T20:39:20+00:00\",\"dateModified\":\"2024-03-21T06:55:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/02\\\/01\\\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\\\/\"},\"wordCount\":208,\"commentCount\":18,\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/02\\\/01\\\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/spdif.png\",\"keywords\":[\"Communications\"],\"articleSection\":[\"Arduino\",\"Machine Sound\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/02\\\/01\\\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/02\\\/01\\\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\\\/\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/02\\\/01\\\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\\\/\",\"name\":\"Building an Arduino ESP32 Audio Bluetooth Receiver with output to SPDIF with just a few lines of code. - Phil Schatzmann\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/02\\\/01\\\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/02\\\/01\\\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/spdif.png\",\"datePublished\":\"2022-02-01T20:39:20+00:00\",\"dateModified\":\"2024-03-21T06:55:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/02\\\/01\\\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/02\\\/01\\\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/02\\\/01\\\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/spdif.png\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/spdif.png\",\"width\":176,\"height\":175},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/02\\\/01\\\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Building an Arduino ESP32 Audio Bluetooth Receiver with output to SPDIF with just a few lines of code.\"}]},{\"@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":"Building an Arduino ESP32 Audio Bluetooth Receiver with output to SPDIF with just a few lines of code. - 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\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/","og_locale":"en_US","og_type":"article","og_title":"Building an Arduino ESP32 Audio Bluetooth Receiver with output to SPDIF with just a few lines of code. - Phil Schatzmann","og_description":"The last couple of days I have spent to add SDIF audio output support to my Arduino AudioTools library and I would like to thank joba-1 for testing the solution. Together with my ESP32-A2DP Bluetooth library we can build now a Bluetooth receiver that outputs the audio signals as SPDIF [&hellip;]","og_url":"https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/","og_site_name":"Phil Schatzmann","article_published_time":"2022-02-01T20:39:20+00:00","article_modified_time":"2024-03-21T06:55:44+00:00","og_image":[{"width":176,"height":175,"url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/02\/spdif.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\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/#article","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/"},"author":{"name":"pschatzmann","@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"headline":"Building an Arduino ESP32 Audio Bluetooth Receiver with output to SPDIF with just a few lines of code.","datePublished":"2022-02-01T20:39:20+00:00","dateModified":"2024-03-21T06:55:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/"},"wordCount":208,"commentCount":18,"publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/02\/spdif.png","keywords":["Communications"],"articleSection":["Arduino","Machine Sound"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/","url":"https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/","name":"Building an Arduino ESP32 Audio Bluetooth Receiver with output to SPDIF with just a few lines of code. - Phil Schatzmann","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/#primaryimage"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/02\/spdif.png","datePublished":"2022-02-01T20:39:20+00:00","dateModified":"2024-03-21T06:55:44+00:00","breadcrumb":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/#primaryimage","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/02\/spdif.png","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/02\/spdif.png","width":176,"height":175},{"@type":"BreadcrumbList","@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/02\/01\/building-an-esp32-audio-bluetooth-receiver-with-output-to-spdif-with-just-a-few-lines-of-code\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pschatzmann.ch\/home\/"},{"@type":"ListItem","position":2,"name":"Building an Arduino ESP32 Audio Bluetooth Receiver with output to SPDIF with just a few lines of code."}]},{"@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\/4405","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=4405"}],"version-history":[{"count":10,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/4405\/revisions"}],"predecessor-version":[{"id":4411,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/4405\/revisions\/4411"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media\/4407"}],"wp:attachment":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media?parent=4405"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/categories?post=4405"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/tags?post=4405"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}