{"id":4617,"date":"2020-03-03T17:15:21","date_gmt":"2020-03-03T15:15:21","guid":{"rendered":"https:\/\/www.systemcodegeeks.com\/?p=4617"},"modified":"2020-03-03T15:22:42","modified_gmt":"2020-03-03T13:22:42","slug":"ffmpeg-cheatsheet","status":"publish","type":"post","link":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/","title":{"rendered":"FFmpeg Cheatsheet"},"content":{"rendered":"\n<p><a href=\"https:\/\/www.ffmpeg.org\/\">FFmpeg<\/a> is a great command-line tool for dealing with audio and video files. Here are some useful commands:<\/p>\n\n\n\n<p><b><span>1. Reduce the size of a file<\/span><\/b><\/p>\n\n\n\n<p>Try passing the file straight through <code>ffmpeg<\/code> and check if the size reduces:<\/p>\n\n\n\n<div>\n<div id=\"highlighter_869800\" class=\"syntaxhighlighter  java\">\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td class=\"gutter\">\n<div class=\"line number1 index0 alt2\">1<\/div>\n<\/td>\n<td class=\"code\">\n<div class=\"container\">\n<div class=\"line number1 index0 alt2\"><code class=\"java plain\">ffmpeg -i input.mp4 output.mp4<\/code><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n\n\n\n<p>To reduce the size further, scale the video to half the width and height:<\/p>\n\n\n\n<div>\n<div id=\"highlighter_881170\" class=\"syntaxhighlighter  java\">\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td class=\"gutter\">\n<div class=\"line number1 index0 alt2\">1<\/div>\n<\/td>\n<td class=\"code\">\n<div class=\"container\">\n<div class=\"line number1 index0 alt2\"><code class=\"java plain\">ffmpeg -i input.mp4 -vf <\/code><code class=\"java string\">\"scale=iw\/2:ih\/2\"<\/code> <code class=\"java plain\">output.mp4<\/code><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n\n\n\n<p><b><span>2. Convert a MOV file to MP4<\/span><\/b><\/p>\n\n\n\n<div>\n<div id=\"highlighter_103157\" class=\"syntaxhighlighter  java\">\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td class=\"gutter\">\n<div class=\"line number1 index0 alt2\">1<\/div>\n<\/td>\n<td class=\"code\">\n<div class=\"container\">\n<div class=\"line number1 index0 alt2\"><code class=\"java plain\">ffmpeg -i input.mov -vcodec h264 -acodec aac -strict -<\/code><code class=\"java value\">2<\/code> <code class=\"java plain\">out.mp4<\/code><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n\n\n\n<p><b><span>3. Create a video from an image by panning across it<\/span><\/b><\/p>\n\n\n\n<p>If you have a landscape image, first set its height to 1600px, preserving aspect ratio (using an image editor such as <a href=\"https:\/\/www.irfanview.com\">IrfanView<\/a>). Then run the following command to create a video which pans across the image from left to right:<\/p>\n\n\n\n<div>\n<div id=\"highlighter_62696\" class=\"syntaxhighlighter  java\">\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td class=\"gutter\">\n<div class=\"line number1 index0 alt2\">1<\/div>\n<\/td>\n<td class=\"code\">\n<div class=\"container\">\n<div class=\"line number1 index0 alt2\"><code class=\"java plain\">ffmpeg -loop <\/code><code class=\"java value\">1<\/code> <code class=\"java plain\">-i input.jpg -vf crop=<\/code><code class=\"java value\">1200<\/code><code class=\"java plain\">:ih:<\/code><code class=\"java string\">'min((iw\/10)*t,9*iw\/10)'<\/code><code class=\"java plain\">:<\/code><code class=\"java value\">0<\/code> <code class=\"java plain\">-t <\/code><code class=\"java value\">5<\/code> <code class=\"java plain\">out.mp4<\/code><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n\n\n\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>\n<p>Published on System Code Geeks with permission by Fahd Shariff, partner at our <a href=\"\/\/www.systemcodegeeks.com\/join-us\/scg\/\" target=\"_blank\" rel=\"noopener noreferrer\">SCG program<\/a>. See the original article here: <a href=\"http:\/\/fahdshariff.blogspot.com\/2020\/02\/ffmpeg-cheatsheet.html\" target=\"_blank\" rel=\"noopener noreferrer\">FFmpeg Cheatsheet<\/a><\/p>\n<p>Opinions expressed by System Code Geeks contributors are their own.<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>FFmpeg is a great command-line tool for dealing with audio and video files. Here are some useful commands: 1. Reduce the size of a file Try passing the file straight through ffmpeg and check if the size reduces: 1 ffmpeg -i input.mp4 output.mp4 To reduce the size further, scale the video to half the width &hellip;<\/p>\n","protected":false},"author":6334,"featured_media":185,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[18],"tags":[],"class_list":["post-4617","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-shell-scripting"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>FFmpeg Cheatsheet - System Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Interested to learn about FFmpeg? Check our article talking about FFmpeg, a great command-line tool for dealing with audio and video files\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FFmpeg Cheatsheet - System Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Interested to learn about FFmpeg? Check our article talking about FFmpeg, a great command-line tool for dealing with audio and video files\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/\" \/>\n<meta property=\"og:site_name\" content=\"System Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/systemcodegeeks\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/fahd.shariff\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-03T15:15:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Fahd Shariff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@fahdshariff\" \/>\n<meta name=\"twitter:site\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fahd Shariff\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/\"},\"author\":{\"name\":\"Fahd Shariff\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/156e8f04814c2d7bdfe2c073d57d0415\"},\"headline\":\"FFmpeg Cheatsheet\",\"datePublished\":\"2020-03-03T15:15:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/\"},\"wordCount\":140,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg\",\"articleSection\":[\"Shell Scripting\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/\",\"name\":\"FFmpeg Cheatsheet - System Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg\",\"datePublished\":\"2020-03-03T15:15:21+00:00\",\"description\":\"Interested to learn about FFmpeg? Check our article talking about FFmpeg, a great command-line tool for dealing with audio and video files\",\"breadcrumb\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#primaryimage\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.systemcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Shell Scripting\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/shell-scripting\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"FFmpeg Cheatsheet\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"name\":\"System Code Geeks\",\"description\":\"Operating System Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/systemcodegeeks\",\"https:\/\/x.com\/systemcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/156e8f04814c2d7bdfe2c073d57d0415\",\"name\":\"Fahd Shariff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e94912b8512e11298fe1460c54c3dd906682ce369551cc41b5d27125ae0b9fa0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e94912b8512e11298fe1460c54c3dd906682ce369551cc41b5d27125ae0b9fa0?s=96&d=mm&r=g\",\"caption\":\"Fahd Shariff\"},\"description\":\"Fahd is a software engineer working in the financial services industry. He is passionate about technology and specializes in Java application development in distributed environments.\",\"sameAs\":[\"http:\/\/fahdshariff.blogspot.gr\/\",\"https:\/\/www.facebook.com\/fahd.shariff\",\"http:\/\/www.linkedin.com\/in\/fahdshariff\",\"https:\/\/x.com\/fahdshariff\"],\"url\":\"https:\/\/www.systemcodegeeks.com\/author\/fahd-shariff\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"FFmpeg Cheatsheet - System Code Geeks - 2026","description":"Interested to learn about FFmpeg? Check our article talking about FFmpeg, a great command-line tool for dealing with audio and video files","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:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/","og_locale":"en_US","og_type":"article","og_title":"FFmpeg Cheatsheet - System Code Geeks - 2026","og_description":"Interested to learn about FFmpeg? Check our article talking about FFmpeg, a great command-line tool for dealing with audio and video files","og_url":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/","og_site_name":"System Code Geeks","article_publisher":"https:\/\/www.facebook.com\/systemcodegeeks","article_author":"https:\/\/www.facebook.com\/fahd.shariff","article_published_time":"2020-03-03T15:15:21+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg","type":"image\/jpeg"}],"author":"Fahd Shariff","twitter_card":"summary_large_image","twitter_creator":"@fahdshariff","twitter_site":"@systemcodegeeks","twitter_misc":{"Written by":"Fahd Shariff","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#article","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/"},"author":{"name":"Fahd Shariff","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/156e8f04814c2d7bdfe2c073d57d0415"},"headline":"FFmpeg Cheatsheet","datePublished":"2020-03-03T15:15:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/"},"wordCount":140,"commentCount":2,"publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg","articleSection":["Shell Scripting"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/","url":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/","name":"FFmpeg Cheatsheet - System Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#primaryimage"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg","datePublished":"2020-03-03T15:15:21+00:00","description":"Interested to learn about FFmpeg? Check our article talking about FFmpeg, a great command-line tool for dealing with audio and video files","breadcrumb":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#primaryimage","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/ffmpeg-cheatsheet\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systemcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Shell Scripting","item":"https:\/\/www.systemcodegeeks.com\/category\/shell-scripting\/"},{"@type":"ListItem","position":3,"name":"FFmpeg Cheatsheet"}]},{"@type":"WebSite","@id":"https:\/\/www.systemcodegeeks.com\/#website","url":"https:\/\/www.systemcodegeeks.com\/","name":"System Code Geeks","description":"Operating System Developers Resource Center","publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.systemcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.systemcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/systemcodegeeks","https:\/\/x.com\/systemcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/156e8f04814c2d7bdfe2c073d57d0415","name":"Fahd Shariff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e94912b8512e11298fe1460c54c3dd906682ce369551cc41b5d27125ae0b9fa0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e94912b8512e11298fe1460c54c3dd906682ce369551cc41b5d27125ae0b9fa0?s=96&d=mm&r=g","caption":"Fahd Shariff"},"description":"Fahd is a software engineer working in the financial services industry. He is passionate about technology and specializes in Java application development in distributed environments.","sameAs":["http:\/\/fahdshariff.blogspot.gr\/","https:\/\/www.facebook.com\/fahd.shariff","http:\/\/www.linkedin.com\/in\/fahdshariff","https:\/\/x.com\/fahdshariff"],"url":"https:\/\/www.systemcodegeeks.com\/author\/fahd-shariff\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/4617","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/users\/6334"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/comments?post=4617"}],"version-history":[{"count":0,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/4617\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media\/185"}],"wp:attachment":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media?parent=4617"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/categories?post=4617"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/tags?post=4617"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}