{"id":5900,"date":"2023-10-22T11:29:13","date_gmt":"2023-10-22T09:29:13","guid":{"rendered":"https:\/\/www.pschatzmann.ch\/home\/?p=5900"},"modified":"2024-03-21T07:51:29","modified_gmt":"2024-03-21T06:51:29","slug":"audiotools-sending-audio-to-your-mobile-phone-using-vban","status":"publish","type":"post","link":"https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/","title":{"rendered":"Arduino Audio Tools &#8211; Sending Audio to your Mobile Phone using VBAN"},"content":{"rendered":"<p>For quite some time I was looking for an easy way to send some audio to some mobile devices w\/o having to write my own mobile application. That&#8217;s when I found <a href=\"https:\/\/vb-audio.com\/Voicemeeter\/vban.htm\">VBAN<\/a>. They have some free app (and some payed ones that are reasonably priced) and publish their protocol.<\/p>\n<p>So I added the <strong>support for VBAN<\/strong> to my <a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools\">AudioTools library<\/a> and tested the functionality with an <strong>ESP32<\/strong>. Here is the basic test sketch:<\/p>\n<h2>Arduino Sketch<\/h2>\n<pre><code><br \/>#include \"AudioTools.h\"\n#include \"AudioLibs\/VBANStream.h\"\n\nAudioInfo info(44100, 2, 16);\nSineWaveGenerator&lt;int16_t&gt; sineWave(32000);                \/\/ subclass of SoundGenerator with max amplitude of 32000\nGeneratedSoundStream&lt;int16_t&gt; sound(sineWave);             \/\/ Stream generated from sine wave\nVBANStream out;\nStreamCopy copier(out, sound, 1024);                       \n\n\/\/ Arduino Setup\nvoid setup(void) {  \n  \/\/ Open Serial \n  Serial.begin(115200);\n  AudioLogger::instance().begin(Serial, AudioLogger::Warning);\n\n  \/\/ setup output\n  auto cfg = out.defaultConfig(TX_MODE);\n  cfg.copyFrom(info);\n  cfg.ssid = \"ssid\";\n  cfg.password = \"password\";\n  cfg.stream_name = \"Stream1\";\n  cfg.target_ip = IPAddress{192,168,1,37}; \n  cfg.throttle_active = true;\n  \/\/cfg.throttle_correction_us = 0; \/\/ optimize overload and underrun\n  if (!out.begin(cfg)) stop();\n\n  \/\/ Setup sine wave\n  sineWave.begin(info, N_B4);\n  Serial.println(\"started...\");\n}\n\n\/\/ Arduino loop - copy sound to out \nvoid loop() {\n  copier.copy();\n}\n\n<\/code><\/pre>\n<p>In this test I was sending out just some generated sine tone.<\/p>\n<ul>\n<li>As expected you can just write your data to an instance of the <a href=\"https:\/\/pschatzmann.github.io\/arduino-audio-tools\/classaudio__tools_1_1_v_b_a_n_stream.html\">VBANStream<\/a> class.<\/p>\n<\/li>\n<li>\n<p>The sketch needs the <strong>Wifi<\/strong> to work, so I made the setup and login part of the functionality, but you can set up the Wifi also the usual way.<\/p>\n<\/li>\n<li>\n<p>The <strong>target ip address<\/strong> specifies the device to which you want to send the audio. If you leave it empty, then the data is broadcasted.<\/p>\n<\/li>\n<li>\n<p>Because the sine generator is generating the data much too fast, we need to slow the sending down to the indicated sample rate. This is done with the help of  <code>cfg.throttle_active = true;<\/code>. If you would use e.g. a microphone as data source, this is not necessary!<\/p>\n<\/li>\n<\/ul>\n<h2>Dependencies<\/h2>\n<p>You need to have the following libraries installed:<\/p>\n<ul>\n<li><a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools\">https:\/\/github.com\/pschatzmann\/arduino-audio-tools<\/a><\/li>\n<\/ul>\n<h2>VBAN Settings<\/h2>\n<p>Set the audio quality to a value below Fast to prevent overloads and underruns.<\/p>\n<h2>Updated Source Code<\/h2>\n<p><a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-tools\/tree\/main\/examples\/examples-communication\/vban\">This and other VBAN examples<\/a> can be found on Github.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>For quite some time I was looking for an easy way to send some audio to some mobile devices w\/o having to write my own mobile application. That&#8217;s when I found VBAN. They have some free app (and some payed ones that are reasonably priced) and publish their protocol. So [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":5902,"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-5900","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.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Arduino Audio Tools - Sending Audio to your Mobile Phone using VBAN - 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\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Arduino Audio Tools - Sending Audio to your Mobile Phone using VBAN - Phil Schatzmann\" \/>\n<meta property=\"og:description\" content=\"For quite some time I was looking for an easy way to send some audio to some mobile devices w\/o having to write my own mobile application. That&#8217;s when I found VBAN. They have some free app (and some payed ones that are reasonably priced) and publish their protocol. So [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/\" \/>\n<meta property=\"og:site_name\" content=\"Phil Schatzmann\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-22T09:29:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-21T06:51:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2023\/10\/vbaudio.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\\\/2023\\\/10\\\/22\\\/audiotools-sending-audio-to-your-mobile-phone-using-vban\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/10\\\/22\\\/audiotools-sending-audio-to-your-mobile-phone-using-vban\\\/\"},\"author\":{\"name\":\"pschatzmann\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"headline\":\"Arduino Audio Tools &#8211; Sending Audio to your Mobile Phone using VBAN\",\"datePublished\":\"2023-10-22T09:29:13+00:00\",\"dateModified\":\"2024-03-21T06:51:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/10\\\/22\\\/audiotools-sending-audio-to-your-mobile-phone-using-vban\\\/\"},\"wordCount\":258,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/10\\\/22\\\/audiotools-sending-audio-to-your-mobile-phone-using-vban\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/vbaudio.png\",\"keywords\":[\"Communications\"],\"articleSection\":[\"Arduino\",\"Machine Sound\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/10\\\/22\\\/audiotools-sending-audio-to-your-mobile-phone-using-vban\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/10\\\/22\\\/audiotools-sending-audio-to-your-mobile-phone-using-vban\\\/\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/10\\\/22\\\/audiotools-sending-audio-to-your-mobile-phone-using-vban\\\/\",\"name\":\"Arduino Audio Tools - Sending Audio to your Mobile Phone using VBAN - Phil Schatzmann\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/10\\\/22\\\/audiotools-sending-audio-to-your-mobile-phone-using-vban\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/10\\\/22\\\/audiotools-sending-audio-to-your-mobile-phone-using-vban\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/vbaudio.png\",\"datePublished\":\"2023-10-22T09:29:13+00:00\",\"dateModified\":\"2024-03-21T06:51:29+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/10\\\/22\\\/audiotools-sending-audio-to-your-mobile-phone-using-vban\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/10\\\/22\\\/audiotools-sending-audio-to-your-mobile-phone-using-vban\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/10\\\/22\\\/audiotools-sending-audio-to-your-mobile-phone-using-vban\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/vbaudio.png\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/vbaudio.png\",\"width\":225,\"height\":225},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2023\\\/10\\\/22\\\/audiotools-sending-audio-to-your-mobile-phone-using-vban\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Arduino Audio Tools &#8211; Sending Audio to your Mobile Phone using VBAN\"}]},{\"@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 - Sending Audio to your Mobile Phone using VBAN - 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\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/","og_locale":"en_US","og_type":"article","og_title":"Arduino Audio Tools - Sending Audio to your Mobile Phone using VBAN - Phil Schatzmann","og_description":"For quite some time I was looking for an easy way to send some audio to some mobile devices w\/o having to write my own mobile application. That&#8217;s when I found VBAN. They have some free app (and some payed ones that are reasonably priced) and publish their protocol. So [&hellip;]","og_url":"https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/","og_site_name":"Phil Schatzmann","article_published_time":"2023-10-22T09:29:13+00:00","article_modified_time":"2024-03-21T06:51:29+00:00","og_image":[{"width":225,"height":225,"url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2023\/10\/vbaudio.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\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/#article","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/"},"author":{"name":"pschatzmann","@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"headline":"Arduino Audio Tools &#8211; Sending Audio to your Mobile Phone using VBAN","datePublished":"2023-10-22T09:29:13+00:00","dateModified":"2024-03-21T06:51:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/"},"wordCount":258,"commentCount":0,"publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2023\/10\/vbaudio.png","keywords":["Communications"],"articleSection":["Arduino","Machine Sound"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/","url":"https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/","name":"Arduino Audio Tools - Sending Audio to your Mobile Phone using VBAN - Phil Schatzmann","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/#primaryimage"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2023\/10\/vbaudio.png","datePublished":"2023-10-22T09:29:13+00:00","dateModified":"2024-03-21T06:51:29+00:00","breadcrumb":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/#primaryimage","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2023\/10\/vbaudio.png","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2023\/10\/vbaudio.png","width":225,"height":225},{"@type":"BreadcrumbList","@id":"https:\/\/www.pschatzmann.ch\/home\/2023\/10\/22\/audiotools-sending-audio-to-your-mobile-phone-using-vban\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pschatzmann.ch\/home\/"},{"@type":"ListItem","position":2,"name":"Arduino Audio Tools &#8211; Sending Audio to your Mobile Phone using VBAN"}]},{"@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\/5900","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=5900"}],"version-history":[{"count":15,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/5900\/revisions"}],"predecessor-version":[{"id":5916,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/5900\/revisions\/5916"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media\/5902"}],"wp:attachment":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media?parent=5900"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/categories?post=5900"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/tags?post=5900"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}