{"id":66598,"date":"2023-04-20T18:01:07","date_gmt":"2023-04-20T10:01:07","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=66598"},"modified":"2025-04-21T19:14:45","modified_gmt":"2025-04-21T11:14:45","slug":"split-large-audio-mac","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/","title":{"rendered":"How to Split Audio File into Smaller Chunks on Your Mac"},"content":{"rendered":"<p>Have you ever had a long audio file that you wanted to break down into smaller, more manageable pieces? If so, you\u2019re in luck because it\u2019s actually a pretty easy task!<\/p>\n<p>In this article, I\u2019m going to show you how to use a simple bash script on your Mac to split your audio file into several smaller files, each around 8-10 minutes long, or basically any length you want. So let\u2019s get started!<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" alt=\"split large audio file\" height=\"1085\" src=\"https:\/\/assets.hongkiat.com\/uploads\/split-large-audio-mac\/split-audio-files.jpg?2\" width=\"1500\"><\/figure>\n<hr>\n<h2>Prerequisite<\/h2>\n<p>To get this to work, your Mac will need these two components installed, <a href=\"https:\/\/brew.sh\/\" rel=\"nofollow noopener\" target=\"_blank\">Homebrew<\/a> and <a href=\"https:\/\/ffmpeg.org\/\" rel=\"nofollow noopener\" target=\"_blank\">FFmpeg<\/a>.<\/p>\n<h4>How to Install Homebrew<\/h4>\n<p>Install Homebrew if you haven\u2019t already; you can do this by opening a Terminal window and entering the following command:<\/p>\n<pre>\r\n\/bin\/bash -c \"$(curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/HEAD\/install.sh)\"\r\n<\/pre>\n<h4>How to Install FFmpeg<\/h4>\n<p>Once Homebrew is installed, run the following command to install FFmpeg:<\/p>\n<pre>\r\nbrew install ffmpeg\r\n<\/pre>\n<p>Wait for the installation to complete, which it will take a while, and FFmpeg will be ready to use.<\/p>\n<hr>\n<h2>Splitting an Audio File into Smaller Chunks<\/h2>\n<p>With both Homebrew and FFmpeg installed, we are now ready to split the large audio file into smaller pieces.<\/p>\n<h3>Step 1<\/h3>\n<p>Open your favorite <a href=\"https:\/\/www.hongkiat.com\/blog\/free-code-editors-reviewed\/\">code editor<\/a>, paste the following bash script into it, and save it as \u2018<em>splitaudio.sh<\/em>\u2018.<\/p>\n<pre>\r\n#!\/bin\/bash\r\n\r\n# Define the path to the input MP3 file\r\ninput_file=\"file.mp3\"\r\n\r\n# Define the length of each chunk in seconds (480 seconds = 8 minutes)\r\nchunk_length=480\r\n\r\n# Create an output directory to store the chunks\r\nmkdir -p output\r\n\r\n# Use ffmpeg to split the MP3 file into chunks\r\nffmpeg -i \"$input_file\" -f segment -segment_time \"$chunk_length\" -c copy \"output\/chunk_%03d.mp3\"\r\n<\/pre>\n<h3>Step 2<\/h3>\n<p>Replace <code>file.mp3<\/code> in <code>input_file=\"file.mp3\"<\/code> with the name of your audio file.<\/p>\n<p><strong>Examples:<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td>Filename is \u2018<em>meeting.mp3<\/em>\u2018<\/td>\n<td>\n<pre>input_file=\"meeting.mp4\"<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td>Filename  is \u2018<em>meeting.mp3<\/em>\u2018, inside  \u2018<em>audio<\/em>\u2018 folder<\/td>\n<td>\n<pre>input_file=\"audio\/meeting.mp4\"<\/pre>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><code>Chunk_length<\/code> decides how long each output audio file should be, in seconds. If you want them to be <em>10<\/em> minutes each, then your <code>chunk_length<\/code> should be <em>600<\/em>.<\/p>\n<p>The final line in the code determines where each chunk of the audio file will be saved, and its file naming prefix.<\/p>\n<pre>\r\n\r\nffmpeg -i \"$input_file\" -f segment -segment_time \"$chunk_length\" -c copy \"output\/chunk_%03d.mp3\".\r\n<\/pre>\n<p>In our code, the output filename pattern <code>output\/chunk_%03d.mp3<\/code>, which will save each chunk in the \u2018<em>output<\/em>\u2018 directory with a filename of <em>chunk_001.mp3<\/em>, <em>chunk_002.mp3<\/em>, and so on.<\/p>\n<h3>Step 3<\/h3>\n<p>Make sure all changes in \u2018<em>splitaudio.sh<\/em>\u2018 is saved, if you haven\u2019t already. Next, we will need to make it executable.<\/p>\n<p>In Terminal, type in the following command and hit Enter.<\/p>\n<pre>\r\nchmod +x splitaudio.sh\r\n<\/pre>\n<h3>Step 4<\/h3>\n<p>Finally, run the bash script with the following command:<\/p>\n<pre>\r\n\/splitaudio.sh\r\n<\/pre>\n<p>That\u2019s it. You should have your audio file split into smaller chunks, and saved inside the output folder.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" alt=\"final result\" height=\"557\" src=\"https:\/\/assets.hongkiat.com\/uploads\/split-large-audio-mac\/final-result.jpg?2\" width=\"1183\"><\/figure>\n<hr>\n<h2>Frequently Asked Questions:<\/h2>\n<div class=\"faq\">\n<h3>How to change the length of each audio chunk?<\/h3>\n<p>Modify the <code>chunk_length<\/code> value in the script. For example, to make 5-minute chunks, set it to <code>chunk_length=300<\/code> (5 minutes \u00d7 60 seconds). For 15-minute chunks, use <code>chunk_length=900<\/code>.<\/p>\n<h3>Can I split audio files in different formats?<\/h3>\n<p>Yes, FFmpeg supports various audio formats including WAV, M4A, AAC, and FLAC. Just change the input filename extension (e.g., <code>input_file=\"audio.wav\"<\/code>) and output format in the last line (e.g., <code>\"output\/chunk_%03d.wav\"<\/code>).<\/p>\n<h3>Where can I find the split audio files?<\/h3>\n<p>The script creates an \u2018output\u2019 folder in the same directory where your script is located. All split audio chunks will be saved there with names like chunk_001.mp3, chunk_002.mp3, etc.<\/p>\n<h3>How to uninstall Homebrew?<\/h3>\n<ol>\n<li>Open the Terminal app on your Mac.<\/li>\n<li>Run this command: <code>\/bin\/bash -c \"$(curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/HEAD\/uninstall.sh)\"<\/code>.<\/li>\n<li>Follow the prompts and enter your password when asked.<\/li>\n<li>To verify the uninstallation, run <code>brew --version<\/code> \u2013 you should see a \u201ccommand not found\u201d error if successful.<\/li>\n<\/ol>\n<h3>How to uninstall FFmpeg?<\/h3>\n<p>Open the Terminal app on your Mac and run <code>brew uninstall ffmpeg<\/code>. Follow the prompts to complete the uninstallation process.<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>How to easily split audio files into smaller chunks on your Mac with our step-by-step guide, using simple bash script. <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3397],"tags":[3933],"topic":[],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Split Audio File into Smaller Chunks on Your Mac - Hongkiat<\/title>\n<meta name=\"description\" content=\"How to easily split audio files into smaller chunks on your Mac with our step-by-step guide, using simple bash script.\" \/>\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.hongkiat.com\/blog\/split-large-audio-mac\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Split Audio File into Smaller Chunks on Your Mac\" \/>\n<meta property=\"og:description\" content=\"How to easily split audio files into smaller chunks on your Mac with our step-by-step guide, using simple bash script.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-20T10:01:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-21T11:14:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/split-large-audio-mac\/split-audio-files.jpg?2\" \/>\n<meta name=\"author\" content=\"Hongkiat Lim\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hongkiat Lim\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/split-large-audio-mac\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/split-large-audio-mac\\\/\"},\"author\":{\"name\":\"Hongkiat Lim\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e3613a3bf757e4f67770f0b7a339edd0\"},\"headline\":\"How to Split Audio File into Smaller Chunks on Your Mac\",\"datePublished\":\"2023-04-20T10:01:07+00:00\",\"dateModified\":\"2025-04-21T11:14:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/split-large-audio-mac\\\/\"},\"wordCount\":530,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/split-large-audio-mac\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/split-large-audio-mac\\\/split-audio-files.jpg?2\",\"keywords\":[\"macOS\"],\"articleSection\":[\"Desktop\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/split-large-audio-mac\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/split-large-audio-mac\\\/\",\"name\":\"How to Split Audio File into Smaller Chunks on Your Mac - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/split-large-audio-mac\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/split-large-audio-mac\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/split-large-audio-mac\\\/split-audio-files.jpg?2\",\"datePublished\":\"2023-04-20T10:01:07+00:00\",\"dateModified\":\"2025-04-21T11:14:45+00:00\",\"description\":\"How to easily split audio files into smaller chunks on your Mac with our step-by-step guide, using simple bash script.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/split-large-audio-mac\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/split-large-audio-mac\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/split-large-audio-mac\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/split-large-audio-mac\\\/split-audio-files.jpg?2\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/split-large-audio-mac\\\/split-audio-files.jpg?2\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/split-large-audio-mac\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Split Audio File into Smaller Chunks on Your Mac\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e3613a3bf757e4f67770f0b7a339edd0\",\"name\":\"Hongkiat Lim\",\"description\":\"Founder and Editor in Chief of Hongkiat.com. Hongkiat is also a designer, developer, entrepreneur, and an active investor in the US stock market.\",\"sameAs\":[\"http:\\\/\\\/www.hongkiat.com\\\/blog\"],\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/hongkiat\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Split Audio File into Smaller Chunks on Your Mac - Hongkiat","description":"How to easily split audio files into smaller chunks on your Mac with our step-by-step guide, using simple bash script.","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.hongkiat.com\/blog\/split-large-audio-mac\/","og_locale":"en_US","og_type":"article","og_title":"How to Split Audio File into Smaller Chunks on Your Mac","og_description":"How to easily split audio files into smaller chunks on your Mac with our step-by-step guide, using simple bash script.","og_url":"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2023-04-20T10:01:07+00:00","article_modified_time":"2025-04-21T11:14:45+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/split-large-audio-mac\/split-audio-files.jpg?2","type":"","width":"","height":""}],"author":"Hongkiat Lim","twitter_card":"summary_large_image","twitter_creator":"@hongkiat","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Hongkiat Lim","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/"},"author":{"name":"Hongkiat Lim","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e3613a3bf757e4f67770f0b7a339edd0"},"headline":"How to Split Audio File into Smaller Chunks on Your Mac","datePublished":"2023-04-20T10:01:07+00:00","dateModified":"2025-04-21T11:14:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/"},"wordCount":530,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/split-large-audio-mac\/split-audio-files.jpg?2","keywords":["macOS"],"articleSection":["Desktop"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/","url":"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/","name":"How to Split Audio File into Smaller Chunks on Your Mac - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/split-large-audio-mac\/split-audio-files.jpg?2","datePublished":"2023-04-20T10:01:07+00:00","dateModified":"2025-04-21T11:14:45+00:00","description":"How to easily split audio files into smaller chunks on your Mac with our step-by-step guide, using simple bash script.","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/split-large-audio-mac\/split-audio-files.jpg?2","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/split-large-audio-mac\/split-audio-files.jpg?2"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/split-large-audio-mac\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Split Audio File into Smaller Chunks on Your Mac"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e3613a3bf757e4f67770f0b7a339edd0","name":"Hongkiat Lim","description":"Founder and Editor in Chief of Hongkiat.com. Hongkiat is also a designer, developer, entrepreneur, and an active investor in the US stock market.","sameAs":["http:\/\/www.hongkiat.com\/blog"],"url":"https:\/\/www.hongkiat.com\/blog\/author\/hongkiat\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-hka","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/66598","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=66598"}],"version-history":[{"count":3,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/66598\/revisions"}],"predecessor-version":[{"id":73950,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/66598\/revisions\/73950"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=66598"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=66598"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=66598"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=66598"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}