{"id":11393,"date":"2023-06-25T15:10:41","date_gmt":"2023-06-25T18:10:41","guid":{"rendered":"https:\/\/categoriaoutros.com.br\/?p=11393"},"modified":"2023-06-25T15:10:43","modified_gmt":"2023-06-25T18:10:43","slug":"linux-como-corrigir-problema-de-video-no-whatsapp-do-opera","status":"publish","type":"post","link":"https:\/\/categoriaoutros.com.br\/?p=11393","title":{"rendered":"Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera?"},"content":{"rendered":"\n<p>dificuldade em reproduzir v\u00eddeos do WhatsApp no Opera no Linux geralmente est\u00e1 relacionada \u00e0 falta de suporte ao codec de v\u00eddeo H.264, que \u00e9 comumente usado nos v\u00eddeos enviados pelo WhatsApp. O suporte a esse codec \u00e9 fornecido pelo FFmpeg, uma biblioteca de software que lida com formatos de \u00e1udio e v\u00eddeo.<\/p>\n\n\n\n<p>O Opera no Linux, por padr\u00e3o, n\u00e3o inclui o suporte nativo ao codec H.264 devido a restri\u00e7\u00f5es de licenciamento. No entanto, voc\u00ea pode instalar o pacote FFmpeg para adicionar suporte a esse codec. Aqui est\u00e1 um guia passo a passo de como fazer isso:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Abra um terminal no seu sistema Linux.<\/li>\n\n\n\n<li>Verifique se o gerenciador de pacotes do seu sistema est\u00e1 atualizado executando o seguinte comando: <code><strong><kbd><mark style=\"background-color:#000000\" class=\"has-inline-color has-white-color\">sudo apt update<\/mark><\/kbd><\/strong><\/code><\/li>\n\n\n\n<li>Instale o pacote FFmpeg executando o seguinte comando: <code><kbd><mark style=\"background-color:#000000\" class=\"has-inline-color has-white-color\"><strong>sudo apt install ffmpeg<\/strong><\/mark><\/kbd><\/code><\/li>\n\n\n\n<li>Reinicie o Opera para garantir que as altera\u00e7\u00f5es entrem em vigor.<\/li>\n<\/ol>\n\n\n\n<p>Depois de instalar o FFmpeg, o Opera deve ser capaz de reproduzir v\u00eddeos do WhatsApp sem problemas. No entanto, \u00e9 importante mencionar que a instala\u00e7\u00e3o do FFmpeg pode ser diferente dependendo da distribui\u00e7\u00e3o Linux que voc\u00ea est\u00e1 usando. Certifique-se de consultar a documenta\u00e7\u00e3o ou os recursos espec\u00edficos da sua distribui\u00e7\u00e3o para obter instru\u00e7\u00f5es mais detalhadas.<\/p>\n\n\n\n<p>Lembre-se de que, embora o suporte ao FFmpeg resolva o problema de reprodu\u00e7\u00e3o de v\u00eddeos no Opera, o envio de v\u00eddeos pode ser limitado pelo WhatsApp Web, independentemente do navegador ou sistema operacional que voc\u00ea esteja usando.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Se o Problema Persistir?<\/h2>\n\n\n\n<p>Proceda da seguinte forma, conforme retirado desse artigo: <a href=\"https:\/\/categoriaoutros.com.br\/?p=11390\">Opera: Como Instar Codec H.264 para Executar V\u00eddeos?<\/a><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Baixe Script do GitHub<\/h4>\n\n\n\n<p>obs.: posto abaixo o texto para n\u00e3o precisar visitar o link. <\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Acesse esse link do github:<a href=\"https:\/\/gist.github.com\/mcarletti\/7989d1c04199dba60a01adf8ac54fe31\"> https:\/\/gist.github.com<\/a><\/li>\n\n\n\n<li>Copie as linhas do script e cole em um arquivo qualquer de texto.<\/li>\n\n\n\n<li>Clique com o direito no arquivo salvo e v\u00e1 em propriedades. D\u00ea permiss\u00e3o de execu\u00e7\u00e3o. Ou, como alternativa, abra o terminal e execute o seguinte comando, iremos supor que o arquivo se chama h264_codec_opera.sh, execute: <strong><kbd>chmod +x h264_codec_opera.sh<\/kbd><\/strong><\/li>\n\n\n\n<li>execute o arquivo no terminal da seguinte forma: <strong>sudo  .\/<kbd>h264_codec_opera.sh<\/kbd><\/strong><\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\">Script para Download<\/h4>\n\n\n\n<pre>\n#!\/bin\/bash\n\n\n# Author: Marco Carletti\n# Date: May 2022\n# Version: 0.2.0\n\n\n# Thanks to everyone for comments, suggestions, fixes and testings!\n\n\n# Tested on\n# ---------\n#\n# Ubuntu 18.04\n#\n# v0.1.0\n#       62.0.3331.116\n#       63.0.3368.66\n#\n# Ubuntu 20.04\n#\n# v0.1.0\n#       70.0.3728.95\n#       73.0.3856.284\n#       74.0.3911.107\n#       74.0.3911.232\n#\n# v0.2.0\n#       87.0.4390.25\n\n\n# Release notes\n# -------------\n#\n# v0.2.0   Smarter use of curl options to fix failing permalink. Special thanks to `dotarr` for the fix!\n#          Last update: May 18, 2022\n#\n# v0.1.0   It is basically a cleaned version of what you can find in this post from Opera forum:\n#          https:\/\/forums.opera.com\/topic\/34659\/opera-linux-browser-h-264-support-through-x264-open-source-codec\n#          Last update: Aug 18, 2020\n\n\n# Retrieve latest FFMPEG release version.\n# We get the complete url pointing to the latest zip package via the curl command.\n#\n# -L             If the server reports that the requested page has moved to a different location\n#                this option will make curl redo the request on the new place.\n#\n# -o <file>      Write output to <file> instead of stdout.\n#\n# -s             Silent or quiet mode. Don't show progress meter or error messages.\n#\n# -w <format>    Make curl display information on stdout after a completed transfer. The format is\n#                a string that may contain plain text mixed with any number of variables.\nURL=`curl -L -o \/dev\/null -s -w %{url_effective} https:\/\/github.com\/iteufel\/nwjs-ffmpeg-prebuilt\/releases\/latest`\nFFMPEGVER=${URL%\\\"*}\nFFMPEGVER=${FFMPEGVER##*\/}\nFFMPEGZIP=${FFMPEGVER}-linux-x64.zip\n\n\n# Download library from complete url and save it locally.\n# Archive is extracted in the working directory and immediately deleted.\n#\n# -L (see above)\n# -O             Write output to a local file named like the remote file we get.\n#                Only the file part of the remote file is used, the path is cut off.\ncurl -L -O https:\/\/github.com\/iteufel\/nwjs-ffmpeg-prebuilt\/releases\/download\/${FFMPEGVER}\/${FFMPEGZIP}\nunzip ${FFMPEGZIP}\nrm ${FFMPEGZIP}\n\n\n# Overwrite Opera libffmpeg (requires root privileges).\n# Install (ie. copy) the latest version of the library in the system library folder.\n# Before overwriting the Opera library file, make a copy... So we can manually rollback if we messed up things :)\nsudo mv libffmpeg.so \/usr\/lib\/x86_64-linux-gnu\/libffmpeg_h264.so\nsudo mv \/usr\/lib\/x86_64-linux-gnu\/opera\/libffmpeg.so \/usr\/lib\/x86_64-linux-gnu\/opera\/libffmpeg.so.orig\nsudo ln -s \/usr\/lib\/x86_64-linux-gnu\/libffmpeg_h264.so \/usr\/lib\/x86_64-linux-gnu\/opera\/libffmpeg.so\n\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>dificuldade em reproduzir v\u00eddeos do WhatsApp no Opera no Linux geralmente est\u00e1 relacionada \u00e0 falta de suporte ao codec de v\u00eddeo H.264, que \u00e9 comumente usado nos v\u00eddeos enviados pelo WhatsApp. O suporte a esse codec \u00e9 fornecido pelo FFmpeg, uma biblioteca de software que lida com formatos de \u00e1udio e v\u00eddeo. O Opera no&#8230;<\/p>\n<p class=\"more-link-wrap\"><a href=\"https:\/\/categoriaoutros.com.br\/?p=11393\" class=\"more-link\">Read More<span class=\"screen-reader-text\"> &ldquo;Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera?&rdquo;<\/span> &raquo;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-11393","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera? - Categoria Outros<\/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:\/\/categoriaoutros.com.br\/?p=11393\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera? - Categoria Outros\" \/>\n<meta property=\"og:description\" content=\"dificuldade em reproduzir v\u00eddeos do WhatsApp no Opera no Linux geralmente est\u00e1 relacionada \u00e0 falta de suporte ao codec de v\u00eddeo H.264, que \u00e9 comumente usado nos v\u00eddeos enviados pelo WhatsApp. O suporte a esse codec \u00e9 fornecido pelo FFmpeg, uma biblioteca de software que lida com formatos de \u00e1udio e v\u00eddeo. O Opera no...Read More &ldquo;Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera?&rdquo; &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/categoriaoutros.com.br\/?p=11393\" \/>\n<meta property=\"og:site_name\" content=\"Categoria Outros\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/categoriaoutros\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-25T18:10:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-25T18:10:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/categoriaoutros.com.br\/wp-content\/uploads\/2023\/08\/pinguim-paginas-padrao.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1022\" \/>\n\t<meta property=\"og:image:height\" content=\"722\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Categoria: Outros\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CategoriaOutros\" \/>\n<meta name=\"twitter:site\" content=\"@CategoriaOutros\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Categoria: Outros\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/categoriaoutros.com.br\/?p=11393#article\",\"isPartOf\":{\"@id\":\"https:\/\/categoriaoutros.com.br\/?p=11393\"},\"author\":{\"name\":\"Categoria: Outros\",\"@id\":\"https:\/\/categoriaoutros.com.br\/#\/schema\/person\/ba0f432708449436912bd6736864bb40\"},\"headline\":\"Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera?\",\"datePublished\":\"2023-06-25T18:10:41+00:00\",\"dateModified\":\"2023-06-25T18:10:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/categoriaoutros.com.br\/?p=11393\"},\"wordCount\":375,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/categoriaoutros.com.br\/#organization\"},\"articleSection\":[\"Uncategorized\"],\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/categoriaoutros.com.br\/?p=11393#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/categoriaoutros.com.br\/?p=11393\",\"url\":\"https:\/\/categoriaoutros.com.br\/?p=11393\",\"name\":\"Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera? - Categoria Outros\",\"isPartOf\":{\"@id\":\"https:\/\/categoriaoutros.com.br\/#website\"},\"datePublished\":\"2023-06-25T18:10:41+00:00\",\"dateModified\":\"2023-06-25T18:10:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/categoriaoutros.com.br\/?p=11393#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/categoriaoutros.com.br\/?p=11393\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/categoriaoutros.com.br\/?p=11393#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/categoriaoutros.com.br\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/categoriaoutros.com.br\/#website\",\"url\":\"https:\/\/categoriaoutros.com.br\/\",\"name\":\"Categoria Outros\",\"description\":\"Assuntos Diversos\",\"publisher\":{\"@id\":\"https:\/\/categoriaoutros.com.br\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/categoriaoutros.com.br\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/categoriaoutros.com.br\/#organization\",\"name\":\"Categoria Outros\",\"alternateName\":\"Categoria Outros\",\"url\":\"https:\/\/categoriaoutros.com.br\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\/\/categoriaoutros.com.br\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/categoriaoutros.com.br\/wp-content\/uploads\/2023\/08\/categoriaoutros-logo.jpg\",\"contentUrl\":\"https:\/\/categoriaoutros.com.br\/wp-content\/uploads\/2023\/08\/categoriaoutros-logo.jpg\",\"width\":400,\"height\":400,\"caption\":\"Categoria Outros\"},\"image\":{\"@id\":\"https:\/\/categoriaoutros.com.br\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/categoriaoutros\",\"https:\/\/twitter.com\/CategoriaOutros\",\"https:\/\/br.pinterest.com\/CategoriaOutros\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/categoriaoutros.com.br\/#\/schema\/person\/ba0f432708449436912bd6736864bb40\",\"name\":\"Categoria: Outros\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\/\/categoriaoutros.com.br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed97775f0ab50750ed638ed3417ea85e19ced2c648da167a108e393ae5fd9e33?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed97775f0ab50750ed638ed3417ea85e19ced2c648da167a108e393ae5fd9e33?s=96&d=mm&r=g\",\"caption\":\"Categoria: Outros\"},\"sameAs\":[\"http:\/\/categoriaoutros.com.br\"],\"url\":\"https:\/\/categoriaoutros.com.br\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera? - Categoria Outros","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:\/\/categoriaoutros.com.br\/?p=11393","og_locale":"pt_BR","og_type":"article","og_title":"Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera? - Categoria Outros","og_description":"dificuldade em reproduzir v\u00eddeos do WhatsApp no Opera no Linux geralmente est\u00e1 relacionada \u00e0 falta de suporte ao codec de v\u00eddeo H.264, que \u00e9 comumente usado nos v\u00eddeos enviados pelo WhatsApp. O suporte a esse codec \u00e9 fornecido pelo FFmpeg, uma biblioteca de software que lida com formatos de \u00e1udio e v\u00eddeo. O Opera no...Read More &ldquo;Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera?&rdquo; &raquo;","og_url":"https:\/\/categoriaoutros.com.br\/?p=11393","og_site_name":"Categoria Outros","article_publisher":"https:\/\/www.facebook.com\/categoriaoutros","article_published_time":"2023-06-25T18:10:41+00:00","article_modified_time":"2023-06-25T18:10:43+00:00","og_image":[{"width":1022,"height":722,"url":"https:\/\/categoriaoutros.com.br\/wp-content\/uploads\/2023\/08\/pinguim-paginas-padrao.webp","type":"image\/webp"}],"author":"Categoria: Outros","twitter_card":"summary_large_image","twitter_creator":"@CategoriaOutros","twitter_site":"@CategoriaOutros","twitter_misc":{"Escrito por":"Categoria: Outros","Est. tempo de leitura":"4 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/categoriaoutros.com.br\/?p=11393#article","isPartOf":{"@id":"https:\/\/categoriaoutros.com.br\/?p=11393"},"author":{"name":"Categoria: Outros","@id":"https:\/\/categoriaoutros.com.br\/#\/schema\/person\/ba0f432708449436912bd6736864bb40"},"headline":"Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera?","datePublished":"2023-06-25T18:10:41+00:00","dateModified":"2023-06-25T18:10:43+00:00","mainEntityOfPage":{"@id":"https:\/\/categoriaoutros.com.br\/?p=11393"},"wordCount":375,"commentCount":0,"publisher":{"@id":"https:\/\/categoriaoutros.com.br\/#organization"},"articleSection":["Uncategorized"],"inLanguage":"pt-BR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/categoriaoutros.com.br\/?p=11393#respond"]}]},{"@type":"WebPage","@id":"https:\/\/categoriaoutros.com.br\/?p=11393","url":"https:\/\/categoriaoutros.com.br\/?p=11393","name":"Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera? - Categoria Outros","isPartOf":{"@id":"https:\/\/categoriaoutros.com.br\/#website"},"datePublished":"2023-06-25T18:10:41+00:00","dateModified":"2023-06-25T18:10:43+00:00","breadcrumb":{"@id":"https:\/\/categoriaoutros.com.br\/?p=11393#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/categoriaoutros.com.br\/?p=11393"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/categoriaoutros.com.br\/?p=11393#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/categoriaoutros.com.br\/"},{"@type":"ListItem","position":2,"name":"Linux: Como Corrigir Problema de V\u00eddeo no WhatsApp do Opera?"}]},{"@type":"WebSite","@id":"https:\/\/categoriaoutros.com.br\/#website","url":"https:\/\/categoriaoutros.com.br\/","name":"Categoria Outros","description":"Assuntos Diversos","publisher":{"@id":"https:\/\/categoriaoutros.com.br\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/categoriaoutros.com.br\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/categoriaoutros.com.br\/#organization","name":"Categoria Outros","alternateName":"Categoria Outros","url":"https:\/\/categoriaoutros.com.br\/","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/categoriaoutros.com.br\/#\/schema\/logo\/image\/","url":"https:\/\/categoriaoutros.com.br\/wp-content\/uploads\/2023\/08\/categoriaoutros-logo.jpg","contentUrl":"https:\/\/categoriaoutros.com.br\/wp-content\/uploads\/2023\/08\/categoriaoutros-logo.jpg","width":400,"height":400,"caption":"Categoria Outros"},"image":{"@id":"https:\/\/categoriaoutros.com.br\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/categoriaoutros","https:\/\/twitter.com\/CategoriaOutros","https:\/\/br.pinterest.com\/CategoriaOutros\/"]},{"@type":"Person","@id":"https:\/\/categoriaoutros.com.br\/#\/schema\/person\/ba0f432708449436912bd6736864bb40","name":"Categoria: Outros","image":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/categoriaoutros.com.br\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ed97775f0ab50750ed638ed3417ea85e19ced2c648da167a108e393ae5fd9e33?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed97775f0ab50750ed638ed3417ea85e19ced2c648da167a108e393ae5fd9e33?s=96&d=mm&r=g","caption":"Categoria: Outros"},"sameAs":["http:\/\/categoriaoutros.com.br"],"url":"https:\/\/categoriaoutros.com.br\/?author=1"}]}},"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/categoriaoutros.com.br\/index.php?rest_route=\/wp\/v2\/posts\/11393","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/categoriaoutros.com.br\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/categoriaoutros.com.br\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/categoriaoutros.com.br\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/categoriaoutros.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=11393"}],"version-history":[{"count":1,"href":"https:\/\/categoriaoutros.com.br\/index.php?rest_route=\/wp\/v2\/posts\/11393\/revisions"}],"predecessor-version":[{"id":11394,"href":"https:\/\/categoriaoutros.com.br\/index.php?rest_route=\/wp\/v2\/posts\/11393\/revisions\/11394"}],"wp:attachment":[{"href":"https:\/\/categoriaoutros.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=11393"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/categoriaoutros.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=11393"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/categoriaoutros.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=11393"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}