{"id":1808,"date":"2023-10-17T12:24:51","date_gmt":"2023-10-17T11:24:51","guid":{"rendered":"https:\/\/hoganhost.com.ng\/blog\/?p=1808"},"modified":"2024-08-12T13:25:13","modified_gmt":"2024-08-12T12:25:13","slug":"install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh","status":"publish","type":"post","link":"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/","title":{"rendered":"Install and Use FFmpeg on Rocky Linux 9 \/ AlmaLinux 9 server using ssh"},"content":{"rendered":"<div class=\"td-pb-row\">\n<div class=\"td-pb-span12\">\n<div class=\"td-post-header\">\n<header class=\"td-post-title\"><img fetchpriority=\"high\" decoding=\"async\" class=\"alignleft wp-image-1815\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh-300x300.jpg\" alt=\"\" width=\"354\" height=\"354\" srcset=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh-300x300.jpg 300w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh-1024x1024.jpg 1024w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh-150x150.jpg 150w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh-768x768.jpg 768w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh.jpg 1080w\" sizes=\"(max-width: 354px) 100vw, 354px\" \/>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p class=\"entry-title\"><span style=\"font-size: 16px;\">FFmpeg is a popular tool among people who frequently handle videos. If you haven\u2019t interacted with it, FFmpeg is a free and open-source tool with a set of libraries used for transcoding audio, video, and any other multimedia files\/streams. It supports several audio\/video codecs that include H.264, H.265, VP8, VP9, AAC, OPUS e.t.c MP4, FLV, MKV, TS, WEBM, MP3 file formats as well as HTTP\/HTTPS, TCP, UDP, RTMP, RTSP, HLS streaming protocols.<\/span><\/p>\n<\/header>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"td-pb-row\">\n<div class=\"td-pb-span8 td-main-content\" role=\"main\">\n<div class=\"td-ss-main-content\">\n<div class=\"td-post-content tagdiv-type\">\n<p>Other features associated with FFmpeg are:<span id=\"ezoic-pub-ad-placeholder-165\" class=\"ezoic-adpicker-ad\"><\/span><\/p>\n<ul>\n<li>It supports several common and uncommon image, audio, and video formats.<\/li>\n<li>It supports media and interfaces such as compact discs, Advanced Linux Sound Architecture (ALSA), OpenAL (input only), Windows DirectShow e.t.c<\/li>\n<li>It supports filters that include; Resampling, Pass\/Stop filters, Equalizer, Dynamics, Distortion, Filtering e.t.c<\/li>\n<\/ul>\n<p>The libraries shipped with FFmpeg are:<\/p>\n<div class=\"td-g-rec td-g-rec-id-content_inline tdi_2 td_block_template_1\"><\/div>\n<ul>\n<li><strong>Libavutil<\/strong>: utility library to aid portable multimedia programming<\/li>\n<li><strong>Libavfilter<\/strong>: used for enhancing and editing filters through a Gstreamer-like filter graph.<\/li>\n<li><strong>Libavdevice<\/strong>: provides a generic framework for grabbing from and rendering to many common multimedia input\/output devices<\/li>\n<li><strong>Libavcodec<\/strong>: an audio\/video codec library<\/li>\n<li><strong>Libavformat<\/strong>\u00a0(Lavf): an audio\/video container mux<\/li>\n<li><strong>Libswscale<\/strong>: performs highly optimized image scaling and colorspace and pixel format conversion operations.<\/li>\n<li><strong>Libswresample<\/strong>: performs highly optimized audio resampling, re-matrixing, and sample format conversion operations.<\/li>\n<\/ul>\n<p>Let\u2019s plunge in and learn how to install and use FFmpeg on Rocky Linux 9 \/ AlmaLinux 9.<span id=\"ezoic-pub-ad-placeholder-173\" class=\"ezoic-adpicker-ad\"><\/span><\/p>\n<h2 class=\"wp-block-heading\">1. Add the RPM Fusion Repository<\/h2>\n<p>By default, the FFmpeg is not provided in the Rocky Linux 9 \/ AlmaLinux 9 repositories. We need to add an extra RPM Fusion repository.<\/p>\n<p>First, enable the EPEL repository and PowerTools(CRB)<span id=\"ezoic-pub-ad-placeholder-167\" class=\"ezoic-adpicker-ad\"><\/span><\/p>\n<pre class=\"wp-block-code\"><code>sudo dnf install epel-release\r\nsudo dnf config-manager --set-enabled crb<\/code><\/pre>\n<p>Now add the RPM Fusion repo on Rocky Linux 9 \/ AlmaLinux 9:<\/p>\n<pre class=\"wp-block-code\"><code>sudo dnf install --nogpgcheck https:\/\/mirrors.rpmfusion.org\/free\/el\/rpmfusion-free-release-$(rpm -E %rhel).noarch.rpm -y\r\nsudo dnf install --nogpgcheck https:\/\/mirrors.rpmfusion.org\/nonfree\/el\/rpmfusion-nonfree-release-$(rpm -E %rhel).noarch.rpm -y<\/code><\/pre>\n<h2 class=\"wp-block-heading\">2. Install FFmpeg on Rocky Linux 9 \/ AlmaLinux 9<\/h2>\n<p>Now, FFmpeg can be installed on Rocky Linux 9 \/ AlmaLinux 9 by executing the command:<\/p>\n<pre class=\"wp-block-code\"><code>sudo dnf install ffmpeg ffmpeg-devel<\/code><\/pre>\n<p>Dependency Tree:<\/p>\n<pre class=\"wp-block-code\"><code>Dependencies resolved.\r\n================================================================================\r\n Package           Arch   Version                  Repository              Size\r\n================================================================================\r\nInstalling:\r\n ffmpeg            x86_64 5.0.1-2.el9              rpmfusion-free-updates 1.6 M\r\n ffmpeg-devel      x86_64 5.0.1-2.el9              rpmfusion-free-updates 758 k\r\nInstalling dependencies:\r\n SDL2              x86_64 2.0.20-2.el9             appstream              606 k\r\n ffmpeg-libs       x86_64 5.0.1-2.el9              rpmfusion-free-updates 7.6 M\r\n intel-mediasdk    x86_64 21.3.5-1.el9             epel                   2.6 M\r\n libaom            x86_64 3.2.0-4.el9              epel                   1.6 M\r\n libass            x86_64 0.15.2-1.el9             epel                   111 k\r\n libavdevice       x86_64 5.0.1-2.el9              rpmfusion-free-updates  72 k\r\n libbluray         x86_64 1.3.1-1.el9              epel                   170 k\r\n libdav1d          x86_64 0.9.2-1.el9              epel                   473 k\r\n libdecor          x86_64 0.1.0-3.el9              appstream               40 k\r\n libjxl            x86_64 0.6.1-8.el9              epel                   899 k\r\n libmodplug        x86_64 1:0.8.9.0-13.el9         epel                   171 k\r\n libmysofa         x86_64 1.2.1-1.el9              epel                    42 k\r\n libopenmpt        x86_64 0.6.4-1.el9              epel                   638 k\r\n libudfread        x86_64 1.1.2-2.el9              epel                    33 k\r\n libva             x86_64 2.11.0-4.el9             appstream              102 k\r\n libvdpau          x86_64 1.4-6.el9                appstream               16 k\r\n libvmaf           x86_64 2.3.0-2.el9              epel                   177 k\r\n ocl-icd           x86_64 2.2.13-4.el9             appstream               51 k\r\n openal-soft       x86_64 1.19.1-16.el9            appstream              533 k\r\n opencore-amr      x86_64 0.1.5-14.el9             rpmfusion-free-updates 173 k\r\n soxr              x86_64 0.1.3-11.el9             epel                    82 k\r\n srt-libs          x86_64 1.4.4-1.el9              epel                   291 k\r\n svt-av1-libs      x86_64 0.8.7-2.el9              epel                   1.5 M\r\n vapoursynth-libs  x86_64 57-1.el9                 epel                   503 k\r\n vid.stab          x86_64 1.1.0-14.20201110gitf9166e9.el9\r\n                                                   epel                    49 k\r\n vo-amrwbenc       x86_64 0.1.3-16.el9             rpmfusion-free-updates  76 k\r\n x264-libs         x86_64 0.163-5.20210613git5db6aa6.el9\r\n                                                   rpmfusion-free-updates 682 k\r\n x265-libs         x86_64 3.5-3.el9                rpmfusion-free-updates 1.2 M\r\n xvidcore          x86_64 1.3.7-7.el9              rpmfusion-free-updates 254 k\r\n zimg              x86_64 3.0.3-1.el9              epel                   275 k\r\n zvbi              x86_64 0.2.35-15.el9            epel                   413 k\r\nInstalling weak dependencies:\r\n jxl-pixbuf-loader x86_64 0.6.1-8.el9              epel                    53 k\r\n vmaf-models       noarch 2.3.0-2.el9              epel                   227 k\r\n\r\nTransaction Summary\r\n================================================================================\r\nInstall  35 Packages\r\n\r\nTotal download size: 24 M\r\nInstalled size: 104 M\r\nIs this ok [y\/N]: <mark class=\"has-inline-color has-luminous-vivid-orange-color\">y<\/mark><\/code><\/pre>\n<p>Once the installation is successful, check the installed version.<\/p>\n<pre class=\"wp-block-code\"><code>$ <mark class=\"has-inline-color has-pale-pink-color\">ffmpeg -version<\/mark>\r\nffmpeg version 5.0.1 Copyright (c) 2000-2022 the FFmpeg developers\r\nbuilt with gcc 11 (GCC)\r\n.......<\/code><\/pre>\n<p>You can also get detailed information with the command:<\/p>\n<pre class=\"wp-block-code\"><code>$<mark class=\"has-inline-color has-pale-pink-color\"> rpm -qi ffmpeg<\/mark>\r\nName        : ffmpeg\r\nVersion     : 5.0.1\r\nRelease     : 2.el9\r\nArchitecture: x86_64\r\nInstall Date: Sun 07 Aug 2022 11:24:47 AM CEST\r\nGroup       : Unspecified\r\nSize        : 2217452\r\nLicense     : GPLv3+\r\nSignature   : RSA\/SHA256, Wed 06 Apr 2022 02:34:41 PM CEST, Key ID 7403ea33296458f3\r\nSource RPM  : ffmpeg-5.0.1-2.el9.src.rpm\r\nBuild Date  : Tue 05 Apr 2022 04:03:57 PM CEST\r\nBuild Host  : buildvm-02.online.rpmfusion.net\r\nPackager    : RPM Fusion\r\nVendor      : RPM Fusion\r\nURL         : http:\/\/ffmpeg.org\/\r\nSummary     : Digital VCR and streaming server\r\nDescription :\r\nFFmpeg is a complete and free Internet live audio and video\r\nbroadcasting solution for Linux\/Unix. It also includes a digital\r\nVCR. It can encode in real time in many formats including MPEG1 audio\r\nand video, MPEG4, h263, ac3, asf, avi, real, mjpeg, and flash.<\/code><\/pre>\n<h2 class=\"wp-block-heading\">3. Use FFmpeg on Rocky Linux 9 \/ AlmaLinux 9<\/h2>\n<p>Once installed, as shown above, you can now use FFmpeg to perform a variety of functions. In this guide, we will cover the basic FFmpeg use.<\/p>\n<h3 class=\"wp-block-heading\">A. Getting Video Information<\/h3>\n<p>To get the video information with FFmpeg, use\u00a0<strong><em>-i<\/em><\/strong>\u00a0flag.<span id=\"ezoic-pub-ad-placeholder-169\" class=\"ezoic-adpicker-ad\"><\/span><\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -i example-video.mp4 -hide_banner<\/code><\/pre>\n<p>The\u00a0<strong><em>-hide_banner<\/em><\/strong> option is used to hide any unnecessary information about the video.<\/p>\n<p>For example:<\/p>\n<p><img decoding=\"async\" class=\"alignleft wp-image-1811\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/FFmpeg-on-Rocky-Linux-9AlmaLinux-9-300x97.webp\" alt=\"\" width=\"696\" height=\"225\" srcset=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/FFmpeg-on-Rocky-Linux-9AlmaLinux-9-300x97.webp 300w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/FFmpeg-on-Rocky-Linux-9AlmaLinux-9-1024x330.webp 1024w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/FFmpeg-on-Rocky-Linux-9AlmaLinux-9-768x247.webp 768w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/FFmpeg-on-Rocky-Linux-9AlmaLinux-9.webp 1264w\" sizes=\"(max-width: 696px) 100vw, 696px\" \/><\/p>\n<h3 class=\"wp-block-heading\">B. Basic Video\/Audio conversion<\/h3>\n<p>When converting files using FFmpeg, you need to specify the input and output files. Normally, the input file format is automatically detected and the output guessed depending on the provided extension.<\/p>\n<ul>\n<li><strong>Convert Video files<\/strong><\/li>\n<\/ul>\n<p>You can convert videos from one format to the other. For example, converting an MP4 video file to MOV format, use the command with the syntax:<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -i input-video.mp4 output-video.mov<\/code><\/pre>\n<p>For example:<\/p>\n<p>Once executed, you will have an output file with the desired extension\/format.<\/p>\n<ul>\n<li><strong>Convert audio files<\/strong><\/li>\n<\/ul>\n<p>You can also use FFmpeg to convert audio files from one format to the other. The command has the input file format and the output file format. For example:<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -i input.mp3 output.ogg<\/code><\/pre>\n<h3 class=\"wp-block-heading\">C. Conversion using codec<\/h3>\n<p>The above conversions can also be performed using a specific codec. The codec to be used is specified with the<strong>\u00a0-c\u00a0<\/strong>flag. For example:<span id=\"ezoic-pub-ad-placeholder-187\" class=\"ezoic-adpicker-ad\"><\/span><\/p>\n<ul>\n<li><strong>Convert Videos<\/strong><\/li>\n<\/ul>\n<p>Converting a video file from mp4 to WebM with the\u00a0<strong><em>libvpx<\/em><\/strong>\u00a0video codec and\u00a0<strong><em>libvorbis<\/em><\/strong>\u00a0audio codec;<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -i input.mp4 -c:v libvpx -c:a libvorbis output.webm<\/code><\/pre>\n<ul>\n<li><strong>Convert audio<\/strong><\/li>\n<\/ul>\n<p>Another example is converting an mp3 audio file to Ogg with\u00a0<strong><em>libopus<\/em><\/strong>;<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -i input.mp3 -c:a libopus output.ogg<\/code><\/pre>\n<ul>\n<li><strong>Extract Audio from Video<\/strong><\/li>\n<\/ul>\n<p>You can also extract an audio file from a video using codecs:<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -i video.mp4 -c:a libmp3lame -q:a 0 -map a output_file.mp3<\/code><\/pre>\n<p>For example:<\/p>\n<p><img decoding=\"async\" class=\"alignleft wp-image-1812\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/FFmpeg-on-Rocky-Linux-9AlmaLinux-9-2-300x172.webp\" alt=\"\" width=\"776\" height=\"445\" srcset=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/FFmpeg-on-Rocky-Linux-9AlmaLinux-9-2-300x172.webp 300w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/FFmpeg-on-Rocky-Linux-9AlmaLinux-9-2-1024x588.webp 1024w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/FFmpeg-on-Rocky-Linux-9AlmaLinux-9-2-768x441.webp 768w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/FFmpeg-on-Rocky-Linux-9AlmaLinux-9-2.webp 1280w\" sizes=\"(max-width: 776px) 100vw, 776px\" \/><\/p>\n<figure class=\"wp-block-image size-large\"><\/figure>\n<h3 class=\"wp-block-heading\">D. Video Size Processing<\/h3>\n<p>At times, you may need a specific video size in order to upload\/use it. Instead of downloading any other trimming tool, you can use FFmpeg to achieve this. All you need to do is run the command with the below parameters:<span id=\"ezoic-pub-ad-placeholder-188\" class=\"ezoic-adpicker-ad\"><\/span><\/p>\n<div id=\"google_ads_iframe_\/1254144,21789414456\/computingforgeeks_com-large-mobile-banner-2_0__container__\"><\/div>\n<ul>\n<li><strong><em>-ss<\/em><\/strong>: sets the start time of the clip<\/li>\n<li><strong><em>-to<\/em><\/strong>: specifies the end time<\/li>\n<li><strong>-c<\/strong>: specifies the codec to be used<\/li>\n<li><strong>-t<\/strong>: can be used to set the duration of the clip<\/li>\n<\/ul>\n<p>From the above parameters, you can generate a command to trim a video.F For example<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -i example-video.mp4 -ss 00:02:25 -to 00:03:50 -c copy output-trim.mp4<\/code><\/pre>\n<h3 class=\"wp-block-heading\">E. Advanced Video Editing with FFmpeg<\/h3>\n<p>Aside from conversion and trimming, FFmpeg can be used to edit videos as desired.<\/p>\n<h4 class=\"wp-block-heading\">Scaling Videos<\/h4>\n<p>To scale a video with FFmpeg, use the command with the syntax:<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -i example-video.mp4 -vf scale=1920:1080 output-scale.mp4<\/code><\/pre>\n<p>In the above command:<\/p>\n<ul>\n<li><strong>-vf<\/strong>: specifies the video filter used on the video<\/li>\n<li><strong>scale<\/strong>: sets the scale sizes needed on the output video.<\/li>\n<\/ul>\n<h4 class=\"wp-block-heading\">Combine multiple videos<\/h4>\n<p>You can use FFmpeg to combine a list of videos with the same codec. All you need to do is create a<strong>\u00a0.txt<\/strong>\u00a0file with the list of videos to be combined and use the command below to combine them;<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -f concat -i my-video-list.txt -c copy sum-output.mp4<\/code><\/pre>\n<p>In the above command, the\u00a0<strong><em>concat<\/em><\/strong>\u00a0parameter combines the files.<span id=\"ezoic-pub-ad-placeholder-189\" class=\"ezoic-adpicker-ad\"><\/span><\/p>\n<div id=\"google_ads_iframe_\/1254144,21789414456\/computingforgeeks_com-leader-2_0__container__\"><\/div>\n<h4 class=\"wp-block-heading\">Rotate Videos<\/h4>\n<p>To rotate a video with FFmpeg, use the command with the syntax:<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -i example-video.mp4 -vf \"transpose=2\" output-rotate.mp4<\/code><\/pre>\n<p>Where:<\/p>\n<ul>\n<li><strong>transpose=0<\/strong>: flips vertically(default)<\/li>\n<li><strong>transpose=1<\/strong>: rotates the video 90 degrees clockwise<\/li>\n<li><strong>transpose=2<\/strong>: rotates the video 90 degrees counterclockwise<\/li>\n<li><strong>transpose=3<\/strong>: Flips the video vertically<\/li>\n<\/ul>\n<p>For example, to rotate the video 180 degrees clockwise, you need to specify the transpose parameter twice:<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -i example-video.mp4 -vf \"transpose=2,transpose=2\" output-rotate.mp4<\/code><\/pre>\n<h4 class=\"wp-block-heading\">Create Animated GIFs<\/h4>\n<p>You can also convert a video into Animated GIFs. For example:<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -i example-video.mp4 output-gif.gif<\/code><\/pre>\n<p>You may need to customize the GIF using various parameters such as scaling e.t.c:<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -ss 00:01:15 -i example-video.mp4 -to 10 -r 10 -vf scale=250:-1 output-gif.gif<\/code><\/pre>\n<h4 class=\"wp-block-heading\">Extract Frames From a Video<\/h4>\n<p>It is also possible to extract frames from a video using FFmpeg. The below command can be used to extract\u00a0<strong><em>JPEG<\/em><\/strong>\u00a0frames every second from the desired input video:<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -i example-video.mp4 -r 1 image-%02d.jpeg<\/code><\/pre>\n<p>The output file will have two digits, for example, 01.jpeg, 02.jpeg e.t.c. It is also possible to have other formats such as\u00a0<strong><em>PNG<\/em><\/strong>,\u00a0<em><strong>BMP<\/strong><\/em>\u00a0e.t.c<\/p>\n<h2 class=\"wp-block-heading\">Final Thoughts<\/h2>\n<p>From this guide, you are now convinced that FFmpeg is a nifty tool that requires no deep knowledge\/professionalism to use. There are many other use cases and examples not captured in this guide. Explore them on your own.<span style=\"font-size: 16px;\">\u00a0<\/span><i class=\"td-icon-font td-icon-linkedin\" style=\"font-weight: inherit;\"><\/i><span style=\"font-size: 16px;\">\u00a0<\/span><\/p>\n<p>Kindly check out our web hosting service <a href=\"https:\/\/hoganhost.com.ng\">hoganhost.com.ng<\/a><\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FFmpeg is a popular tool among people who frequently handle videos. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1815,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"default","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[62,57,11],"tags":[],"class_list":["post-1808","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-alma-linux","category-rocky-linux","category-server"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Install and Use FFmpeg on Rocky Linux 9 \/ AlmaLinux 9 server using ssh<\/title>\n<meta name=\"description\" content=\"FFmpeg is a popular tool among people who frequently handle videos. If you haven\u2019t interacted with it, FFmpeg is a free and open-source tool\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install and Use FFmpeg on Rocky Linux 9 \/ AlmaLinux 9 server using ssh\" \/>\n<meta property=\"og:description\" content=\"FFmpeg is a popular tool among people who frequently handle videos. If you haven\u2019t interacted with it, FFmpeg is a free and open-source tool\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/\" \/>\n<meta property=\"og:site_name\" content=\"HoganHost blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/HoganHost\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-17T11:24:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-12T12:25:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Abigal okon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hoganhostng\" \/>\n<meta name=\"twitter:site\" content=\"@hoganhostng\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abigal okon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/\"},\"author\":{\"name\":\"Abigal okon\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a\"},\"headline\":\"Install and Use FFmpeg on Rocky Linux 9 \/ AlmaLinux 9 server using ssh\",\"datePublished\":\"2023-10-17T11:24:51+00:00\",\"dateModified\":\"2024-08-12T12:25:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/\"},\"wordCount\":986,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh.jpg\",\"articleSection\":[\"Alma Linux\",\"Rocky Linux\",\"Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/\",\"name\":\"Install and Use FFmpeg on Rocky Linux 9 \/ AlmaLinux 9 server using ssh\",\"isPartOf\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh.jpg\",\"datePublished\":\"2023-10-17T11:24:51+00:00\",\"dateModified\":\"2024-08-12T12:25:13+00:00\",\"description\":\"FFmpeg is a popular tool among people who frequently handle videos. If you haven\u2019t interacted with it, FFmpeg is a free and open-source tool\",\"breadcrumb\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#primaryimage\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh.jpg\",\"contentUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh.jpg\",\"width\":1080,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hoganhost.com.ng\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install and Use FFmpeg on Rocky Linux 9 \/ AlmaLinux 9 server using ssh\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#website\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/\",\"name\":\"HoganHost blog\",\"description\":\"Keeping you connected to everything from HoganHost\",\"publisher\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hoganhost.com.ng\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#organization\",\"name\":\"HoganHost\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png\",\"contentUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png\",\"width\":466,\"height\":387,\"caption\":\"HoganHost\"},\"image\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/HoganHost\",\"https:\/\/x.com\/hoganhostng\",\"https:\/\/instagram.com\/officialhoganhost\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a\",\"name\":\"Abigal okon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g\",\"caption\":\"Abigal okon\"},\"sameAs\":[\"https:\/\/hoganhost.com.ng\/blog\"],\"url\":\"https:\/\/hoganhost.com.ng\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install and Use FFmpeg on Rocky Linux 9 \/ AlmaLinux 9 server using ssh","description":"FFmpeg is a popular tool among people who frequently handle videos. If you haven\u2019t interacted with it, FFmpeg is a free and open-source tool","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:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/","og_locale":"en_US","og_type":"article","og_title":"Install and Use FFmpeg on Rocky Linux 9 \/ AlmaLinux 9 server using ssh","og_description":"FFmpeg is a popular tool among people who frequently handle videos. If you haven\u2019t interacted with it, FFmpeg is a free and open-source tool","og_url":"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/","og_site_name":"HoganHost blog","article_publisher":"https:\/\/facebook.com\/HoganHost","article_published_time":"2023-10-17T11:24:51+00:00","article_modified_time":"2024-08-12T12:25:13+00:00","og_image":[{"width":1080,"height":1080,"url":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh.jpg","type":"image\/jpeg"}],"author":"Abigal okon","twitter_card":"summary_large_image","twitter_creator":"@hoganhostng","twitter_site":"@hoganhostng","twitter_misc":{"Written by":"Abigal okon","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#article","isPartOf":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/"},"author":{"name":"Abigal okon","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a"},"headline":"Install and Use FFmpeg on Rocky Linux 9 \/ AlmaLinux 9 server using ssh","datePublished":"2023-10-17T11:24:51+00:00","dateModified":"2024-08-12T12:25:13+00:00","mainEntityOfPage":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/"},"wordCount":986,"commentCount":0,"publisher":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#organization"},"image":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#primaryimage"},"thumbnailUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh.jpg","articleSection":["Alma Linux","Rocky Linux","Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/","url":"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/","name":"Install and Use FFmpeg on Rocky Linux 9 \/ AlmaLinux 9 server using ssh","isPartOf":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#primaryimage"},"image":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#primaryimage"},"thumbnailUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh.jpg","datePublished":"2023-10-17T11:24:51+00:00","dateModified":"2024-08-12T12:25:13+00:00","description":"FFmpeg is a popular tool among people who frequently handle videos. If you haven\u2019t interacted with it, FFmpeg is a free and open-source tool","breadcrumb":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#primaryimage","url":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh.jpg","contentUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2023\/10\/Install-and-Use-FFmpeg-on-Rocky-Linux-9-AlmaLinux-9-server-using-ssh.jpg","width":1080,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/hoganhost.com.ng\/blog\/server\/alma-linux\/install-and-use-ffmpeg-on-rocky-linux-9-almalinux-9-server-using-ssh\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hoganhost.com.ng\/blog\/"},{"@type":"ListItem","position":2,"name":"Install and Use FFmpeg on Rocky Linux 9 \/ AlmaLinux 9 server using ssh"}]},{"@type":"WebSite","@id":"https:\/\/hoganhost.com.ng\/blog\/#website","url":"https:\/\/hoganhost.com.ng\/blog\/","name":"HoganHost blog","description":"Keeping you connected to everything from HoganHost","publisher":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hoganhost.com.ng\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hoganhost.com.ng\/blog\/#organization","name":"HoganHost","url":"https:\/\/hoganhost.com.ng\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png","contentUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png","width":466,"height":387,"caption":"HoganHost"},"image":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/HoganHost","https:\/\/x.com\/hoganhostng","https:\/\/instagram.com\/officialhoganhost"]},{"@type":"Person","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a","name":"Abigal okon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g","caption":"Abigal okon"},"sameAs":["https:\/\/hoganhost.com.ng\/blog"],"url":"https:\/\/hoganhost.com.ng\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts\/1808","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/comments?post=1808"}],"version-history":[{"count":6,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts\/1808\/revisions"}],"predecessor-version":[{"id":1817,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts\/1808\/revisions\/1817"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/media\/1815"}],"wp:attachment":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/media?parent=1808"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/categories?post=1808"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/tags?post=1808"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}