{"id":48227,"date":"2019-10-04T08:26:11","date_gmt":"2019-10-04T13:26:11","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=48227"},"modified":"2021-12-08T13:02:57","modified_gmt":"2021-12-08T18:02:57","slug":"audio-spectrum-visuals-ffmpeg","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/","title":{"rendered":"How to Create Audio Spectrum Visuals with FFmpeg"},"content":{"rendered":"<ul class=\"wp-block-list\"><li><a href=\"#video\">Audio and Video Content<\/a><\/li><li><a href=\"#showwaves\">Showwaves Visuals<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"video\">Video Content<\/h2>\n\n\n\n<p><a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/\">FFmpeg<\/a> is a powerful command-line application able to record, stream, and <a href=\"\/support\/website\/convert-media-files-ffmpeg\/\">convert multimedia files<\/a> between multiple file types. This is great for compatibility with audio platforms with different format requirements. And don\u2019t forget users who prefer lossless formats \u2013 e.g. FLAC and OGG. Some creators provide multiple audio format options on their <a href=\"https:\/\/vloggers\">live broadcasting website<\/a>.<\/p>\n\n\n\n<p>But it can be beneficial to share audio work on video platforms as well. Just as vloggers can benefit from creating audio-only content for <a href=\"\/support\/edu\/live-broadcasting\/podcast-websites\/\">podcast platforms<\/a>, podcasters can do the same with video platforms. YouTube is the second most popular search engine as of 2019. Vimeo and some other video platforms have small but active communities.<\/p>\n\n\n\n<p>But what\u2019s the best option for converting your audio to video? There are a few common options for podcasts, music, and other audio-only content:<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignright is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-1024x546.png\" alt=\"\" class=\"wp-image-48230\" width=\"308\" height=\"164\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-1024x546.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-300x160.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-768x409.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves.png 1280w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><figcaption>Showwaves Screenshot<\/figcaption><\/figure><\/div>\n\n\n\n<ul class=\"wp-block-list\"><li>Image with title info<\/li><li>Image slideshow<\/li><li>Video to support mood of the audio (sometimes unrelated)<\/li><li>Spectrum visuals<\/li><\/ul>\n\n\n\n<p>We\u2019re going to focus on that last option \u2013 spectrum visuals. FFmpeg can create many audio spectrum visuals. We\u2019re going to focus on the commonly seen sample waveform view called showwaves in FFmpeg. <\/p>\n\n\n\n<p>Below we\u2019ll cover how to create a <a href=\"https:\/\/ffmpeg.org\/ffmpeg-filters.html#showwaves\">FFmpeg <\/a><a href=\"https:\/\/ffmpeg.org\/ffmpeg-filters.html#showwaves\">showwaves<\/a><a href=\"https:\/\/ffmpeg.org\/ffmpeg-filters.html#showwaves\"> multimedia filter<\/a>.<\/p>\n\n\n\n<p class=\"alert alert-info\">FFmpeg is available for installation on all InMotion <a href=\"https:\/\/www.inmotionhosting.com\/vps-hosting\">VPS Hosting<\/a> plans.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"showwaves\">Showwaves Visuals<\/h2>\n\n\n\n<ol class=\"article_list wp-block-list\"><li><a href=\"\/support\/server\/ssh\/do-you-provide-ssh-access\/\">Log in to SSH<\/a> or <a href=\"\/support\/edu\/cpanel\/how-to-launch-the-cpanel-terminal\/\">cPanel Terminal<\/a><\/li><li>List FFmpeg-supported file types with the command <code>ffmpeg -formats<\/code><\/li><li>(Optional) Filter the results for a specific format for faster results: <code>ffmpeg -formats | grep mp3<\/code><\/li><li>List supported codecs with the command <code>ffmpeg -codecs<\/code><\/li><li><a href=\"\/support\/server\/linux\/using-the-linux-cd-command\/\">Navigate to your media files directory<\/a> with <code>cd<\/code> command<\/li><li>Type the following command, one line at a time, and remember to rename <em>song-1.mp3<\/em> to the file name and file type and <em>song-1.mp4<\/em> to your specified file name:<br><code>ffmpeg -i song-1.mp3 -filter_complex \\<\/code><br>command, input , file name, prepare a filter function<br><code>\"[0:a]showwaves=s=1280x720:mode=line:rate=25,format=yuv420p[v]\" \\<\/code><br>alpha radius set to 0, filter, screen resolution, frame rate per second (FPS), output color format<br><code>-map \"[v]\" -map 0:a song-1.mp4<\/code><br>\u201cmap\u201d channels from input to output, remove V color channel component, alpha radius set to 0, output file<br><br>If you\u2019d rather use a single command:<br><code>ffmpeg -i song-1.mp3 -filter_complex \"[0:a]showwaves=s=1280x720:mode=line:rate=25,<\/code><br><code>format=yuv420p[v]\" -map \"[v]\" -map 0:a song-1.mp4<\/code><\/li><\/ol>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"318\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-progress-1024x318.png\" alt=\"\" class=\"wp-image-48231\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-progress-1024x318.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-progress-300x93.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-progress-768x239.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-progress.png 1410w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><figcaption>FFmpeg in Action<\/figcaption><\/figure>\n\n\n\n<p>Once you create the file, open the file URL in your browser to see your results. You can use this file as is with the audio included. Or you can import it into a <a href=\"\/support\/edu\/live-broadcasting\/free-video-editors\/\">video editor<\/a> for further customization.<\/p>\n\n\n\n<p>See more examples of audio spectrum visuals made with FFmpeg from <a href=\"https:\/\/ffmpeg.org\/ffmpeg-filters.html#showwaves\">FFmpeg documentation<\/a> and this <a href=\"https:\/\/video.stackexchange.com\/questions\/9644\/how-do-i-turn-audio-into-video-that-is-show-the-waveforms-in-a-video\">popular <\/a><a href=\"https:\/\/video.stackexchange.com\/questions\/9644\/how-do-i-turn-audio-into-video-that-is-show-the-waveforms-in-a-video\">StackExchange<\/a><a href=\"https:\/\/video.stackexchange.com\/questions\/9644\/how-do-i-turn-audio-into-video-that-is-show-the-waveforms-in-a-video\"> forum<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Audio and Video Content Showwaves Visuals Video Content FFmpeg is a powerful command-line application able to record, stream, and convert multimedia files between multiple file types. This is great for compatibility with audio platforms with different format requirements. And don&#8217;t forget users who prefer lossless formats &#8211; e.g. FLAC and OGG. Some creators provide multiple<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4304],"tags":[],"class_list":["post-48227","post","type-post","status-publish","format-standard","hentry","category-live-broadcasting"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Create Audio Spectrum Visuals with FFmpeg | InMotion Hosting<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create Audio Spectrum Visuals with FFmpeg | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Audio and Video Content Showwaves Visuals Video Content FFmpeg is a powerful command-line application able to record, stream, and convert multimedia files between multiple file types. This is great for compatibility with audio platforms with different format requirements. And don&#8217;t forget users who prefer lossless formats &#8211; e.g. FLAC and OGG. Some creators provide multiple Read More &gt;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-10-04T13:26:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-08T18:02:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-1024x546.png\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"How to Create Audio Spectrum Visuals with FFmpeg\",\"datePublished\":\"2019-10-04T13:26:11+00:00\",\"dateModified\":\"2021-12-08T18:02:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/\"},\"wordCount\":409,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-1024x546.png\",\"articleSection\":[\"Live Broadcasting\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/\",\"name\":\"How to Create Audio Spectrum Visuals with FFmpeg | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-1024x546.png\",\"datePublished\":\"2019-10-04T13:26:11+00:00\",\"dateModified\":\"2021-12-08T18:02:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves.png\",\"width\":1280,\"height\":682,\"caption\":\"Showwaves Screenshot\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create Audio Spectrum Visuals with FFmpeg\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Create Audio Spectrum Visuals with FFmpeg | InMotion Hosting","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.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/","og_locale":"en_US","og_type":"article","og_title":"How to Create Audio Spectrum Visuals with FFmpeg | InMotion Hosting","og_description":"Audio and Video Content Showwaves Visuals Video Content FFmpeg is a powerful command-line application able to record, stream, and convert multimedia files between multiple file types. This is great for compatibility with audio platforms with different format requirements. And don&#8217;t forget users who prefer lossless formats &#8211; e.g. FLAC and OGG. Some creators provide multiple Read More >","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2019-10-04T13:26:11+00:00","article_modified_time":"2021-12-08T18:02:57+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-1024x546.png","type":"","width":"","height":""}],"author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"How to Create Audio Spectrum Visuals with FFmpeg","datePublished":"2019-10-04T13:26:11+00:00","dateModified":"2021-12-08T18:02:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/"},"wordCount":409,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-1024x546.png","articleSection":["Live Broadcasting"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/","name":"How to Create Audio Spectrum Visuals with FFmpeg | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves-1024x546.png","datePublished":"2019-10-04T13:26:11+00:00","dateModified":"2021-12-08T18:02:57+00:00","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2019\/10\/ffmpeg-show-waves.png","width":1280,"height":682,"caption":"Showwaves Screenshot"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/audio-spectrum-visuals-ffmpeg\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Create Audio Spectrum Visuals with FFmpeg"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/48227","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=48227"}],"version-history":[{"count":10,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/48227\/revisions"}],"predecessor-version":[{"id":91100,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/48227\/revisions\/91100"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=48227"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=48227"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=48227"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}