{"id":39020,"date":"2025-03-23T21:53:41","date_gmt":"2025-03-24T00:53:41","guid":{"rendered":"https:\/\/mastertrend.info\/?p=39020"},"modified":"2025-03-27T01:32:49","modified_gmt":"2025-03-27T04:32:49","slug":"ffmpeg-on-linux","status":"publish","type":"post","link":"https:\/\/mastertrend.info\/en\/ffmpeg-en-linux\/","title":{"rendered":"FFmpeg on Linux: 10 Essential Tricks \ud83c\udfa5\u2728"},"content":{"rendered":"<h2>FFmpeg on Linux: Discover 10 Secrets! \ud83d\udcbb\ud83d\udd0d<\/h2>\n<p>Want to get more out of the Linux terminal? You might not instinctively associate videos with the command line, but with FFmpeg, you can do a lot with a video file just by typing a simple command in your terminal! \ud83c\udfa5\ud83d\udcbb<\/p>\n<p>If you didn&#039;t know him, <a href=\"https:\/\/www.ffmpeg.org\/\" target=\"_blank\" rel=\"noopener\" data-schema-attribute=\"mentions\">FFmpeg<\/a> is a command-line tool that handles everything media-related. It&#039;s available in the repositories of most Linux distributions, so you just have to <a title=\"How to install software on Ubuntu: Discover 5 amazing tricks \ud83d\udca1\" href=\"https:\/\/mastertrend.info\/en\/how-to-install-software-on-ubuntu\/\" target=\"_blank\" rel=\"noopener\" data-wpil-monitor-id=\"4785\">search for and install the package<\/a> to start using it. \ud83d\udee0\ufe0f\ud83d\udc68\u200d\ud83d\udcbb<\/p>\n<p>Whether you want to play a video quickly, get <a title=\"Reddit Search Tricks for 2025\" href=\"https:\/\/mastertrend.info\/en\/reddit-search-tricks\/\" target=\"_blank\" rel=\"noopener\" data-wpil-monitor-id=\"4788\">information or perform tricks<\/a> For great video editing tools, FFmpeg has you covered. Here are some useful things you can do with FFmpeg on your Linux machine. \ud83d\udd0d\u2728<\/p>\n<h2><span class=\"item-num\">1 . <\/span>Play a Video<\/h2>\n<p>You may already have a favorite video player, and that&#039;s great. But sometimes, you just need a quick and easy way to watch something without opening a full graphical application. You can do this using FFmpeg&#039;s built-in player. <code>ffplay<\/code>.<\/p>\n<p>For example, to play a video, open your terminal and run:<\/p>\n<pre>ffplay your_video_file.mp4<\/pre>\n<figure>     <img decoding=\"async\" style=\"height: auto;max-width: 100%\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" alt=\"Playing video on the terminal using ffplay.\" width=\"976\" height=\"609\" data-img-url=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" title=\"\"><\/figure>\n<p>Your video will appear in a separate window, ready to play. You can control it with commands like &quot;q&quot; to exit, &quot;p&quot; to pause, and the left and right arrows to fast forward or rewind. \u23ea\u23e9<\/p>\n<p>If you want to loop your video, run:<\/p>\n<pre>ffplay -loop 0 your_video_file.mp4<\/pre>\n<p>The option <code>-loop 0<\/code> makes it loop indefinitely. You can replace 0 with any number to set how many times it repeats.<\/p>\n<div id=\"1862-4380-98e626fae0a4\" class=\"display-card article article-card small no-badge active-content\" data-include-community-rating=\"false\" data-nosnippet=\"\">\n<figure>     <img decoding=\"async\" style=\"height: auto;max-width: 100%\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/1742761128_303_10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" alt=\"Laptop with a blue background showing a Linux command prompt.\" width=\"1200\" height=\"675\" data-img-url=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/1742761128_303_10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" title=\"\"><\/figure>\n<div class=\"w-display-card-content regular article-block\">\n<h2 class=\"display-card-excerpt\">2. Here&#039;s how to play your local music collection in a Linux terminal window.<\/h2>\n<p>Typically, getting information about a video file involves navigating menus in a media player or even using a separate application. But with FFmpeg, getting all this information is just a command away. \ud83d\udcca<\/p>\n<p>To get information about the medium, simply run:<\/p>\n<pre>ffmpeg -i your_video_file.mp4<\/pre>\n<p>In seconds, you&#039;ll see a complete overview, including codecs, bitrates, frame rates, and more. \ud83d\udcc8<\/p>\n<figure>     <img decoding=\"async\" style=\"height: auto;max-width: 100%\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/1742761128_311_10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" alt=\"Displaying video information using FFmpeg in the terminal.\" width=\"902\" height=\"311\" data-img-url=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/1742761128_311_10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" title=\"\"><\/figure>\n<p>For even more detailed information about video, audio, and subtitle streams, use <code>ffprobe<\/code> (an FFmpeg tool):<\/p>\n<pre>ffprobe -show_streams \u2013i your_video_file.mp4<\/pre>\n<p>And for cleaner JSON output, run:<\/p>\n<pre>ffprobe -v quiet -print_format json -show_format -show_streams your_video_file.mp4<\/pre>\n<figure>     <img decoding=\"async\" style=\"height: auto;max-width: 100%\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/1742761128_483_10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" alt=\"Displaying video information in appropriate JSON format in the terminal window.\" width=\"903\" height=\"602\" data-img-url=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/1742761128_483_10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" title=\"\"><\/figure>\n<p>Also, let me tell you that all these commands help you efficiently analyze video files without actually playing them. \ud83d\udd0d<\/p>\n<h2><span class=\"item-num\">3 . <\/span>Record your Screen<\/h2>\n<p>FFmpeg can also record your screen. Whether you want to show someone how to do something in Linux or create a quick demo, you don&#039;t need any software. <a title=\"Recording Steam games in 2025\" href=\"https:\/\/mastertrend.info\/en\/steam-game-recording\/\" target=\"_blank\" rel=\"noopener\" data-wpil-monitor-id=\"4779\">screen recording<\/a> extra. \ud83c\udfa4\ud83d\ude09<\/p>\n<p>Let&#039;s say you want to record your entire screen for 10 seconds. You can do this with:<\/p>\n<pre>ffmpeg -f x11grab -video_size 1920x1080 -r 30 -i :0.0+0.0 -t 10 output.mp4<\/pre>\n<p>This command captures your desktop at a resolution of 1920x1080 with a frame rate of 30 frames per second. Additionally, the option <code>-i :0.0+0.0<\/code> tells FFmpeg which screen to record. For example, in our case, <code>:0.0<\/code> refers to the main screen, and <code>+0,0<\/code> means start recording from the top left corner.<\/p>\n<section class=\"emaki-custom-block emaki-custom-warning\">If your system uses Wayland instead of Xorg, you might sometimes encounter a <a title=\"Lenovo Technical Service in Belgrano: 8 Effective Solutions\" href=\"https:\/\/mastertrend.info\/en\/lenovo-mastertrend-technical-service\/\" target=\"_blank\" rel=\"noopener\" data-wpil-monitor-id=\"4781\">screen problem<\/a> black, since FFmpeg capture with x11grab works better with Xorg. Switch to a <a title=\"Snapchat Crashes On Its Own: 10 Quick And Effective Solutions\" href=\"https:\/\/mastertrend.info\/en\/snapchat-closes-by-itself\/\" target=\"_blank\" rel=\"noopener\" data-wpil-monitor-id=\"4784\">Xorg session should fix the problem<\/a>.<\/section>\n<p>If you don&#039;t know your screen size or position, you can find out with this:<\/p>\n<pre>xdpyinfo | grep dimensions<\/pre>\n<p>You should know that the FFmpeg command above records your desktop screen without audio. So, if you also want <a class=\"wpil_keyword_link\" href=\"https:\/\/mastertrend.info\/en\/record-audio-with-your-cell-phone-2\/\" target=\"_blank\" rel=\"noopener\" title=\"\ud83c\udfa4 Record Audio with your Cell Phone: Clear Sound Without Spending $ \ud83c\udfa7\u2728\" data-wpil-keyword-link=\"linked\" data-wpil-monitor-id=\"6842\">Record audio<\/a> Along with the video, you need to specify an audio input device in addition to the video input device.<\/p>\n<p>For example, you can use the option <code>-f alsa -i pulse<\/code> To capture both screen video and audio:<\/p>\n<pre>ffmpeg -f x11grab -video_size 1920x1080 -r 30 -i :0.0+0.0 -f alsa -i default -t 10 output.mp4<\/pre>\n<p>To record a specific window, the FFmpeg command is a bit more complex, but for quick recordings of <a href=\"https:\/\/mastertrend.info\/en\/123movies-full-screen-not-working-2\/\" title=\"Is 123Movies full screen not working? Fix it today \ud83d\udcfa\u2728\" target=\"_blank\" rel=\"noopener\" data-wpil-monitor-id=\"4854\">full screen<\/a>FFmpeg is an excellent choice. Plus, if you like working from the terminal, it gives you complete control over every aspect of the recording process. \ud83d\udd25<\/p>\n<div id=\"3878-4437-a5e15f73898c\" class=\"display-card article article-card small no-badge active-content\" data-include-community-rating=\"false\" data-nosnippet=\"\">\n<figure>     <img decoding=\"async\" style=\"height: auto;max-width: 100%\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/1742761129_424_10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" alt=\"OBS Studio on the desktop\" width=\"1663\" height=\"1040\" data-img-url=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/1742761129_424_10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" title=\"\"><\/figure>\n<div class=\"w-display-card-content regular article-block\">\n<h2 class=\"display-card-excerpt\">4. Start capturing or streaming live using this free and open source program.<\/h2>\n<p>Ever wanted to extract a single frame from a video, maybe for a thumbnail or to capture a great shot? FFmpeg makes this task very simple. \ud83d\udcf8<\/p>\n<p>For example, let&#039;s say you want to extract an image every second from a video and save them as image files. To do this, run:<\/p>\n<pre>ffmpeg -i input.mp4 -r 1 imagen-%04d.jpg<\/pre>\n<figure>     <img decoding=\"async\" style=\"height: auto;max-width: 100%\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/1742761129_434_10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" alt=\"Extracted images showing in a specific folder.\" width=\"830\" height=\"469\" data-img-url=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/1742761129_434_10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" title=\"\"><\/figure>\n<p>Here, the option <code>-r 1<\/code> Sets the capture rate to one frame per second. It extracts one frame from every second of the video. You can adjust this number to capture images more or less frequently. You can also change JPG to PNG or another image format if needed. \ud83d\uddbc\ufe0f<\/p>\n<h2><span class=\"item-num\">5 . <\/span>Convert Images into a Video<\/h2>\n<p>FFmpeg can not only extract images, but also assemble a series of images into a video. Whether you want to create a slideshow, an animation, or a time-lapse, FFmpeg simplifies the process. \ud83c\udf9e\ufe0f<\/p>\n<p>Before converting, make sure your images are named sequentially (e.g., image-0001.jpg, image-0002.jpg). Now, convert these sequential images into a video with the following command:<\/p>\n<pre>ffmpeg -framerate 1 -i imagen-%04d.jpg -c:v libx264 -r30 output.mp4<\/pre>\n<p>Here, we set the frame rate option to 1 FPS, which means if we have 5 frames and we prefer a 5-second video, the frame rate will be 1. You can adjust the frame rate value to speed up or slow down the video.<\/p>\n<p>The above command converts images into a video without <a title=\"How to add music to your WhatsApp status\" href=\"https:\/\/mastertrend.info\/en\/music-to-whatsapp-status\/\" target=\"_blank\" rel=\"noopener\" data-wpil-monitor-id=\"4782\">add music<\/a>. But what if you want to include music in your video? Run this, replacing <code>music.mp3<\/code> with the audio file you want:<\/p>\n<pre>ffmpeg -framerate 1 -i imagen_%04d.jpg -i music.mp3 -c:v libx264 -r30 -shortest slideshow.mp4<\/pre>\n<p>Here, the option <code>-shortest<\/code> Makes the video the same length as the shortest entry. So, if the audio is longer than the presentation, the video will match the length of the slideshow. \ud83c\udfb6<\/p>\n<div id=\"6611-43ef-b9bf40b11803\" class=\"display-card article article-card small no-badge active-content\" data-include-community-rating=\"false\" data-nosnippet=\"\">\n<figure>     <img decoding=\"async\" style=\"height: auto;max-width: 100%\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/1742761129_671_10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" alt=\"How to quickly resize, convert, and modify images from the Linux terminal\" width=\"650\" height=\"285\" data-img-url=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/1742761129_671_10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.png\" title=\"\"><\/figure>\n<div class=\"w-display-card-content regular article-block\">\n<p class=\"display-card-excerpt\">ImageMagick is a set of command-line utilities for modifying and working with images.<\/p>\n<h2><span class=\"item-num\">6 . <\/span>Convert a Video to MP3 or GIF<\/h2>\n<p>One of FFmpeg&#039;s most powerful features is converting videos to different formats, such as converting video to MP3 or creating a GIF animation from a video. \ud83d\udd04<\/p>\n<p>To extract audio from a video, use the option <strong>-vn<\/strong>, which forces FFmpeg to discard the video stream and convert only the audio to MP3:<\/p>\n<pre>ffmpeg -i input.mp4 -vn -acodec libmp3lame output.mp3<\/pre>\n<p>You can also change <code>output.mp3<\/code> a <code>output.wav<\/code> or other audio format if you need it.<\/p>\n<p>To convert video to GIF, use:<\/p>\n<pre>ffmpeg -i sample_video.mp4 output.gif<\/pre>\n<p>You can also extract specific parts of the video and turn them into GIFs with this:<\/p>\n<pre>ffmpeg -ss 30.0 -t 2.1 -i sample_video.mp4 output.gif<\/pre>\n<p>This command trims 2.1 seconds from the beginning of the video length at 00:30 and converts it into a GIF. \ud83c\udf89<\/p>\n<h2><span class=\"item-num\">7 . <\/span>Add Subtitles to a Movie<\/h2>\n<p>Adding subtitles to a movie can be very useful, especially when watching content in a different language. FFmpeg simplifies the process of adding subtitles to your videos. \ud83c\udfac<\/p>\n<p>First, get a subtitle file, typically with an SRT extension. For example, if you have a subtitle file (such as <code>subtitles.srt<\/code>) and a video (<code>input.mp4<\/code>), you can permanently embed subtitles into your video using:<\/p>\n<pre>ffmpeg -i input.mp4 -vf &quot;subtitles=subtitles.srt&quot; output.mp4<\/pre>\n<p>This command permanently embeds subtitles, ensuring they remain visible and cannot be turned off.<\/p>\n<p>If you prefer optional subtitles that viewers can turn on or off, use this:<\/p>\n<pre>ffmpeg -i input.mp4 -i subtitles.srt -c copy -c:s mov_text output.mp4<\/pre>\n<p>This command keeps subtitles as a separate track, preserving the original video quality. \ud83d\udcdd<\/p>\n<h2><span class=\"item-num\">8 . <\/span>Reconstructing a Video&#039;s Index without Transcoding<\/h2>\n<p>Sometimes a video may appear glitchy\u2014it may skip, freeze, or prevent fast-forwarding or rewinding. Often, this problem arises from a corrupted video index. To fix this, you may need to rebuild the index without re-encoding the video.<\/p>\n<p>Fortunately, FFmpeg can often repair the index without altering the video itself. This process, known as remuxing, is fast because it preserves the original video and audio quality while correcting the file structure.<\/p>\n<p>To rebuild a video index, run:<\/p>\n<pre>ffmpeg -i input.mp4 -c copy -copyts output.mp4<\/pre>\n<p>Here, the option <code>-c copy<\/code> tells FFmpeg to copy the video and audio streams as is, preserving their quality and speeding up the process. The option <code>-copyts<\/code> ensures that timing information is copied correctly, which is critical for smooth playback.<\/p>\n<p>This approach is <a title=\"New Microsoft Outlook: 12 Useful Tips for Using It\" href=\"https:\/\/mastertrend.info\/en\/new-microsoft-outlook\/\" target=\"_blank\" rel=\"noopener\" data-wpil-monitor-id=\"4786\">Useful to quickly check and repair your file<\/a> video. However, if the problem persists, the video may be severely damaged. \u26a0\ufe0f<\/p>\n<h2><span class=\"item-num\">9 . <\/span>Resize Videos<\/h2>\n<p>Resizing videos is one of FFmpeg&#039;s most useful features. You can easily adjust the video dimensions to <a title=\"Security\" href=\"https:\/\/mastertrend.info\/en\/category\/security\/\" target=\"_blank\" rel=\"noopener\" data-wpil-monitor-id=\"4783\">social networks<\/a>, mobile screens, or to optimize storage. Smaller videos take up less space, upload more <a title=\"How to fix Bluetooth not working on Android: Quick solutions today! \ud83d\ude80\" href=\"https:\/\/mastertrend.info\/en\/bluetooth-not-working-on-android\/\" target=\"_blank\" rel=\"noopener\" data-wpil-monitor-id=\"4787\">fast and work best on connections<\/a> slow. \ud83d\udccf<\/p>\n<p>To scale a video to specific dimensions (for example, 1280\u00d7720), use:<\/p>\n<pre>ffmpeg -i input.mp4 -vf scale=1280:720 output.mp4<\/pre>\n<p>If you want FFmpeg to maintain the aspect ratio automatically, specify only one dimension or use expressions:<\/p>\n<pre>ffmpeg -i input.mp4 -vf scale=640:-1 output.mp4<\/pre>\n<p>This sets the width to 640 pixels, and FFmpeg calculates the appropriate height to preserve the aspect ratio. However, keep in mind that scaling down can decrease quality, so choose resolutions carefully.<\/p>\n<h2><span class=\"item-num\">10 . <\/span>Trim and Cut Videos<\/h2>\n<p>Trimming a video allows you to extract only the necessary sections without compromising quality. This is perfect for removing unwanted intros, endings, or any other errors. \u2702\ufe0f<\/p>\n<p>For example, to extract a 20-second segment starting from 10 seconds into the video, run:<\/p>\n<pre>ffmpeg -i input.mp4 -ss 00:00:10 -to 00:00:30 -c copy output_trimmed.mp4<\/pre>\n<p>Here, <code>-ss 00:00:10<\/code> tells FFmpeg to start at second 10, while <code>-to 00:00:30<\/code> stops the video at second 30. Also, the option <code>-c copy<\/code> ensures that video and audio are copied without re-encoding, making the process much faster while preserving the original quality.<\/p>\n<p>Crop removes unnecessary edges or zooms in on the most important part of a video. To crop a video to 640x480 pixels, starting from the top left corner, do this:<\/p>\n<pre>ffmpeg -i input.mp4 -vf &quot;crop=640:480:0:0&quot; output_cropped.mp4<\/pre>\n<p>The cut filter takes four values: width, height, and the x and y coordinates of where the cut should begin. In this case, the width and height are set to 640x480, and <code>0:0<\/code> Ensure the crop starts from the top left corner of the original video. \ud83c\udfa5<\/p>\n<div id=\"8ef2-4db0-9a0ff5c758b0\" class=\"display-card article article-card small no-badge active-content\" data-include-community-rating=\"false\" data-nosnippet=\"\">\n<figure>     <img decoding=\"async\" style=\"height: auto;max-width: 100%\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.jpg\" alt=\"A traffic cone that resembles the VLC media player icon.\" width=\"1200\" height=\"675\" data-img-url=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/03\/10-trucos-que-puedes-hacer-con-FFmpeg-en-Linux.jpg\" title=\"\"><\/figure>\n<div class=\"w-display-card-content regular article-block\">\n<hr \/>\n<p>By practicing and learning these FFmpeg tricks, you can increase your productivity and optimize your <a title=\"How to choose a CPU with the right TDP\" href=\"https:\/\/mastertrend.info\/en\/cpu-with-the-appropriate-tdp\/\" target=\"_blank\" rel=\"noopener\" data-wpil-monitor-id=\"4780\">workload<\/a> easily. And remember\u2014this is just the beginning. There&#039;s a lot in FFmpeg waiting to be explored, so dive in and keep experimenting! \ud83d\ude80<\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>FFmpeg on Linux: Get the most out of the terminal with these 10 video tricks. \ud83d\udcbb\ud83c\udfac Transform your files easily! \ud83d\ude80\u2728<\/p>","protected":false},"author":1,"featured_media":39021,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ai_generated_summary":"","iawp_total_views":25,"jnews-multi-image_gallery":[],"jnews_single_post":[],"jnews_primary_category":[],"jnews_social_meta":[],"jnews_review":[],"enable_review":"","type":"","name":"","summary":"","brand":"","sku":"","good":[],"bad":[],"score_override":"","override_value":"","rating":[],"price":[],"jnews_override_counter":[],"footnotes":""},"categories":[82],"tags":[1445,1558,1618],"class_list":["post-39020","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-software","tag-evergreencontent","tag-techtips","tag-tecnologia"],"_links":{"self":[{"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/posts\/39020","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/comments?post=39020"}],"version-history":[{"count":0,"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/posts\/39020\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/media\/39021"}],"wp:attachment":[{"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/media?parent=39020"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/categories?post=39020"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/tags?post=39020"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}