{"id":1971,"date":"2015-02-15T21:39:34","date_gmt":"2015-02-16T02:39:34","guid":{"rendered":"http:\/\/protofusion.org\/wordpress\/?p=1971"},"modified":"2015-02-15T21:39:34","modified_gmt":"2015-02-16T02:39:34","slug":"low-cost-diy-photobooth","status":"publish","type":"post","link":"http:\/\/protofusion.org\/wordpress\/2015\/02\/low-cost-diy-photobooth\/","title":{"rendered":"Low Cost DIY Photobooth"},"content":{"rendered":"<div id=\"attachment_2069\" style=\"width: 560px\" class=\"wp-caption alignright\"><a href=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/photostrips.png\" data-rel=\"lightbox-image-0\" data-rl_title=\"\" data-rl_caption=\"\" title=\"\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-2069\" class=\"wp-image-2069 size-large\" src=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/photostrips-600x728.png\" alt=\"Sample Photobooth Photostrips\" width=\"550\" height=\"667\" srcset=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/photostrips-600x728.png 600w, http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/photostrips-247x300.png 247w, http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/photostrips.png 2000w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/a><p id=\"caption-attachment-2069\" class=\"wp-caption-text\">Sample photobooth photostrips<\/p><\/div>\n<p>Photobooths are popular at many types of social events, including weddings, birthday parties, and school dances. However, renting one can easily cost upwards of $1000, making them impractical for many events. So when a friend mentioned wanting one for her wedding, I jumped at the opportunity to build a low-cost DIY photobooth.<\/p>\n<p>To make my photobooth cost-efficient, I decided to use a thermal receipt printer to print out black and white photo strips, which eliminates the need for an expensive photo printer and photo paper\/ink. I also added Twitter integration so the photobooth can tweet out every photo strip it takes, and a QR code generator that prints a link to the corresponding Twitter post on each photo strip.<\/p>\n<p>The BeagleBone Black single-board computer seemed like a perfect match to power this project, and I decided to script everything in Python to keep it simple. Gphoto2 provides the camera interface, CUPS handles the printing, and Python libraries take care of everything else.<\/p>\n<p>Lets get into the details of how this thing works.<\/p>\n<p><!--more--><\/p>\n<h2>Electronics<\/h2>\n<div id=\"attachment_1966\" style=\"width: 310px\" class=\"wp-caption alignright\"><a href=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/08\/beaglebone-black.jpg\" data-rel=\"lightbox-image-1\" data-rl_title=\"\" data-rl_caption=\"\" title=\"\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-1966\" class=\"wp-image-1966 size-medium\" src=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/08\/beaglebone-black-300x200.jpg\" alt=\"BeagleBone Black\" width=\"300\" height=\"200\" srcset=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/08\/beaglebone-black-300x200.jpg 300w, http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/08\/beaglebone-black-600x400.jpg 600w, http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/08\/beaglebone-black.jpg 1200w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><p id=\"caption-attachment-1966\" class=\"wp-caption-text\">BeagleBone Black<\/p><\/div>\n<p>The BeagleBone Black will boot up into a usable state without any setup required. However, I found that some gPhoto2 functions did not work with the Debian install that came preloaded on my BBB. To solve this issue, I switched to Arch Linux ARM. Instructions on installing Arch on the BeagleBone can be found <a href=\"http:\/\/archlinuxarm.org\/platforms\/armv7\/ti\/beaglebone-black\">here<\/a>.<\/p>\n<p>The basic features I wanted the photobooth to have are user input to start a photo sequence, camera control to take pictures, Twitter communication to tweet photos, and support for printing the final product. Thankfully each of these features is relatively easy to implement with Python.<\/p>\n<p>I used <a href=\"https:\/\/www.python.org\/download\/releases\/3.4.1\/\">Python 3<\/a> to allow support for some newer Python libraries. Unfortunately, this eliminated the possibility of using Adafruit\u2019s Python GPIO library, which is only compatible with Python 2. Instead, I used the manual approach of exporting the GPIO pins to files in the \/sys\/class\/gpio\/ directory and reading the pin status values from the files. In Python, it looks a little something like this:<\/p>\n<pre class=\"brush: python; title: ; notranslate\" title=\"\">\r\nimport io\r\n\r\n# export pin 7\r\nf = open('\/sys\/class\/gpio\/export', 'w')\r\nf.write('7')\r\nf.close()\r\n\r\n# define pin 7 direction as input\r\nf = open('\/sys\/class\/gpio\/gpio7\/direction', 'w')\r\nf.write('in')\r\nf.close()\r\n\r\n# read pin 7 status\r\nf = open('\/sys\/class\/gpio\/gpio7\/value', 'r')\r\nstatus = f.read()\r\nif(&quot;1&quot; in status):\r\n    # do something\r\nelif(&quot;0&quot; in status):\r\n    # do something else\r\nf.close()\r\n\r\n# unexport pin 7\r\nf = open('\/sys\/class\/gpio\/unexport', 'w')\r\nf.write('7')\r\nf.close()\r\n<\/pre>\n<p>The GPIO pins can be used to capture button presses and trigger the photo sequence.<\/p>\n<p>The primary function of a photobooth is to take pictures, so if nothing else we\u2019re going to have a camera in the setup. The <a href=\"http:\/\/www.gphoto.org\/proj\/gphoto2\/\">Gphoto2<\/a> library takes care of camera integration and simplifies it down to just a few commands. The library supports thousands of camera models, so chances are your camera will work. A list of supported cameras can be found <a href=\"http:\/\/www.gphoto.org\/proj\/libgphoto2\/support.php\">here<\/a>. Since I wanted to take 4 pictures in a row with even spacing and immediately download the pictures, I used the following command and arguments:<\/p>\n<p><code>gphoto2 --capture-image-and-download --interval=3 --frames=4 --filename \/tmp\/portrait%n.jpg --force-overwrite<\/code><\/p>\n<p>The arguments can be modified to fit various needs&#8212;for example, saving the photos on the camera&#8217;s internal memory after they have been downloaded.<\/p>\n<p>I wanted to display live view from the camera on a monitor that would allow users to see themselves as they pose for pictures, but I wasn&#8217;t able to get this working. Gphoto2 seems to turn off live view on my camera after the first picture is taken, and it won\u2019t come back on until the camera is power-cycled. I will be working to find a solution for this issue in the future, possibly by streaming the live view video to the BBB and displaying it from there, or by replacing the camera with a high-def web cam, but until then I will live without it.<\/p>\n<p>To give the user feedback when each picture is taken (in the absence of live view), I decided to turn on the camera flash, even though using the built in flash is less than optimal. Without this feedback, it is difficult to tell when each picture is being taken and when the set is finished. To minimize the blinding effect a bright flash tends to have, I turned down the flash brightness to around a 16th of its usual strength.<\/p>\n<p>Because a photobooth tends to be fairly dark, and since I wasn\u2019t relying on the flash for full lighting, I added some extra lighting to the setup. I decided to use Protofusion\u2019s <a title=\"Luma\" href=\"http:\/\/protofusion.org\/wordpress\/projects\/luma\/\">Luma lighting system<\/a> to give me flexible control over the lighting through the BeagleBone Black. This allowed me to easily set the lighting levels and give some additional feedback regarding program state or errors by flashing the lights different colors. Using the Luma LED Strip Driver and an LED strip, I was able to string lighting around the top of the booth and light it with a soft, distributed light. In the absence of such a high tech lighting system, any standard light source could be used. If the light source tends to be direct and harsh, I would recommend some type of diffuser to distribute and soften it out a bit.<\/p>\n<div id=\"attachment_2078\" style=\"width: 310px\" class=\"wp-caption alignright\"><a href=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/IMG_1494.jpg\" data-rel=\"lightbox-image-2\" data-rl_title=\"\" data-rl_caption=\"\" title=\"\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-2078\" class=\"wp-image-2078 size-medium\" src=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/IMG_1494-300x200.jpg\" alt=\"DYMO 400 Printer\" width=\"300\" height=\"200\" srcset=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/IMG_1494-300x200.jpg 300w, http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/IMG_1494-600x400.jpg 600w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><p id=\"caption-attachment-2078\" class=\"wp-caption-text\">DYMO 400 Printer<\/p><\/div>\n<p>I picked the <a href=\"www.dymo.com\/en-US\/labelwriter-400-label-printer\">Dymo 400 Labelwriter<\/a> to print the photo strips because I could find it on eBay for pretty cheap, and it seemed widely used and supported. To use it with the BBB, I installed the CUPS printing system and found the Dymo driver in the Arch User Repository (I recommend <a href=\"http:\/\/www.tswartz.net\/blog\/how-to-install-packer-the-archlinux-aur-helper\">Packer<\/a> for installing packages from the AUR). Here is a good tutorial on\u00a0<a href=\"https:\/\/wiki.archlinux.org\/index.php\/CUPS\">installing and configuring CUPS<\/a>.<\/p>\n<p>To make the Dymo 400 print the way I wanted, I had to make a few tweaks. When I chose the \u201cContinuous Feed\u201d paper option in CUPS, it would print a large margin at the top of strip, so I tried setting a custom paper size. No matter what custom paper size I set, the printer would always print out the strip, and then print out an equal amount of blank paper. There may be a solution to this, but I was unable to find it. So the work around I used was to manually change the default printing settings for the printer, by going through the printer configuration file and changing the printable area for the &#8220;Continuous Feed&#8221; paper option. The modified file can be found below.<\/p>\n<p>To format the individual photos into one photo strip, along with some text and a QR code at the bottom, I chose the <a href=\"http:\/\/www.imagemagick.org\/\">ImageMagick<\/a> command line image editing tool. I used the convert -append command to assemble all the photos into one image. The one problem I found here was that the large photos taken by the camera were too large for the program to combine into one with the limited RAM on the BeagleBone. Instead, I resized each of the photos and then assembled the smaller images. Since the Dymo 400 printer has a printable width of 672 pixels, I converted all the images down to that size. Here is the sequence of commands I used to assemble a photo strip:<code><\/code><\/p>\n<p><code># resize each of the pictures and add a border to make them go together nicely<br \/>\nconvert \/tmp\/portrait1.jpg -sample 26% -bordercolor '#FFFFFF' -border 2x20 \/tmp\/portrait1.jpg<br \/>\nconvert \/tmp\/portrait2.jpg -sample 26% -bordercolor '#FFFFFF' -border 2x20 \/tmp\/portrait2.jpg<br \/>\nconvert \/tmp\/portrait3.jpg -sample 26% -bordercolor '#FFFFFF' -border 2x20 \/tmp\/portrait3.jpg<br \/>\nconvert \/tmp\/portrait4.jpg -sample 26% -bordercolor '#FFFFFF' -border 2x20 \/tmp\/portrait4.jpg<br \/>\n# put the pictures all together and add the protofusion logo<br \/>\n# this is the version I tweeted<br \/>\nconvert -append \/tmp\/portrait1.jpg \/tmp\/portrait2.jpg \/tmp\/portrait3.jpg \/tmp\/portrait4.jpg \/root\/protofusion.jpg \/tmp\/twitter.jpg<br \/>\n# resize the QR code<br \/>\nconvert \/tmp\/qrcode.jpg -sample x245 \/tmp\/qrcode.jpg<br \/>\n# add the QR code and some text together horizontally<br \/>\nconvert +append \/tmp\/qrcode.jpg \/root\/photoboothtext.jpg \/tmp\/qrblock.jpg<br \/>\n# add the QR code and text to the photo strip<br \/>\n# this is the version I printed<br \/>\nconvert -append \/tmp\/twitter.jpg \/tmp\/qrblock.jpg \/tmp\/print.jpg<br \/>\n<\/code><\/p>\n<p>In order to Tweet photos, the photobooth needs to be connected to the internet. I used a <a href=\"http:\/\/www.amazon.com\/gp\/product\/B002SZEOLG\">TP-LINK TL-WN722N<\/a> wifi dongle I had laying around, but any of the adapters on <a href=\"http:\/\/elinux.org\/Beagleboard:BeagleBoneBlack#WIFI_Adapters\">this list<\/a> as well as many others should work well. The <a href=\"https:\/\/wiki.archlinux.org\/index.php\/Wireless_network_configuration\">Arch Wiki<\/a> details the steps for connecting to a wifi network in Arch Linux.<\/p>\n<p>Twitter integration adds a fun twist to the traditional photobooth. I used the <a href=\"https:\/\/pypi.python.org\/pypi\/twython\">twython<\/a> Python Twitter API wrapper, which simplified many of the steps. The only tricky part is authenticating through Twitter\u2019s three step authentication process.\u00a0 I haven&#8217;t yet added authentication support to my script, so I just manually hard-coded in the generated keys needed. I hope to add Twitter authentication to the next iteration, and will write about that when I finish it.<\/p>\n<p>To give users an easy way to find their tweeted photos, I used a Python QR code generator called <a href=\"https:\/\/pypi.python.org\/pypi\/qrcode\">qrcode<\/a> that generates a QR code with a link to the posted image. The generator takes the link returned by the Twitter API and spits out a QR code which is saved and appended to the photo strip. I also added some custom text next to the QR code to explain what the QR code links to.<\/p>\n<p>You can find my Python code here: <a href=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/photobooth.zip\">photobooth.zip<\/a><br \/>\nYou can find the cups printer config file I used here: <a href=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/printer_config.zip\">printer_config.zip<\/a><\/p>\n<p>Here is a list of the tasks (detailed above) that need to be completed to set up the full system:<\/p>\n<ul>\n<li>Install Arch Linux<\/li>\n<li>Install Packer<\/li>\n<li>Install Python<\/li>\n<li>Install Python libraries:\n<ul>\n<li>twython<\/li>\n<li>oauthlib<\/li>\n<li>qrcode<\/li>\n<li>pyserial<\/li>\n<\/ul>\n<\/li>\n<li>Install and configure Cups<\/li>\n<li>Install and configure printer drivers<\/li>\n<li>Setup wifi connection<\/li>\n<li>Install Gphoto2<\/li>\n<li>Install ImageMagick<\/li>\n<\/ul>\n<h2>Physical<\/h2>\n<p><a href=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/10\/photobooth_drawing.png\" data-rel=\"lightbox-image-3\" data-rl_title=\"\" data-rl_caption=\"\" title=\"\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-2067\" src=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/10\/photobooth_drawing-600x544.png\" alt=\"photobooth_drawing\" width=\"550\" height=\"499\" srcset=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/10\/photobooth_drawing-600x544.png 600w, http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/10\/photobooth_drawing-300x272.png 300w, http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/10\/photobooth_drawing.png 887w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/a><\/p>\n<p>The physical aspect of the photobooth was the easiest part to build, although my simple design has the potential to be greatly improved. To create the enclosure, I opted for a simple PVC pipe frame that could be quickly disassembled and easily transported. I made the enclosure 6 feet long, 4 feet wide, and 6.5 feet tall. These dimensions can be adjusted based on application, but I wanted plenty of space in mine for several people to stand and pose. So far, up to seven people at a time have successfully fit in it. The length really depends on the type of camera and focal length being used, but 6 feet seems like a good starting place. The height is also highly variable, especially if people will be sitting. But since I designed with standing in mind, I wanted to accommodate some of the taller potential users.<\/p>\n<p>I chose \u00be\u201d PVC as a good compromise between cost and strength, and was able to find the elbow pieces I needed to assemble a cube. Here is the design I used for the frame:<\/p>\n<div id=\"attachment_2068\" style=\"width: 560px\" class=\"wp-caption alignnone\"><a href=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/10\/photobooth_render.jpg\" data-rel=\"lightbox-image-4\" data-rl_title=\"\" data-rl_caption=\"\" title=\"\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-2068\" class=\"wp-image-2068 size-large\" src=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/10\/photobooth_render-600x513.jpg\" alt=\"Photobooth frame\" width=\"550\" height=\"470\" srcset=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/10\/photobooth_render-600x513.jpg 600w, http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/10\/photobooth_render-300x257.jpg 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/a><p id=\"caption-attachment-2068\" class=\"wp-caption-text\">Photobooth frame made with PVC pipe<\/p><\/div>\n<p>&nbsp;<\/p>\n<p>Once the frame was built, I chose curtains to cover it. Curtains are a slightly more expensive choice than some of the other options (bedsheets, etc.), but they come pre-made in various lengths, with loops in the top that make them perfect for hanging on PVC. I chose black to create a more private feel in the booth, but in hindsight, something lighter may have allowed better contrast in the photographs and prints.<\/p>\n<p>When I was looking to find some sort of button to use to trigger the photo sequence, I came across a <a href=\"http:\/\/www.ebay.com\/itm\/370887831784\">round foot pedal<\/a> from a tattoo machine. This worked especially well because the booth is designed to be used standing up. However, any type of input could be used to trigger the sequence.<\/p>\n<div id=\"attachment_2073\" style=\"width: 210px\" class=\"wp-caption alignright\"><a href=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/IMG_10981.jpg\" data-rel=\"lightbox-image-5\" data-rl_title=\"\" data-rl_caption=\"\" title=\"\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-2073\" class=\"wp-image-2073 size-medium\" src=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/IMG_10981-200x300.jpg\" alt=\"Photobooth instructions\" width=\"200\" height=\"300\" srcset=\"http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/IMG_10981-200x300.jpg 200w, http:\/\/protofusion.org\/wordpress\/wp-content\/uploads\/2014\/12\/IMG_10981-600x900.jpg 600w\" sizes=\"auto, (max-width: 200px) 100vw, 200px\" \/><\/a><p id=\"caption-attachment-2073\" class=\"wp-caption-text\">Photobooth instructions<\/p><\/div>\n<p>The photobooth setup also needs a tripod, or something to hold the camera. I used <a href=\"www.amazon.com\/gp\/product\/B000V7AF8E\">this tripod<\/a> and was really happy with it. Lighting is also important in a photobooth, so some sort of fill lighting would be desirable. As mentioned above, I found a fancy solution to this, but any light source should work. I also found that some people tend to be confused no matter how straightforward the interface is. Although it may seem tacky, an instruction sheet can really clear up confusion, and when creatively designed, can blend in seamlessly with the look of the booth.<\/p>\n<p>A photobooth can help create spontaneous and memorable moments at any party or get-together. I hope the details here will inspire someone to build their own, because sometimes it&#8217;s more fun to do it yourself!<\/p>\n<h2>Materials<\/h2>\n<p>Here&#8217;s a list of the materials I used to make the photobooth, along with an idea of what they all cost.<\/p>\n<ul>\n<li>Beaglebone Black x 1 = $65<\/li>\n<li>USB hub x 1 = $15<\/li>\n<li>Wifi adapter x 1 = $18<\/li>\n<li>Thermal printer x 1 = $30<\/li>\n<li>Receipt paper x 4 = $24<\/li>\n<li>Foot pedal x 1 = $12<\/li>\n<li>Tripod x 1 = $20<\/li>\n<li>PVC pipes x 10 = $25<\/li>\n<li>PVC connectors x 12 = $12<\/li>\n<li>Curtains x 6 = $60<\/li>\n<\/ul>\n<p><strong>Total = $281<\/strong><\/p>\n<p>Already had:<\/p>\n<ul>\n<li>Camera<\/li>\n<li>Lighting<\/li>\n<\/ul>\n<p>Tools:<\/p>\n<ul>\n<li>Hack saw<\/li>\n<li>Screw drivers<\/li>\n<li>Wire cutters<\/li>\n<li>Computer<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Photobooths are popular at many types of social events, including weddings, birthday parties, and school dances. However, renting one can easily cost upwards of $1000, making them impractical for many events. So when a friend mentioned wanting one for her<span class=\"ellipsis\">&hellip;<\/span><\/p>\n<div class=\"read-more\"><a href=\"http:\/\/protofusion.org\/wordpress\/2015\/02\/low-cost-diy-photobooth\/\">Read more &#8250;<\/a><\/div>\n<p><!-- end of .read-more --><\/p>\n","protected":false},"author":10,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_kadence_starter_templates_imported_post":false,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[7,35,198],"tags":[189,260,39,225,117,224,104,250,122,219,89,261,222,221,220,223],"class_list":["post-1971","post","type-post","status-publish","format-standard","hentry","category-linux","category-projects","category-python","tag-arch-linux-arm","tag-beaglebone-black","tag-diy","tag-dymo-400","tag-gphoto2","tag-imagemagick","tag-led","tag-linux","tag-luma","tag-photobooth","tag-photography","tag-python","tag-qr-code","tag-thermal-printing","tag-twitter","tag-twython"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/pNjAs-vN","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"http:\/\/protofusion.org\/wordpress\/wp-json\/wp\/v2\/posts\/1971","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/protofusion.org\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/protofusion.org\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/protofusion.org\/wordpress\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"http:\/\/protofusion.org\/wordpress\/wp-json\/wp\/v2\/comments?post=1971"}],"version-history":[{"count":33,"href":"http:\/\/protofusion.org\/wordpress\/wp-json\/wp\/v2\/posts\/1971\/revisions"}],"predecessor-version":[{"id":2110,"href":"http:\/\/protofusion.org\/wordpress\/wp-json\/wp\/v2\/posts\/1971\/revisions\/2110"}],"wp:attachment":[{"href":"http:\/\/protofusion.org\/wordpress\/wp-json\/wp\/v2\/media?parent=1971"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/protofusion.org\/wordpress\/wp-json\/wp\/v2\/categories?post=1971"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/protofusion.org\/wordpress\/wp-json\/wp\/v2\/tags?post=1971"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}