{"id":6696,"date":"2025-05-26T17:43:54","date_gmt":"2025-05-26T15:43:54","guid":{"rendered":"https:\/\/www.pschatzmann.ch\/home\/?p=6696"},"modified":"2025-05-27T06:33:26","modified_gmt":"2025-05-27T04:33:26","slug":"arduino-audio-tools-using-ftp-as-data-source","status":"publish","type":"post","link":"https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/","title":{"rendered":"Arduino Audio Tools: Using FTP as Data Source"},"content":{"rendered":"<p>I published a new release of my <a href=\"https:\/\/github.com\/pschatzmann\/TinyFTPClient\">TinyFTP library<\/a>, that I have converted to a header only C++ library and I changed the FTPClient to a templated class so that we can support an automatic session management with different Client implementations.<\/p>\n<p>I already provided an simple <a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools\/blob\/main\/examples\/examples-communication\/ftp\/ftp-client\/ftp-client.ino\">ftp example<\/a> in the <a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools\">AudioTools library<\/a> that just uses an individual FTP File as data source.<\/p>\n<p>However, I thought it would be cool to have a <strong>FTP audio source<\/strong> for the AudioPlayer!<\/p>\n<h3>Example Arduino Sketch<\/h3>\n<p>Here is a simple example sketch the uses the ESP32 AI Thinker AudioKit as output device and we can use the buttons for navigating between the files. The data is loaded from a FTP Server!<\/p>\n<pre><code>#include \"WiFi.h\"\n#include \"AudioTools.h\"\n#include \"AudioTools\/AudioCodecs\/CodecMP3Helix.h\"\n#include \"AudioTools\/AudioLibs\/AudioBoardStream.h\"\n#include \"AudioTools\/Disk\/AudioSourceFTP.h\"\n\nconst char* path = \"Music\/Tracy Chapman\/Matters of the Heart\";\nconst char* ext = \"mp3\";\nconst char* ftp_user = \"user\";\nconst char* ftp_pwd = \"pwd\";\nconst char* ssid = \"ssid\";\nconst char* ssid_pwd = \"ssid pwd\";\n\nFTPClient&lt;WiFiClient&gt; ftp;\nAudioSourceFTP&lt;WiFiClient&gt; source(ftp, path, ext);\nAudioBoardStream i2s(AudioKitEs8388V1);\nMP3DecoderHelix decoder; \nAudioPlayer player(source, i2s, decoder);\n\nvoid next(bool, int, void*) { player.next(); }\n\nvoid previous(bool, int, void*) { player.previous(); }\n\nvoid startStop(bool, int, void*) { player.setActive(!player.isActive()); }\n\nvoid setup() {\n  Serial.begin(115200);\n  AudioToolsLogger.begin(Serial, AudioToolsLogLevel::Info);\n  FTPLogger::setOutput(Serial);\n  \/\/FTPLogger::setLogLevel(LOG_DEBUG);\n\n  \/\/ connect to WIFI\n  WiFi.begin(ssid, ssid_pwd);\n  while (WiFi.status() != WL_CONNECTED) {\n    delay(500);\n    Serial.print(\".\");\n  }\n  Serial.println();\n  WiFi.setSleep(false);\n\n  \/\/ connect to ftp\n  if (!ftp.begin(IPAddress(192,168,1,39), ftp_user, ftp_pwd)){\n    Serial.println(\"ftp failed\");\n    stop();\n  }\n\n  \/\/ setup output\n  auto cfg = i2s.defaultConfig(TX_MODE);\n  if (!i2s.begin(cfg)){\n    Serial.println(\"i2s failed\");\n    stop();\n  }\n\n  \/\/ setup additional buttons\n  i2s.addDefaultActions();\n  i2s.addAction(i2s.getKey(1), startStop);\n  i2s.addAction(i2s.getKey(4), next);\n  i2s.addAction(i2s.getKey(3), previous);\n\n  \/\/ setup player\n  player.setVolume(0.7);\n  \/\/ load the directory \n  if (!player.begin()){\n    Serial.println(\"player failed\");\n    stop();\n  }\n}\n\nvoid loop() {\n  player.copy();\n  i2s.processActions();\n}\n\n<\/code><\/pre>\n<p>We just need to connect to Wifi, define a <a href=\"https:\/\/pschatzmann.github.io\/TinyFTPClient\/docs\/html\/classftp__client_1_1_f_t_p_client.html\">FTPClient<\/a> and a <a href=\"https:\/\/pschatzmann.github.io\/arduino-audio-tools\/classaudio__tools_1_1_audio_source_f_t_p.html\">AudioSourceFTP<\/a> that we can use to set up the <a href=\"https:\/\/pschatzmann.github.io\/arduino-audio-tools\/classaudio__tools_1_1_audio_player.html\">AudioPlayer<\/a>.<\/p>\n<h3>Dependencies<\/h3>\n<p>For this example you need to install the following libraries:<\/p>\n<ul>\n<li><a href=\"https:\/\/github.com\/pschatzmann\/TinyFTPClient\">TinyFTP library<\/a> FTP Client Library<\/li>\n<li><a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools\">Arduino Audio Tools<\/a> Audio Library<\/li>\n<li><a href=\"https:\/\/github.com\/pschatzmann\/arduino-libhelix\">libhelix<\/a> mp3 decoder<\/li>\n<li><a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-driver\">Arduino Audio Driver<\/a> for the AudioKit<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>I published a new release of my TinyFTP library, that I have converted to a header only C++ library and I changed the FTPClient to a templated class so that we can support an automatic session management with different Client implementations. I already provided an simple ftp example in the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2147,"comment_status":"open","ping_status":"closed","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-6696","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.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Arduino Audio Tools: Using FTP as Data Source - 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\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Arduino Audio Tools: Using FTP as Data Source - Phil Schatzmann\" \/>\n<meta property=\"og:description\" content=\"I published a new release of my TinyFTP library, that I have converted to a header only C++ library and I changed the FTPClient to a templated class so that we can support an automatic session management with different Client implementations. I already provided an simple ftp example in the [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/\" \/>\n<meta property=\"og:site_name\" content=\"Phil Schatzmann\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-26T15:43:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-27T04:33:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/11\/ftp.png\" \/>\n\t<meta property=\"og:image:width\" content=\"225\" \/>\n\t<meta property=\"og:image:height\" content=\"225\" \/>\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\\\/2025\\\/05\\\/26\\\/arduino-audio-tools-using-ftp-as-data-source\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2025\\\/05\\\/26\\\/arduino-audio-tools-using-ftp-as-data-source\\\/\"},\"author\":{\"name\":\"pschatzmann\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"headline\":\"Arduino Audio Tools: Using FTP as Data Source\",\"datePublished\":\"2025-05-26T15:43:54+00:00\",\"dateModified\":\"2025-05-27T04:33:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2025\\\/05\\\/26\\\/arduino-audio-tools-using-ftp-as-data-source\\\/\"},\"wordCount\":176,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2025\\\/05\\\/26\\\/arduino-audio-tools-using-ftp-as-data-source\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/ftp.png\",\"articleSection\":[\"Arduino\",\"Machine Sound\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2025\\\/05\\\/26\\\/arduino-audio-tools-using-ftp-as-data-source\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2025\\\/05\\\/26\\\/arduino-audio-tools-using-ftp-as-data-source\\\/\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2025\\\/05\\\/26\\\/arduino-audio-tools-using-ftp-as-data-source\\\/\",\"name\":\"Arduino Audio Tools: Using FTP as Data Source - Phil Schatzmann\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2025\\\/05\\\/26\\\/arduino-audio-tools-using-ftp-as-data-source\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2025\\\/05\\\/26\\\/arduino-audio-tools-using-ftp-as-data-source\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/ftp.png\",\"datePublished\":\"2025-05-26T15:43:54+00:00\",\"dateModified\":\"2025-05-27T04:33:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2025\\\/05\\\/26\\\/arduino-audio-tools-using-ftp-as-data-source\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2025\\\/05\\\/26\\\/arduino-audio-tools-using-ftp-as-data-source\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2025\\\/05\\\/26\\\/arduino-audio-tools-using-ftp-as-data-source\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/ftp.png\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/ftp.png\",\"width\":225,\"height\":225},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2025\\\/05\\\/26\\\/arduino-audio-tools-using-ftp-as-data-source\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Arduino Audio Tools: Using FTP as Data Source\"}]},{\"@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: Using FTP as Data Source - 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\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/","og_locale":"en_US","og_type":"article","og_title":"Arduino Audio Tools: Using FTP as Data Source - Phil Schatzmann","og_description":"I published a new release of my TinyFTP library, that I have converted to a header only C++ library and I changed the FTPClient to a templated class so that we can support an automatic session management with different Client implementations. I already provided an simple ftp example in the [&hellip;]","og_url":"https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/","og_site_name":"Phil Schatzmann","article_published_time":"2025-05-26T15:43:54+00:00","article_modified_time":"2025-05-27T04:33:26+00:00","og_image":[{"width":225,"height":225,"url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/11\/ftp.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\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/#article","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/"},"author":{"name":"pschatzmann","@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"headline":"Arduino Audio Tools: Using FTP as Data Source","datePublished":"2025-05-26T15:43:54+00:00","dateModified":"2025-05-27T04:33:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/"},"wordCount":176,"commentCount":0,"publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/11\/ftp.png","articleSection":["Arduino","Machine Sound"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/","url":"https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/","name":"Arduino Audio Tools: Using FTP as Data Source - Phil Schatzmann","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/#primaryimage"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/11\/ftp.png","datePublished":"2025-05-26T15:43:54+00:00","dateModified":"2025-05-27T04:33:26+00:00","breadcrumb":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/#primaryimage","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/11\/ftp.png","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/11\/ftp.png","width":225,"height":225},{"@type":"BreadcrumbList","@id":"https:\/\/www.pschatzmann.ch\/home\/2025\/05\/26\/arduino-audio-tools-using-ftp-as-data-source\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pschatzmann.ch\/home\/"},{"@type":"ListItem","position":2,"name":"Arduino Audio Tools: Using FTP as Data Source"}]},{"@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\/6696","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=6696"}],"version-history":[{"count":5,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/6696\/revisions"}],"predecessor-version":[{"id":6713,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/6696\/revisions\/6713"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media\/2147"}],"wp:attachment":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media?parent=6696"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/categories?post=6696"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/tags?post=6696"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}