{"id":5137,"date":"2022-11-11T11:06:00","date_gmt":"2022-11-11T10:06:00","guid":{"rendered":"https:\/\/www.pschatzmann.ch\/home\/?p=5137"},"modified":"2024-11-28T07:08:17","modified_gmt":"2024-11-28T06:08:17","slug":"text-to-speech-with-more-then-100-languages-on-an-arduino-2","status":"publish","type":"post","link":"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/","title":{"rendered":"Text to Speech for more then 100 Languages on an Arduino"},"content":{"rendered":"<p>It was quite a <a href=\"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/10\/espeak-ng-the-difficult-journey-to-an-arduino-library\/\">challenge to convert eSpeak NG<\/a> to an <strong>Arduino Library<\/strong>.<\/p>\n<p>The <strong>eSpeak NG<\/strong> is a compact <strong>open source<\/strong> software <strong>text-to-speech synthesizer<\/strong> for Linux, Windows, Android and other operating systems. It supports more than <strong>100 languages and accents<\/strong>. It is based on the eSpeak engine created by Jonathan Duddington.<\/p>\n<h2>Language Specific Configuration Files<\/h2>\n<p>Using a foreign language is quite easy: You just need to <strong>load the language dependent files<\/strong> and set the corresponding <strong>voice<\/strong>. Here is the <a href=\"https:\/\/github.com\/pschatzmann\/arduino-espeak-ng\/blob\/main\/src\/espeak-ng-data.h\">list of all language configuration files<\/a> that are available.<\/p>\n<h2>The Arduino Sketch<\/h2>\n<p>To preserve some valuable memory we do not load the (default) English language, but I set up the German (de) language instead:<\/p>\n<pre><code>#include \"AudioTools.h\" \/\/ https:\/\/github.com\/pschatzmann\/arduino-audio-tools\n#include \"FileSystems.h\" \/\/ https:\/\/github.com\/pschatzmann\/arduino-posix-fs\n#include \"espeak.h\" \/\/ https:\/\/github.com\/pschatzmann\/arduino-espeak-ng)\n\nI2SStream i2s; \/\/ or replace with AudioKitStream for AudioKit\nconst bool load_english = false;\nESpeak espeak(i2s, load_english);\n\nvoid setup() {\n  Serial.begin(115200);\n\n  \/\/ add foreign language configuration file\n  espeak.add(\"\/mem\/data\/de_dict\", espeak_ng_data_de_dict,espeak_ng_data_de_dict_len);\n  espeak.add(\"\/mem\/data\/lang\/de\", espeak_ng_data_lang_gmw_de, espeak_ng_data_lang_gmw_de_len);\n\n  \/\/ setup espeak\n  espeak.begin();\n  \/\/ Set voice\n  espeak.setVoice(\"de\");\n\n  \/\/ setup output\n  audio_info espeak_info = espeak.audioInfo();\n  auto cfg = i2s.defaultConfig();\n  cfg.channels = espeak_info.channels; \/\/ 1\n  cfg.sample_rate = espeak_info.sample_rate; \/\/ 22050\n  cfg.bits_per_sample = espeak_info.bits_per_sample; \/\/ 16\n  i2s.begin(cfg);\n}\n\nvoid loop() {\n  espeak.say(\"Hallo Welt!\");\n  delay(5000);\n}\n<\/code><\/pre>\n<h2>Dependencies<\/h2>\n<p>This library requires the installation of the following libraries:<\/p>\n<ul>\n<li><a href=\"https:\/\/github.com\/pschatzmann\/arduino-posix-fs\">arduino-posix-fs <\/a> Reading of file configuration data<\/li>\n<li><a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools\">arduino-audio-tools <\/a> Output of Audio<\/li>\n<li><a href=\"https:\/\/github.com\/pschatzmann\/arduino-espeak-ng\">arduino-espeak-ng<\/a> espeak-ng library<\/li>\n<\/ul>\n<h2>Supported Platforms<\/h2>\n<p>For the time being I have only tested this sketch on an <strong>ESP32<\/strong>. Please note that the sketch needs about <strong>1&#8217;638&#8217;633 bytes of PROGMEM<\/strong>.<\/p>\n<h2>Github<\/h2>\n<p>Further information can be found on <a href=\"https:\/\/github.com\/pschatzmann\/arduino-espeak-ng\">Github<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>It was quite a challenge to convert eSpeak NG to an Arduino Library. The eSpeak NG is a compact open source software text-to-speech synthesizer for Linux, Windows, Android and other operating systems. It supports more than 100 languages and accents. It is based on the eSpeak engine created by Jonathan [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":5116,"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,35],"tags":[27],"class_list":["post-5137","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-arduino","category-machine-sound","category-text-to-speech","tag-tts"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Text to Speech for more then 100 Languages on an 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\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Text to Speech for more then 100 Languages on an Arduino - Phil Schatzmann\" \/>\n<meta property=\"og:description\" content=\"It was quite a challenge to convert eSpeak NG to an Arduino Library. The eSpeak NG is a compact open source software text-to-speech synthesizer for Linux, Windows, Android and other operating systems. It supports more than 100 languages and accents. It is based on the eSpeak engine created by Jonathan [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Phil Schatzmann\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-11T10:06:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-28T06:08:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/11\/espeak.png\" \/>\n\t<meta property=\"og:image:width\" content=\"512\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\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\\\/11\\\/11\\\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/11\\\/11\\\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\\\/\"},\"author\":{\"name\":\"pschatzmann\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"headline\":\"Text to Speech for more then 100 Languages on an Arduino\",\"datePublished\":\"2022-11-11T10:06:00+00:00\",\"dateModified\":\"2024-11-28T06:08:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/11\\\/11\\\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\\\/\"},\"wordCount\":178,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/11\\\/11\\\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/espeak.png\",\"keywords\":[\"TTS\"],\"articleSection\":[\"Arduino\",\"Machine Sound\",\"Text To Speech\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/11\\\/11\\\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/11\\\/11\\\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\\\/\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/11\\\/11\\\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\\\/\",\"name\":\"Text to Speech for more then 100 Languages on an Arduino - Phil Schatzmann\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/11\\\/11\\\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/11\\\/11\\\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/espeak.png\",\"datePublished\":\"2022-11-11T10:06:00+00:00\",\"dateModified\":\"2024-11-28T06:08:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/11\\\/11\\\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/11\\\/11\\\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/11\\\/11\\\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/espeak.png\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/espeak.png\",\"width\":512,\"height\":512},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2022\\\/11\\\/11\\\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Text to Speech for more then 100 Languages on an 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":"Text to Speech for more then 100 Languages on an 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\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/","og_locale":"en_US","og_type":"article","og_title":"Text to Speech for more then 100 Languages on an Arduino - Phil Schatzmann","og_description":"It was quite a challenge to convert eSpeak NG to an Arduino Library. The eSpeak NG is a compact open source software text-to-speech synthesizer for Linux, Windows, Android and other operating systems. It supports more than 100 languages and accents. It is based on the eSpeak engine created by Jonathan [&hellip;]","og_url":"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/","og_site_name":"Phil Schatzmann","article_published_time":"2022-11-11T10:06:00+00:00","article_modified_time":"2024-11-28T06:08:17+00:00","og_image":[{"width":512,"height":512,"url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/11\/espeak.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\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/#article","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/"},"author":{"name":"pschatzmann","@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"headline":"Text to Speech for more then 100 Languages on an Arduino","datePublished":"2022-11-11T10:06:00+00:00","dateModified":"2024-11-28T06:08:17+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/"},"wordCount":178,"commentCount":3,"publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/11\/espeak.png","keywords":["TTS"],"articleSection":["Arduino","Machine Sound","Text To Speech"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/","url":"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/","name":"Text to Speech for more then 100 Languages on an Arduino - Phil Schatzmann","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/#primaryimage"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/11\/espeak.png","datePublished":"2022-11-11T10:06:00+00:00","dateModified":"2024-11-28T06:08:17+00:00","breadcrumb":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/#primaryimage","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/11\/espeak.png","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/11\/espeak.png","width":512,"height":512},{"@type":"BreadcrumbList","@id":"https:\/\/www.pschatzmann.ch\/home\/2022\/11\/11\/text-to-speech-with-more-then-100-languages-on-an-arduino-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pschatzmann.ch\/home\/"},{"@type":"ListItem","position":2,"name":"Text to Speech for more then 100 Languages on an 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\/5137","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=5137"}],"version-history":[{"count":4,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/5137\/revisions"}],"predecessor-version":[{"id":6529,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/5137\/revisions\/6529"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media\/5116"}],"wp:attachment":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media?parent=5137"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/categories?post=5137"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/tags?post=5137"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}