{"id":13797,"date":"2025-07-20T22:24:44","date_gmt":"2025-07-20T20:24:44","guid":{"rendered":"https:\/\/monodes.com\/predaelli\/?p=13797"},"modified":"2025-07-20T22:24:47","modified_gmt":"2025-07-20T20:24:47","slug":"13797","status":"publish","type":"post","link":"https:\/\/monodes.com\/predaelli\/2025\/07\/20\/13797\/","title":{"rendered":""},"content":{"rendered":"\n<p>I visited <a href=\"https:\/\/shkspr.mobi\/blog\/\">Terence blog<\/a> to read about some <a href=\"https:\/\/shkspr.mobi\/blog\/2016\/08\/easy-ways-to-add-watermarks-to-images-and-videos-in-linux\/\">Easy ways to add watermarks to images and videos in Linux<\/a> but I found a very nice and clean to take inspiration from!<\/p>\n\n\n\n<!--nextpage-->\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Mostly notes to myself \ud83d\ude42<\/p>\n\n\n\n<p>Here is a quick way to add watermarks to photos and videos. All Linux command line based &#8211; so perfect if you&#8217;ve got a lot of images you want to manipulate.<\/p>\n\n\n\n<p>Here is a delightful photo I&#8217;ve taken of a bee covered in pollen. I want to add a little copyright notice to it in order to discourage people using it without permission.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/shkspr.mobi\/blog\/wp-content\/uploads\/2016\/07\/Bee-covered-in-pollen.jpg?w=910&#038;ssl=1\" alt=\"Bee covered in pollen\" class=\"wp-image-23154\"\/><\/figure><\/div>\n\n\n<p>This command uses <a href=\"http:\/\/www.ImageMagick.org\/\">imagemagick<\/a>&#8216;s &#8220;<a href=\"http:\/\/www.imagemagick.org\/Usage\/annotating\/\">annotate<\/a>&#8221; option.<\/p>\n\n\n\n<p><code class=\"\" data-line=\"\">convert bee.jpg -gravity SouthEast -pointsize 16 -font TinyUnicode-Medium -fill &quot;#fffdc3&quot; -annotate +10+10 &quot;(C) @edent&quot; bee1.jpg<\/code><\/p>\n\n\n\n<p>It produces this:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/shkspr.mobi\/blog\/wp-content\/uploads\/2016\/07\/Bee-covered-in-pollen-with-pixel-watermark.jpg?w=910&#038;ssl=1\" alt=\"Bee covered in pollen with pixel watermark\" class=\"wp-image-23152\"\/><\/figure><\/div>\n\n\n<p>As you can see, a small watermark in the bottom right &#8211; specified using <code class=\"\" data-line=\"\">-gravity SouthEast<\/code>. I&#8217;ve chosen a yellow colour for the font &#8211; in homage to the <a href=\"https:\/\/people.duke.edu\/~ng46\/collections\/steg-eurion-constellation.htm\">EURion anti-counterfeiting symbols<\/a>.<\/p>\n\n\n\n<p>The <code class=\"\" data-line=\"\">-annotate<\/code> command contains the distance in pixels from the edges<\/p>\n\n\n\n<p>For small text, I favour a Pixel Font like <a href=\"http:\/\/www.dafont.com\/tinyunicode.font\">TinyUnicode<\/a> &#8211; but feel free to choose one which suits your needs.<\/p>\n\n\n\n<p>In this example, I position the message in the top left, with a larger font size, in pale blue, closer to the horizontal edge and further from the vertical edge.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/shkspr.mobi\/blog\/wp-content\/uploads\/2016\/07\/Bee-covered-in-pollen-with-Helvetica-watermark.jpg?w=910&#038;ssl=1\" alt=\"Bee covered in pollen with Helvetica watermark\" class=\"wp-image-23155\"\/><\/figure><\/div>\n\n\n<p><code class=\"\" data-line=\"\">convert bee.jpg -gravity NorthWest -pointsize 32 -font Helvetica -fill &quot;#cee3f8&quot; -annotate +1+50 &quot;(C) @edent&quot; bee2.jpg<\/code><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"video\"><a href=\"https:\/\/shkspr.mobi\/blog\/2016\/08\/easy-ways-to-add-watermarks-to-images-and-videos-in-linux\/#video\">Video<\/a><\/h2>\n\n\n\n<p>Adding a watermark to a video is more complex. This will require either ffmpeg &#8211; which isn&#8217;t always installed by default on Linux &#8211; or avconv (I don&#8217;t pretend to understand why <a href=\"http:\/\/blog.pkh.me\/p\/13-the-ffmpeg-libav-situation.html\">ffmpeg and avconv split<\/a> &#8211; but there we are).<\/p>\n\n\n\n<p>I am going to <a href=\"https:\/\/ffmpeg.org\/ffmpeg-filters.html#overlay-1\">overlay<\/a> a transparent image on top of the video.<\/p>\n\n\n\n<p>I&#8217;ve created this watermark image with a transparent background.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/shkspr.mobi\/blog\/wp-content\/uploads\/2016\/07\/small.png?w=910&#038;ssl=1\" alt=\"A transparent watermark\" class=\"wp-image-23158\"\/><\/figure><\/div>\n\n\n<p>To overlay it, I use:<\/p>\n\n\n\n<p><code class=\"\" data-line=\"\">ffmpeg -i input.mp4 -i watermark.png -filter_complex &quot;overlay=1500:1000&quot; output.mp4<\/code><\/p>\n\n\n\n<p>or for <a href=\"https:\/\/libav.org\/documentation\/libavfilter.html#overlay-1\">avconv&#8217;s overlay<\/a>:<\/p>\n\n\n\n<p><code class=\"\" data-line=\"\">avconv -i input.mp4 -i watermark.png -filter_complex &#039;overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10&#039; output.mp4<\/code><\/p>\n\n\n\n<p>Video Player<video height=\"349\" loop=\"\" preload=\"metadata\" width=\"620\" src=\"https:\/\/shkspr.mobi\/blog\/wp-content\/uploads\/2016\/07\/small.mp4?_=2\"><\/video><\/p>\n\n\n\n<p>00:00<\/p>\n\n\n\n<p>00:03<\/p>\n\n\n\n<p>ffmpeg&#8217;s <code class=\"\" data-line=\"\">overlay=<\/code> option allows me to specify where the <em>top left<\/em> of the image will appear on the video. So adjust those number based on the resolution of your watermark and of your video.<\/p>\n\n\n\n<p>avconv has a more complex syntax. It&#8217;s possible to specify the <em>absolute<\/em> position using <code class=\"\" data-line=\"\">overlay=x=1500:y=1000<\/code> or to use <em>relative<\/em> positions with <code class=\"\" data-line=\"\">overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10<\/code>.<\/p>\n\n\n\n<p>Or, for a one-liner:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\" data-line=\"\">ffmpeg -i input.mp4 -vf &quot;drawtext=text=&#039;@edent&#039;:x=10:y=H-th-10:fontfile=\/home\/edent\/.local\/share\/fonts\/OCRAEXT.TTF:fontsize=15:fontcolor=#cee3f8&quot; -vcodec h264 -strict -2 output.mp4\n<\/code><\/pre>\n\n\n\n<p>So, there you have it &#8211; hopefully simple ways to watermark your media files.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"share-the-love\">Share this post on\u2026<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/tootpick.org\/#text=Easy%20ways%20to%20add%20watermarks%20to%20images%20and%20videos%20in%20Linux%20https%3A%2F%2Fshkspr.mobi%2Fblog%2F2016%2F08%2Feasy-ways-to-add-watermarks-to-images-and-videos-in-linux%2F\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.facebook.com\/sharer.php?u=https%3A%2F%2Fshkspr.mobi%2Fblog%2F2016%2F08%2Feasy-ways-to-add-watermarks-to-images-and-videos-in-linux%2F&amp;t=Easy%20ways%20to%20add%20watermarks%20to%20images%20and%20videos%20in%20Linux\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.linkedin.com\/sharing\/share-offsite\/?url=https%3A%2F%2Fshkspr.mobi%2Fblog%2F2016%2F08%2Feasy-ways-to-add-watermarks-to-images-and-videos-in-linux%2F\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/bsky.app\/intent\/compose?text=Easy%20ways%20to%20add%20watermarks%20to%20images%20and%20videos%20in%20Linux%20https%3A%2F%2Fshkspr.mobi%2Fblog%2F2016%2F08%2Feasy-ways-to-add-watermarks-to-images-and-videos-in-linux%2F\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.threads.net\/intent\/post?url=https%3A%2F%2Fshkspr.mobi%2Fblog%2F2016%2F08%2Feasy-ways-to-add-watermarks-to-images-and-videos-in-linux%2F&amp;text=Easy%20ways%20to%20add%20watermarks%20to%20images%20and%20videos%20in%20Linux\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fshkspr.mobi%2Fblog%2F2016%2F08%2Feasy-ways-to-add-watermarks-to-images-and-videos-in-linux%2F&amp;title=Easy%20ways%20to%20add%20watermarks%20to%20images%20and%20videos%20in%20Linux\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/news.ycombinator.com\/submitlink?u=https%3A%2F%2Fshkspr.mobi%2Fblog%2F2016%2F08%2Feasy-ways-to-add-watermarks-to-images-and-videos-in-linux%2F&amp;t=Easy%20ways%20to%20add%20watermarks%20to%20images%20and%20videos%20in%20Linux\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/lobste.rs\/stories\/new?url=https%3A%2F%2Fshkspr.mobi%2Fblog%2F2016%2F08%2Feasy-ways-to-add-watermarks-to-images-and-videos-in-linux%2F&amp;title=Easy%20ways%20to%20add%20watermarks%20to%20images%20and%20videos%20in%20Linux\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/api.whatsapp.com\/send\/?text=https%3A%2F%2Fshkspr.mobi%2Fblog%2F2016%2F08%2Feasy-ways-to-add-watermarks-to-images-and-videos-in-linux%2F\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/telegram.me\/share\/url?url=Easy%20ways%20to%20add%20watermarks%20to%20images%20and%20videos%20in%20Linux&amp;text=https%3A%2F%2Fshkspr.mobi%2Fblog%2F2016%2F08%2Feasy-ways-to-add-watermarks-to-images-and-videos-in-linux%2F\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">One thought on \u201cEasy ways to add watermarks to images and videos in Linux\u201d<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https:\/\/shkspr.mobi\/blog\/2016\/08\/easy-ways-to-add-watermarks-to-images-and-videos-in-linux\/#comment-5243\">2016-08-06 20:48<\/a> <img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" height=\"64\" srcset=\"https:\/\/shkspr.mobi\/blog\/wp-content\/litespeed\/avatar\/4ccc9d31f642c109cc61fd6eb8b19ccf.jpg?ver=1752071043 2x\" width=\"64\" src=\"https:\/\/i0.wp.com\/shkspr.mobi\/blog\/wp-content\/litespeed\/avatar\/af6a5dd8373bf52386c67599d3a74158.jpg?resize=64%2C64&#038;ssl=1\" alt=\"\"\/> Bob Boberson says: For anyone else who read this and immediately asked themselves &#8220;but can I get ffmpeg to overlay it without re-encoding the video because my machine is old and slow and that&#8217;d take ages&#8221;, the answer is, no, you can&#8217;t.$ ffmpeg -i foo.mp4 -i yeah.png -filter_complex &#8220;overlay=100:100&#8221; -vcodec copy \/tmp\/watermarked.mp4Results in the error message: &#8220;Streamcopy requested for output stream 0:0, which is fed from a complex filtergraph. Filtering and streamcopy cannot be used together.&#8221;Makes sense, but I had to try it to stop myself wondering &#8220;but maybe\u2026&#8221;.<\/li>\n<\/ol>\n<\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p class=\"excerpt\">I visited Terence blog to read about some Easy ways to add watermarks to images and videos in Linux but I found a very nice and clean to take inspiration from!<\/p>\n<p class=\"more-link-p\"><a class=\"more-link\" href=\"https:\/\/monodes.com\/predaelli\/2025\/07\/20\/13797\/\">Read more &rarr;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":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,"activitypub_content_warning":"","activitypub_content_visibility":"","activitypub_max_image_attachments":4,"activitypub_interaction_policy_quote":"anyone","activitypub_status":"federated","footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[1],"tags":[268],"class_list":["post-13797","post","type-post","status-publish","format-standard","hentry","category-senza-categoria","tag-ffmpeg"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/s6daft-13797","jetpack-related-posts":[{"id":12136,"url":"https:\/\/monodes.com\/predaelli\/2024\/12\/19\/fuss-the-gnu-linux-distribution-for-a-digitally-sustainable-school\/","url_meta":{"origin":13797,"position":0},"title":"FUSS &#8211; The GNU\/Linux Distribution for a Digitally Sustainable School","author":"Paolo Redaelli","date":"2024-12-19","format":false,"excerpt":"FUSS The GNU\/Linux Distribution for a Digitally Sustainable School FUSS is a complete GNU\/Linux solution (server, client and desktop\/standalone) based on Debian for managing an educational network. It is at the same time also a digital sustainability project that since 2005 allows students and teachers to use at home the\u2026","rel":"","context":"In &quot;Software&quot;","block_context":{"text":"Software","link":"https:\/\/monodes.com\/predaelli\/category\/software\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/monodes.com\/predaelli\/wp-content\/uploads\/sites\/4\/2024\/12\/logo-FUSS-circle.png?fit=980%2C980&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/monodes.com\/predaelli\/wp-content\/uploads\/sites\/4\/2024\/12\/logo-FUSS-circle.png?fit=980%2C980&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/monodes.com\/predaelli\/wp-content\/uploads\/sites\/4\/2024\/12\/logo-FUSS-circle.png?fit=980%2C980&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/monodes.com\/predaelli\/wp-content\/uploads\/sites\/4\/2024\/12\/logo-FUSS-circle.png?fit=980%2C980&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":1781,"url":"https:\/\/monodes.com\/predaelli\/2016\/09\/20\/convert-ova-to-ovf-in-linux\/","url_meta":{"origin":13797,"position":1},"title":"Convert .ova to .ovf in Linux","author":"Paolo Redaelli","date":"2016-09-20","format":false,"excerpt":"Thanks to IT In Theory we now know that he .ova file format is a tar image! tar xvf SomeVMImage.ova will dump the .ovf and related files. Easy as pi! Bread'n'butter!","rel":"","context":"In &quot;Documentations&quot;","block_context":{"text":"Documentations","link":"https:\/\/monodes.com\/predaelli\/category\/documentations\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1714,"url":"https:\/\/monodes.com\/predaelli\/2016\/07\/29\/still-at-step-3\/","url_meta":{"origin":13797,"position":2},"title":"Still at step 3","author":"Paolo Redaelli","date":"2016-07-29","format":"aside","excerpt":"Windows Subsystem for Linux Windows Subsystem for Linux (WSL) is a compatibility layer for running Linuxbinary executables (in ELF format) natively on Windows 10. Microsoft and Canonical partnered together to enable a genuine UbuntuTrusty Tahr image to be downloaded and extracted to the user's local machine, and for the tools\u2026","rel":"","context":"In &quot;GNU\/Linux&quot;","block_context":{"text":"GNU\/Linux","link":"https:\/\/monodes.com\/predaelli\/category\/gnulinux\/"},"img":{"alt_text":"windows-subsystem-for-linux","src":"https:\/\/i0.wp.com\/monodes.com\/predaelli\/wp-content\/uploads\/sites\/4\/2016\/07\/windows-subsystem-for-linux-1.png?resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/monodes.com\/predaelli\/wp-content\/uploads\/sites\/4\/2016\/07\/windows-subsystem-for-linux-1.png?resize=350%2C200 1x, https:\/\/i0.wp.com\/monodes.com\/predaelli\/wp-content\/uploads\/sites\/4\/2016\/07\/windows-subsystem-for-linux-1.png?resize=525%2C300 1.5x"},"classes":[]},{"id":1645,"url":"https:\/\/monodes.com\/predaelli\/2016\/06\/06\/little-hidden-gems\/","url_meta":{"origin":13797,"position":3},"title":"Little, hidden gems.","author":"Paolo Redaelli","date":"2016-06-06","format":false,"excerpt":"I was looking for a Tiny Core image with Firefox preinstalled, found this spartan web page: Marketplace - Firefox - GNS3 That has a hidden gem in it: http:\/\/downloads.sourceforge.net\/project\/gns-3\/Qemu%20Appliances\/linux-tinycore-linux-6.4-firefox-33.1.1-2.img A bootable image with a pretty recent web browser. It's always useful.","rel":"","context":"In &quot;Documentations&quot;","block_context":{"text":"Documentations","link":"https:\/\/monodes.com\/predaelli\/category\/documentations\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":354,"url":"https:\/\/monodes.com\/predaelli\/2015\/06\/17\/linux-sopravvivra-a-linus-si-e-lo-dice-proprio-torvalds-mia-mamma-usa-linux\/","url_meta":{"origin":13797,"position":4},"title":"Linux sopravvivr\u00e0 a Linus? S\u00ec, e lo dice proprio Torvalds | Mia mamma usa Linux!","author":"Paolo Redaelli","date":"2015-06-17","format":"link","excerpt":"\"Linux sopravvivr\u00e0 a Linus? S\u00ec, e lo dice proprio Torvalds\" da Mia mamma usa Linux! ... buono a sapersi!","rel":"","context":"In &quot;GNU\/Linux&quot;","block_context":{"text":"GNU\/Linux","link":"https:\/\/monodes.com\/predaelli\/category\/gnulinux\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/monodes.com\/predaelli\/wp-content\/uploads\/sites\/4\/2015\/06\/mmul_pinguino-scritte-BLOG_header.png?resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/monodes.com\/predaelli\/wp-content\/uploads\/sites\/4\/2015\/06\/mmul_pinguino-scritte-BLOG_header.png?resize=350%2C200 1x, https:\/\/i0.wp.com\/monodes.com\/predaelli\/wp-content\/uploads\/sites\/4\/2015\/06\/mmul_pinguino-scritte-BLOG_header.png?resize=525%2C300 1.5x, https:\/\/i0.wp.com\/monodes.com\/predaelli\/wp-content\/uploads\/sites\/4\/2015\/06\/mmul_pinguino-scritte-BLOG_header.png?resize=700%2C400 2x"},"classes":[]},{"id":8951,"url":"https:\/\/monodes.com\/predaelli\/2021\/12\/02\/linux-laptops-powered-by-open-source-star-labs\/","url_meta":{"origin":13797,"position":5},"title":"Linux Laptops &#8211; Powered by Open Source \u2013 Star Labs\u00ae","author":"Paolo Redaelli","date":"2021-12-02","format":"link","excerpt":"Welcome to the world of Linux. View our range of Linux laptops, including the Star Lite, Star LabTop, StarBook and more. Available with coreboot Open Source firmware and a choice of Ubuntu, elementary OS, Linux Mint, Manjaro, MX Linux, or Zorin OS pre-installed. Visit Star Labs for information, support and\u2026","rel":"","context":"In &quot;GNU\/Linux&quot;","block_context":{"text":"GNU\/Linux","link":"https:\/\/monodes.com\/predaelli\/category\/gnulinux\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/monodes.com\/predaelli\/wp-json\/wp\/v2\/posts\/13797","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/monodes.com\/predaelli\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/monodes.com\/predaelli\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/monodes.com\/predaelli\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/monodes.com\/predaelli\/wp-json\/wp\/v2\/comments?post=13797"}],"version-history":[{"count":0,"href":"https:\/\/monodes.com\/predaelli\/wp-json\/wp\/v2\/posts\/13797\/revisions"}],"wp:attachment":[{"href":"https:\/\/monodes.com\/predaelli\/wp-json\/wp\/v2\/media?parent=13797"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/monodes.com\/predaelli\/wp-json\/wp\/v2\/categories?post=13797"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/monodes.com\/predaelli\/wp-json\/wp\/v2\/tags?post=13797"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}