--- layout: default title: MMPSearch - Projetos permalink: /projetos/ --- {% assign list_bpm = "" %} {% assign list_plugins = "" %} {% assign list_instruments = "" %} {% assign list_samples = "" %} {% assign list_bassline = "" %} {% assign list_automation = "" %} {% for p in site.data.all %} {% if p.bpm %}{% assign list_bpm = list_bpm | append: p.bpm | append: "|||" %}{% endif %} {% for item in p.tags.plugin %}{% if item != "" %}{% assign list_plugins = list_plugins | append: item | append: "|||" %}{% endif %}{% endfor %} {% if p.tags.bassline %}{% for item in p.tags.bassline %}{% if item != "" %}{% assign list_bassline = list_bassline | append: item | append: "|||" %}{% endif %}{% endfor %}{% endif %} {% if p.tags.automation %}{% for item in p.tags.automation %}{% if item != "" %}{% assign list_automation = list_automation | append: item | append: "|||" %}{% endif %}{% endfor %}{% endif %} {% for track in p.tracks %} {% if track.instruments %}{% for inst in track.instruments %}{% if inst.instrument_name %}{% assign list_instruments = list_instruments | append: inst.instrument_name | append: "|||" %}{% endif %}{% endfor %} {% elsif track.instrument_name %}{% assign list_instruments = list_instruments | append: track.instrument_name | append: "|||" %}{% endif %} {% if track.sample %}{% for smp in track.sample %}{% assign list_samples = list_samples | append: smp.sample_name | append: "|||" %}{% endfor %} {% elsif track.sample_name %}{% assign list_samples = list_samples | append: track.sample_name | append: "|||" %}{% endif %} {% endfor %} {% endfor %} {% assign unique_bpm_array = list_bpm | split: "|||" | uniq | sort %} {% assign unique_plugins = list_plugins | split: "|||" | uniq | sort %} {% assign unique_instruments = list_instruments | split: "|||" | uniq | sort %} {% assign unique_samples = list_samples | split: "|||" | uniq | sort %} {% assign unique_bassline = list_bassline | split: "|||" | uniq | sort %} {% assign unique_automation = list_automation | split: "|||" | uniq | sort %} {% assign min_limit = 0 %} {% assign max_limit = 300 %} {% if unique_bpm_array.size > 0 %} {% assign min_limit = unique_bpm_array | first | minus: 0 %} {% assign max_limit = unique_bpm_array | last | plus: 0 %} {% endif %}

{% include sidebar.html %}

📁 Projetos Disponíveis

Utilize os filtros laterais para refinar sua busca.


Gêneros (IA)

Tom / Key
{% assign keys_list = "C,Cm,C#,C#m,Db,Dm,D,D#m,Eb,E,Em,F,Fm,F#,F#m,Gb,G,Gm,G#,Ab,A,Am,Bb,B,Bm" | split: "," %} {% for key in keys_list %} {% endfor %}

Faixa de BPM

Instrumentos
{% for item in unique_instruments %}{% if item != "" %} {% endif %}{% endfor %}

Plugins
{% for item in unique_plugins %}{% if item != "" %} {% endif %}{% endfor %}

Bassline
{% for item in unique_bassline %}{% if item != "" %}{% endif %}{% endfor %}

Automação
{% for item in unique_automation %}{% if item != "" %}{% endif %}{% endfor %}

Samples
{% for item in unique_samples %}{% if item != "" %}{% endif %}{% endfor %}
{% assign project_pages = site.pages | where_exp: "page", "page.path contains 'projetos/'" | sort: "title" %} {% for page in project_pages %} {% if page.url != '/projetos/' %} {% assign p_insts_array = "" | split: "," %} {% for track in page.tracks %} {% if track.instruments %}{% for inst in track.instruments %}{% if inst.instrument_name %}{% assign p_insts_array = p_insts_array | push: inst.instrument_name %}{% endif %}{% endfor %} {% elsif track.instrument_name %}{% assign p_insts_array = p_insts_array | push: track.instrument_name %}{% endif %} {% endfor %} {% assign p_instruments_str = p_insts_array | uniq | join: ',' %} {% assign p_bpm = page.bpm | default: 0 %} {% assign p_plugins = page.tags.plugin | join: ',' %} {% assign p_bassline = page.tags.bassline | join: ',' %} {% assign p_automation = page.tags.automation | join: ',' %} {% assign p_samples = page.tags.sample | join: ',' %} {% assign p_name = page.title | default: page.name | downcase %}

{{ page.title | default: page.name | replace: '.html', '' }}

{% if page.bpm %} 🎵 {{ page.bpm }} BPM {% endif %}
{% assign unique_insts_page = p_insts_array | uniq | sort %} {% if unique_insts_page.size > 0 %}
🎸 INSTRUMENTS
{% endif %} {% if page.tags.plugin and page.tags.plugin.size > 0 %}
🔌 PLUGINS
{% for tag in page.tags.plugin %}{% if tag != "" %} {{ tag | truncate: 18 }} {% endif %}{% endfor %}
{% endif %} {% if page.tags.bassline and page.tags.bassline.size > 0 %}
🎹 BASSLINE
{% for tag in page.tags.bassline %}{% if tag != "" %} {{ tag | truncate: 18 }} {% endif %}{% endfor %}
{% endif %} {% if page.tags.automation and page.tags.automation.size > 0 %}
🎚️ AUTOMATION
{% for tag in page.tags.automation %}{% if tag != "" %} {{ tag | truncate: 18 }} {% endif %}{% endfor %}
{% endif %} {% if page.tags.sample and page.tags.sample.size > 0 %}
🎤 SAMPLES
{% for tag in page.tags.sample %}{% if tag != "" %} {{ tag | truncate: 18 }} {% endif %}{% endfor %}
{% endif %}
Ver {% assign creation_url = '/mmpSearch/creation.html?project=' | append: page.file %} {% assign embed_url = creation_url | append: '&embed=true' %} Editar
{% endif %} {% endfor %}
{% include preview-modal.html %}