{"product_id":"fireball-trap-melody-loops","title":"Fireball - Trap Melody Loops","description":"\u003cp\u003e\u003cmeta charset=\"utf-8\"\u003eIntroducing \u003cstrong\u003eFireball\u003c\/strong\u003e: A premium collection of 60 authentic, placement-ready trap melody loops, meticulously crafted for producers and songwriters. Inspired by industry giants like Metro Boomin, Travis Scott, Future, and 21 Savage, this sample pack offers a unique blend of mystical, mysterious, and dark melodies that are sure to elevate your productions.\u003c\/p\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003cp\u003e\u003cscript src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jquery\/3.4.1\/jquery.min.js\"\u003e\/\/ \u003c![CDATA[\n\n\/\/ ]]\u003e\u003c\/script\u003e \u003cscript src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/html5media\/1.1.8\/html5media.min.js\"\u003e\/\/ \u003c![CDATA[\n\n\/\/ ]]\u003e\u003c\/script\u003e \u003cscript src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/plyr\/3.5.6\/plyr.min.js\"\u003e\/\/ \u003c![CDATA[\n\n\/\/ ]]\u003e\u003c\/script\u003e \u003cscript\u003e\/\/ \u003c![CDATA[\njQuery(function ($) {\n    \"use strict\";\n    var supportsAudio = !!document.createElement(\"audio\").canPlayType;\n    if (supportsAudio) {\n      \/\/ initialize plyr\n      var player = new Plyr(\"#audio1\", {\n        controls: [\n          \"restart\",\n          \"play\",\n          \"progress\",\n          \"current-time\",\n          \"duration\",\n          \"mute\",\n          \"volume\",\n        ],\n      });\n      \/\/ initialize playlist and controls\n      var index = 0,\n        playing = false,\n        mediaPath = \"https:\/\/cdn.shopify.com\/s\/files\/1\/0264\/6579\/6143\/files\/\",\n        extension = \"\",\n        tracks = [\n          {\n            track: 1,\n            name: \"Melody 01 - 130 BPM Emin\",\n            duration: \"0:35\",\n            file: \"Fireball_01_160_Emin\",\n          },\n          {\n            track: 2,\n            name: \"Melody 05 - 160 BPM G#min\",\n            duration: \"0:24\",\n            file: \"Fireball_05_160_G_min\",\n          },\n          {\n            track: 3,\n            name: \"Melody 12 - 142 BPM F#min\",\n            duration: \"0:27\",\n            file: \"Fireball_12_142_F_min\",\n          },\n          {\n            track: 4,\n            name: \"Melody 31 - 160 BPM Cmin\",\n            duration: \"0:24\",\n            file: \"Fireball_31_160_Cmin\",\n          },\n          {\n            track: 5,\n            name: \"Melody 35 - 160 BPM G#min\",\n            duration: \"0:24\",\n            file: \"Fireball_35_160_G_min\",\n          },\n {\n            track: 6,\n            name: \"Melody 38 - 160 BPM Cmin\",\n            duration: \"0:24\",\n            file: \"Fireball_38_160_Cmin\",\n          },\n {\n            track: 7,\n            name: \"Melody 59 - 170 BPM Fmin\",\n            duration: \"0:30\",\n            file: \"Fireball_59_170_Fmin\",\n          },\n \n        ],\n        buildPlaylist = $.each(tracks, function (key, value) {\n          var trackNumber = value.track,\n            trackName = value.name,\n            trackDuration = value.duration;\n          if (trackNumber.toString().length === 1) {\n            trackNumber = \"0\" + trackNumber;\n          }\n          $(\"#plList\").append(\n            '\u003cli\u003e \\\n                        \u003cdiv class=\"plItem\"\u003e \\\n                            \u003cspan class=\"plNum\"\u003e' +\n              trackNumber +\n              '.\u003c\/span\u003e \\\n                            \u003cspan class=\"plTitle\"\u003e' +\n              trackName +\n              '\u003c\/span\u003e \\\n                            \u003cspan class=\"plLength\"\u003e' +\n              trackDuration +\n              \"\u003c\/span\u003e \\\n                        \u003c\/div\u003e \\\n                    \u003c\/li\u003e\"\n          );\n        }),\n        trackCount = tracks.length,\n        npAction = $(\"#npAction\"),\n        npTitle = $(\"#npTitle\"),\n        audio = $(\"#audio1\")\n          .on(\"play\", function () {\n            playing = true;\n            npAction.text(\"Now Playing...\");\n          })\n          .on(\"pause\", function () {\n            playing = false;\n            npAction.text(\"Paused...\");\n          })\n          .on(\"ended\", function () {\n            npAction.text(\"Paused...\");\n            if (index + 1 \u003c trackCount) {\n              index++;\n              loadTrack(index);\n              audio.play();\n            } else {\n              audio.pause();\n              index = 0;\n              loadTrack(index);\n            }\n          })\n          .get(0),\n        btnPrev = $(\"#btnPrev\").on(\"click\", function () {\n          if (index - 1 \u003e -1) {\n            index--;\n            loadTrack(index);\n            if (playing) {\n              audio.play();\n            }\n          } else {\n            audio.pause();\n            index = 0;\n            loadTrack(index);\n          }\n        }),\n        btnNext = $(\"#btnNext\").on(\"click\", function () {\n          if (index + 1 \u003c trackCount) {\n            index++;\n            loadTrack(index);\n            if (playing) {\n              audio.play();\n            }\n          } else {\n            audio.pause();\n            index = 0;\n            loadTrack(index);\n          }\n        }),\n        li = $(\"#plList li\").on(\"click\", function () {\n          var id = parseInt($(this).index());\n          if (id !== index) {\n            playTrack(id);\n          }\n        }),\n        loadTrack = function (id) {\n          $(\".plSel\").removeClass(\"plSel\");\n          $(\"#plList li:eq(\" + id + \")\").addClass(\"plSel\");\n          npTitle.text(tracks[id].name);\n          index = id;\n          audio.src = mediaPath + tracks[id].file + extension;\n          updateDownload(id, audio.src);\n        },\n        updateDownload = function (id, source) {\n          player.on(\"loadedmetadata\", function () {\n            $('a[data-plyr=\"download\"]').attr(\"href\", source);\n          });\n        },\n        playTrack = function (id) {\n          loadTrack(id);\n          audio.play();\n        };\n      extension = audio.canPlayType(\"audio\/mpeg\")\n        ? \".mp3\"\n        : audio.canPlayType(\"audio\/ogg\")\n        ? \".ogg\"\n        : \"\";\n      loadTrack(index);\n    } else {\n      \/\/ no audio support\n      $(\".column\").addClass(\"hidden\");\n      var noSupport = $(\"#audio1\").text();\n      $(\".container\").append('\u003cp class=\"no-support\"\u003e' + noSupport + \"\u003c\/p\u003e\");\n    }\n  });\n\/\/ ]]\u003e\u003c\/script\u003e\u003c\/p\u003e\n\u003cdiv class=\"player-text\"\u003e\n\u003cdiv class=\"player\"\u003e\n\u003cdiv class=\"container\"\u003e\n\u003cdiv class=\"column add-bottom\"\u003e\n\u003cdiv id=\"mainwrap\"\u003e\n\u003cdiv id=\"nowPlay\"\u003e\n\u003cspan id=\"npTitle\"\u003e\u003c\/span\u003e\u003cbr\u003e\n\u003c\/div\u003e\n\u003cdiv id=\"audiowrap\"\u003e\n\u003cdiv id=\"audio0\"\u003e\u003caudio id=\"audio1\" preload=\"\" controls=\"controls\"\u003e\n              Your browser does not support HTML5 Audio! 😢\n            \u003c\/audio\u003e\u003c\/div\u003e\n\u003cdiv id=\"tracks\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv id=\"plwrap\"\u003e\n\u003cul id=\"plList\"\u003e\u003c\/ul\u003e\n\u003cbr\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"sidetext\"\u003e\n\u003cmeta charset=\"utf-8\"\u003e\n\u003cp\u003e\u003cspan\u003e\u003cstrong\u003eTechnical Details:\u003c\/strong\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003cp class=\"p1\"\u003e'Fireball' is compatible with all DAWS. All files are audio files (.WAV format)\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eThis pack contains 60 Trap Melody Loops with all the WAV and MIDI stems included. Tempos range from 102 - 198 BPM.\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003eTotal file size (unzipped): \u003cstrong\u003e1.45 GB\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eBenefits Of Using These Loops:\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cspan\u003e✅  Works with all DAWs flawlessly\u003c\/span\u003e\u003cbr\u003e\u003cspan\u003e✅  Get professional results fast\u003c\/span\u003e\u003cbr\u003e\u003cspan\u003e\u003cmeta charset=\"utf-8\"\u003e✅  Create memorable beats \u003c\/span\u003e\u003cbr\u003e\u003cspan\u003e✅  Extremely easy to use\u003c\/span\u003e\u003cbr\u003e\u003cspan\u003e✅  Drag and Drop (ready to use)\u003c\/span\u003e\u003cbr\u003e\u003cspan\u003e✅  100% Royalty Free loops\u003c\/span\u003e\u003cbr\u003e\u003cmeta charset=\"utf-8\"\u003e\u003cspan\u003e✅  Gets you inspired quickly\u003c\/span\u003e\u003cspan\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003cp\u003eWhen you download this sample pack you not only get 60 stunning melody loops but also an extensive array of audio and MIDI files for every single element used to create these loops, totalling over 200 files! This means you can dive deep into the creative process, dissecting and reworking the components to fit your unique sound.\u003cmeta charset=\"utf-8\"\u003e\u003c\/p\u003e\n\u003cp\u003eThe included stems feature a variety of elements such as bells, bass, synths, and piano, providing you with incredible flexibility in your beat-making process. By using these stems, you can easily customize and adapt the melodies, giving you a significant advantage over other producers. These patterns are not just inspired by top artists; they are proven formulae that can help you catch your audience’s attention and keep them hooked on your music. \u003c\/p\u003e\n\u003cp\u003e\u003cmeta charset=\"utf-8\"\u003eCatch the attention of your audience by getting them into the vibe and getting them hooked to your music. \u003cmeta charset=\"utf-8\"\u003eGive your productions that special edge they’ve been missing and watch your tracks come to life!\u003c\/p\u003e\n\u003cp class=\"p1\"\u003e\u003cstrong\u003ePro Tip:\u003c\/strong\u003e \u003cmeta charset=\"utf-8\"\u003eEnhance your creativity by experimenting with layering the audio stems with the MIDI files. Add new instruments, tweak the arrangements, and explore endless possibilities to craft extremely infectious melodies.\u003c\/p\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003cp\u003e\u003cem\u003e \u003c\/em\u003e\u003c\/p\u003e\n\u003ch2 style=\"text-align: center;\"\u003e\u003cspan style=\"color: #00aaff;\"\u003e\u003cstrong\u003eFrequently Asked Questions\u003c\/strong\u003e\u003c\/span\u003e\u003c\/h2\u003e\n\u003cdiv class=\"faq\"\u003e\n\u003cdiv class=\"tab\"\u003e\n\u003cinput class=\"tab-toggle\" id=\"tab1\" type=\"checkbox\"\u003e\u003clabel class=\"tab-label\" for=\"tab1\"\u003eDo I need any special software for this?\u003c\/label\u003e\n\u003cdiv class=\"tab-content\"\u003eAll you need is your DAW. It works in all DAWS (Ableton Live, FL Studio, Cubase, Studio One, Logic Pro, And All Other DAWs)\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"tab\"\u003e\n\u003cinput class=\"tab-toggle\" id=\"tab2\" type=\"checkbox\"\u003e\u003clabel class=\"tab-label\" for=\"tab2\"\u003eAre the stems and midi files included?\u003c\/label\u003e\n\u003cdiv class=\"tab-content\"\u003eYes, for every melody loop you get all the individual audio and midi stems that were used to create the loop. That way you have complete flexibility in creating your own beats.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"tab\"\u003e\n\u003cinput class=\"tab-toggle\" id=\"tab3\" type=\"checkbox\"\u003e\u003clabel class=\"tab-label\" for=\"tab3\"\u003eAre the loops royalty free?\u003c\/label\u003e\n\u003cdiv class=\"tab-content\"\u003eYes, all our sample packs are 100% royalty free and cleared for commercial use. You can use them in your music however you want.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"tab\"\u003e\n\u003cinput type=\"checkbox\" id=\"tab4\" class=\"tab-toggle\"\u003e\u003clabel for=\"tab4\" class=\"tab-label\"\u003eWhich payment options do you accept?\u003c\/label\u003e\n\u003cdiv class=\"tab-content\"\u003eWe securely accept payments through all major credit cards and PayPal. Your payment information is never stored and is safely encrypted with 256-bit SSL technology.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"tab\"\u003e\n\u003cinput type=\"checkbox\" id=\"tab5\" class=\"tab-toggle\"\u003e\u003clabel for=\"tab5\" class=\"tab-label\"\u003eHow will this pack be delivered to me and how quickly?\u003c\/label\u003e\n\u003cdiv class=\"tab-content\"\u003eThe download link will be sent to your email address immediately after you complete your purchase.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cp\u003e \u003c\/p\u003e","brand":"Mystic Alankar","offers":[{"title":"Default Title","offer_id":47672307122370,"sku":null,"price":18.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0264\/6579\/6143\/files\/Fireball.png?v=1779757290","url":"https:\/\/mysticalankar.com\/products\/fireball-trap-melody-loops","provider":"Mystic Alankar","version":"1.0","type":"link"}