├── .github ├── logo.png ├── logo_pro.png └── music-demix.png ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── gulpfile.js ├── js ├── WavFileEncoder.js ├── app-refactor.js ├── app.js ├── blog.js ├── main.js ├── midi-worker.js ├── service-worker.js └── stem-worker.js ├── package.json ├── scripts ├── __init__.py ├── compare-torch-stft.py ├── convert-demucs-pth-to-ggml.py ├── demucs_pytorch_inference.py ├── evaluate-demixed-output.py └── requirements.txt ├── test ├── e2e_test.sh ├── paranoid_jaxius_mix.mp3 └── paranoid_jaxius_mix.wav ├── vendor └── wav-file-encoder │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── example │ ├── app.css │ ├── index.html │ ├── rollup.config.cjs │ └── src │ │ ├── Main.ts │ │ └── Utils.ts │ └── src │ └── WavFileEncoder.ts └── web ├── 404.md ├── Gemfile ├── Gemfile.lock ├── WavFileEncoder.js ├── _config.yml ├── _includes ├── admonitions.html ├── head-custom-analytics.html ├── head-custom.html └── robots.txt ├── _layouts ├── default.html └── post.html ├── _plugins └── env_vars.rb ├── _posts ├── 2023-09-23-Beginners-guide-to-free-stems.md ├── 2023-10-23-How-freemusicdemixer-works.md ├── 2023-11-24-Music-demixing-terminology.md ├── 2024-02-17-Pro-site-launch.md ├── 2024-08-17-Switching-to-yearly-billing.md ├── 2024-08-24-Vocal-remover-extract-vocals.md ├── 2024-08-31-Separate-music-instrumental-breakdowns-AI.md ├── 2024-09-20-How-to-pick-max-memory.md ├── 2024-11-17-New-music-transcription-midi.md ├── 2024-12-07-Music-transcription-feature.md ├── 2024-12-23-Piano-guitar-quality-efficiency.md ├── 2025-01-01-Create-demo-tracks-stems.md ├── 2025-01-13-New-feature-printable-sheet-music.md ├── 2025-03-09-Audio-to-sheet-music.md ├── 2025-03-09-Convert-youtube-mp3-to-sheet-music.md └── 2025-04-01-Mobile-now-supported.md ├── about.md ├── android.md ├── app-refactor.js ├── app.js ├── assets ├── blog │ ├── post1 │ │ ├── freemdx.webp │ │ ├── freemdx2.webp │ │ └── freemdx3.webp │ ├── post11 │ │ ├── excerpt_bass_edm_drenchill.mp3 │ │ ├── excerpt_drums_rap_cypress_hill.mp3 │ │ ├── excerpt_melody_pop_billie_jean.mp3 │ │ └── excerpt_vocals_metal_destructo.mp3 │ ├── post12 │ │ ├── mac1.webp │ │ ├── mac2.webp │ │ ├── windows1.webp │ │ ├── windows2.webp │ │ ├── wizard1.webp │ │ └── wizard2.webp │ ├── post13 │ │ ├── midi_outputs.webp │ │ ├── midi_progress.webp │ │ ├── midi_settings.webp │ │ └── musescore.webp │ ├── post14 │ │ └── flow.webp │ ├── post15 │ │ ├── dalle_graphic.webp │ │ └── stemsettings.webp │ ├── post16 │ │ └── dalle_graphic.webp │ ├── post17 │ │ ├── mdx-output-page.webp │ │ ├── mdx-settings.webp │ │ ├── mdx-widget.webp │ │ ├── musescore-error.webp │ │ └── printable-sheet-music.webp │ ├── post18 │ │ ├── intro_meme.webp │ │ └── ytdlp_meme.webp │ ├── post2 │ │ └── waveform.webp │ ├── post20 │ │ ├── clip.mp4 │ │ ├── screen1.webp │ │ ├── screen2.webp │ │ ├── screen3.webp │ │ ├── screen4.webp │ │ └── screen5.webp │ ├── post3 │ │ └── mixdemix.webp │ ├── post6 │ │ └── model_comparison.png │ └── post9 │ │ ├── yearly-billing-2.webp │ │ ├── yearly-billing-3.webp │ │ ├── yearly-billing-4.webp │ │ └── yearly-billing.webp ├── clips │ ├── old_macdonald_piano_midi.mp3 │ ├── old_macdonald_piano_waveform.mp3 │ ├── paranoid_jaxius_bass_free.mp3 │ ├── paranoid_jaxius_bass_pro.mp3 │ ├── paranoid_jaxius_drums_free.mp3 │ ├── paranoid_jaxius_drums_pro.mp3 │ ├── paranoid_jaxius_melody_free.mp3 │ ├── paranoid_jaxius_melody_pro.mp3 │ ├── paranoid_jaxius_vocals_free.mp3 │ ├── paranoid_jaxius_vocals_pro.mp3 │ └── spleeter │ │ ├── shimmy_bass_bad.mp3 │ │ ├── shimmy_bass_good.mp3 │ │ ├── shimmy_drums_bad.mp3 │ │ ├── shimmy_drums_good.mp3 │ │ ├── shimmy_instrum_bad.mp3 │ │ ├── shimmy_instrum_good.mp3 │ │ ├── shimmy_piano_bad.mp3 │ │ ├── shimmy_piano_good.mp3 │ │ ├── shimmy_vocal_bad.mp3 │ │ └── shimmy_vocal_good.mp3 ├── css │ └── style.scss ├── favicon.ico ├── fonts │ ├── Poppins-Black.woff2 │ ├── Poppins-BlackItalic.woff2 │ ├── Poppins-Bold.woff2 │ ├── Poppins-BoldItalic.woff2 │ ├── Poppins-ExtraBold.woff2 │ ├── Poppins-ExtraBoldItalic.woff2 │ ├── Poppins-ExtraLight.woff2 │ ├── Poppins-ExtraLightItalic.woff2 │ ├── Poppins-Italic.woff2 │ ├── Poppins-Light.woff2 │ ├── Poppins-LightItalic.woff2 │ ├── Poppins-Medium.woff2 │ ├── Poppins-MediumItalic.woff2 │ ├── Poppins-Regular.woff2 │ ├── Poppins-SemiBold.woff2 │ ├── Poppins-SemiBoldItalic.woff2 │ ├── Poppins-Thin.woff2 │ └── Poppins-ThinItalic.woff2 ├── images │ ├── ai-meme.webp │ ├── bullet.png │ ├── cyantocat.webp │ ├── dismiss.webp │ ├── dobson_logo.webp │ ├── dobson_logo_white.webp │ ├── ig_banner.webp │ ├── karaoke-lively-banner-small.webp │ ├── karaoke-recording-studio-small.webp │ ├── logo.webp │ ├── logo_free.webp │ ├── logo_karaoke.webp │ ├── logo_pro.webp │ ├── logo_realtime.webp │ ├── logo_whitebg.webp │ ├── midi-amt-dark.webp │ ├── midi-amt.webp │ ├── model_comparison.png │ ├── model_comparison.webp │ ├── music-demix-dark.webp │ ├── music-demix.webp │ ├── popup_app.webp │ ├── popup_pro.webp │ ├── popup_web.webp │ ├── sheet-music-are-you-sleeping.webp │ └── sideload.webp └── social │ ├── facebook-dark.svg │ ├── facebook.svg │ ├── reddit-dark.svg │ ├── reddit.svg │ ├── rss-dark.svg │ ├── rss.svg │ ├── x-twitter-dark.svg │ ├── x-twitter.svg │ ├── y-combinator-dark.svg │ └── y-combinator.svg ├── basicpitch_mxml.js ├── basicpitch_mxml.wasm ├── blog.js ├── blog.md ├── demucs_onnx_simd.js ├── demucs_onnx_simd.wasm ├── faqs.md ├── favicon.ico ├── functions ├── getprocontent.js └── sendmobileemail.js ├── index.md ├── ios.md ├── karaoke.md ├── main.js ├── midi-worker.js ├── midi.md ├── pricing.md ├── private-ai.md ├── robots.txt ├── service-worker.js ├── sheet-music.md ├── sitemap.xml ├── stem-separation.md ├── stem-worker.js ├── support.md ├── vs-ezstems.md ├── vs-izotope-rx.md ├── vs-lalalai.md ├── vs-spleeter.md └── vs-vocalremover.md /.github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/.github/logo.png -------------------------------------------------------------------------------- /.github/logo_pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/.github/logo_pro.png -------------------------------------------------------------------------------- /.github/music-demix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/.github/music-demix.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/gulpfile.js -------------------------------------------------------------------------------- /js/WavFileEncoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/js/WavFileEncoder.js -------------------------------------------------------------------------------- /js/app-refactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/js/app-refactor.js -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/js/app.js -------------------------------------------------------------------------------- /js/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/js/blog.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/js/main.js -------------------------------------------------------------------------------- /js/midi-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/js/midi-worker.js -------------------------------------------------------------------------------- /js/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/js/service-worker.js -------------------------------------------------------------------------------- /js/stem-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/js/stem-worker.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/package.json -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/compare-torch-stft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/scripts/compare-torch-stft.py -------------------------------------------------------------------------------- /scripts/convert-demucs-pth-to-ggml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/scripts/convert-demucs-pth-to-ggml.py -------------------------------------------------------------------------------- /scripts/demucs_pytorch_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/scripts/demucs_pytorch_inference.py -------------------------------------------------------------------------------- /scripts/evaluate-demixed-output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/scripts/evaluate-demixed-output.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/scripts/requirements.txt -------------------------------------------------------------------------------- /test/e2e_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/test/e2e_test.sh -------------------------------------------------------------------------------- /test/paranoid_jaxius_mix.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/test/paranoid_jaxius_mix.mp3 -------------------------------------------------------------------------------- /test/paranoid_jaxius_mix.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/test/paranoid_jaxius_mix.wav -------------------------------------------------------------------------------- /vendor/wav-file-encoder/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/vendor/wav-file-encoder/.eslintrc.cjs -------------------------------------------------------------------------------- /vendor/wav-file-encoder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/vendor/wav-file-encoder/.gitignore -------------------------------------------------------------------------------- /vendor/wav-file-encoder/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/vendor/wav-file-encoder/LICENSE.md -------------------------------------------------------------------------------- /vendor/wav-file-encoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/vendor/wav-file-encoder/README.md -------------------------------------------------------------------------------- /vendor/wav-file-encoder/example/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/vendor/wav-file-encoder/example/app.css -------------------------------------------------------------------------------- /vendor/wav-file-encoder/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/vendor/wav-file-encoder/example/index.html -------------------------------------------------------------------------------- /vendor/wav-file-encoder/example/rollup.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/vendor/wav-file-encoder/example/rollup.config.cjs -------------------------------------------------------------------------------- /vendor/wav-file-encoder/example/src/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/vendor/wav-file-encoder/example/src/Main.ts -------------------------------------------------------------------------------- /vendor/wav-file-encoder/example/src/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/vendor/wav-file-encoder/example/src/Utils.ts -------------------------------------------------------------------------------- /vendor/wav-file-encoder/src/WavFileEncoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/vendor/wav-file-encoder/src/WavFileEncoder.ts -------------------------------------------------------------------------------- /web/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/404.md -------------------------------------------------------------------------------- /web/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/Gemfile -------------------------------------------------------------------------------- /web/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/Gemfile.lock -------------------------------------------------------------------------------- /web/WavFileEncoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/WavFileEncoder.js -------------------------------------------------------------------------------- /web/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_config.yml -------------------------------------------------------------------------------- /web/_includes/admonitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_includes/admonitions.html -------------------------------------------------------------------------------- /web/_includes/head-custom-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_includes/head-custom-analytics.html -------------------------------------------------------------------------------- /web/_includes/head-custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_includes/head-custom.html -------------------------------------------------------------------------------- /web/_includes/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_includes/robots.txt -------------------------------------------------------------------------------- /web/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_layouts/default.html -------------------------------------------------------------------------------- /web/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_layouts/post.html -------------------------------------------------------------------------------- /web/_plugins/env_vars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_plugins/env_vars.rb -------------------------------------------------------------------------------- /web/_posts/2023-09-23-Beginners-guide-to-free-stems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2023-09-23-Beginners-guide-to-free-stems.md -------------------------------------------------------------------------------- /web/_posts/2023-10-23-How-freemusicdemixer-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2023-10-23-How-freemusicdemixer-works.md -------------------------------------------------------------------------------- /web/_posts/2023-11-24-Music-demixing-terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2023-11-24-Music-demixing-terminology.md -------------------------------------------------------------------------------- /web/_posts/2024-02-17-Pro-site-launch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2024-02-17-Pro-site-launch.md -------------------------------------------------------------------------------- /web/_posts/2024-08-17-Switching-to-yearly-billing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2024-08-17-Switching-to-yearly-billing.md -------------------------------------------------------------------------------- /web/_posts/2024-08-24-Vocal-remover-extract-vocals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2024-08-24-Vocal-remover-extract-vocals.md -------------------------------------------------------------------------------- /web/_posts/2024-08-31-Separate-music-instrumental-breakdowns-AI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2024-08-31-Separate-music-instrumental-breakdowns-AI.md -------------------------------------------------------------------------------- /web/_posts/2024-09-20-How-to-pick-max-memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2024-09-20-How-to-pick-max-memory.md -------------------------------------------------------------------------------- /web/_posts/2024-11-17-New-music-transcription-midi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2024-11-17-New-music-transcription-midi.md -------------------------------------------------------------------------------- /web/_posts/2024-12-07-Music-transcription-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2024-12-07-Music-transcription-feature.md -------------------------------------------------------------------------------- /web/_posts/2024-12-23-Piano-guitar-quality-efficiency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2024-12-23-Piano-guitar-quality-efficiency.md -------------------------------------------------------------------------------- /web/_posts/2025-01-01-Create-demo-tracks-stems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2025-01-01-Create-demo-tracks-stems.md -------------------------------------------------------------------------------- /web/_posts/2025-01-13-New-feature-printable-sheet-music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2025-01-13-New-feature-printable-sheet-music.md -------------------------------------------------------------------------------- /web/_posts/2025-03-09-Audio-to-sheet-music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2025-03-09-Audio-to-sheet-music.md -------------------------------------------------------------------------------- /web/_posts/2025-03-09-Convert-youtube-mp3-to-sheet-music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2025-03-09-Convert-youtube-mp3-to-sheet-music.md -------------------------------------------------------------------------------- /web/_posts/2025-04-01-Mobile-now-supported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/_posts/2025-04-01-Mobile-now-supported.md -------------------------------------------------------------------------------- /web/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/about.md -------------------------------------------------------------------------------- /web/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/android.md -------------------------------------------------------------------------------- /web/app-refactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/app-refactor.js -------------------------------------------------------------------------------- /web/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/app.js -------------------------------------------------------------------------------- /web/assets/blog/post1/freemdx.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post1/freemdx.webp -------------------------------------------------------------------------------- /web/assets/blog/post1/freemdx2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post1/freemdx2.webp -------------------------------------------------------------------------------- /web/assets/blog/post1/freemdx3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post1/freemdx3.webp -------------------------------------------------------------------------------- /web/assets/blog/post11/excerpt_bass_edm_drenchill.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post11/excerpt_bass_edm_drenchill.mp3 -------------------------------------------------------------------------------- /web/assets/blog/post11/excerpt_drums_rap_cypress_hill.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post11/excerpt_drums_rap_cypress_hill.mp3 -------------------------------------------------------------------------------- /web/assets/blog/post11/excerpt_melody_pop_billie_jean.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post11/excerpt_melody_pop_billie_jean.mp3 -------------------------------------------------------------------------------- /web/assets/blog/post11/excerpt_vocals_metal_destructo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post11/excerpt_vocals_metal_destructo.mp3 -------------------------------------------------------------------------------- /web/assets/blog/post12/mac1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post12/mac1.webp -------------------------------------------------------------------------------- /web/assets/blog/post12/mac2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post12/mac2.webp -------------------------------------------------------------------------------- /web/assets/blog/post12/windows1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post12/windows1.webp -------------------------------------------------------------------------------- /web/assets/blog/post12/windows2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post12/windows2.webp -------------------------------------------------------------------------------- /web/assets/blog/post12/wizard1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post12/wizard1.webp -------------------------------------------------------------------------------- /web/assets/blog/post12/wizard2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post12/wizard2.webp -------------------------------------------------------------------------------- /web/assets/blog/post13/midi_outputs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post13/midi_outputs.webp -------------------------------------------------------------------------------- /web/assets/blog/post13/midi_progress.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post13/midi_progress.webp -------------------------------------------------------------------------------- /web/assets/blog/post13/midi_settings.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post13/midi_settings.webp -------------------------------------------------------------------------------- /web/assets/blog/post13/musescore.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post13/musescore.webp -------------------------------------------------------------------------------- /web/assets/blog/post14/flow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post14/flow.webp -------------------------------------------------------------------------------- /web/assets/blog/post15/dalle_graphic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post15/dalle_graphic.webp -------------------------------------------------------------------------------- /web/assets/blog/post15/stemsettings.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post15/stemsettings.webp -------------------------------------------------------------------------------- /web/assets/blog/post16/dalle_graphic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post16/dalle_graphic.webp -------------------------------------------------------------------------------- /web/assets/blog/post17/mdx-output-page.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post17/mdx-output-page.webp -------------------------------------------------------------------------------- /web/assets/blog/post17/mdx-settings.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post17/mdx-settings.webp -------------------------------------------------------------------------------- /web/assets/blog/post17/mdx-widget.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post17/mdx-widget.webp -------------------------------------------------------------------------------- /web/assets/blog/post17/musescore-error.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post17/musescore-error.webp -------------------------------------------------------------------------------- /web/assets/blog/post17/printable-sheet-music.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post17/printable-sheet-music.webp -------------------------------------------------------------------------------- /web/assets/blog/post18/intro_meme.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post18/intro_meme.webp -------------------------------------------------------------------------------- /web/assets/blog/post18/ytdlp_meme.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post18/ytdlp_meme.webp -------------------------------------------------------------------------------- /web/assets/blog/post2/waveform.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post2/waveform.webp -------------------------------------------------------------------------------- /web/assets/blog/post20/clip.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post20/clip.mp4 -------------------------------------------------------------------------------- /web/assets/blog/post20/screen1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post20/screen1.webp -------------------------------------------------------------------------------- /web/assets/blog/post20/screen2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post20/screen2.webp -------------------------------------------------------------------------------- /web/assets/blog/post20/screen3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post20/screen3.webp -------------------------------------------------------------------------------- /web/assets/blog/post20/screen4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post20/screen4.webp -------------------------------------------------------------------------------- /web/assets/blog/post20/screen5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post20/screen5.webp -------------------------------------------------------------------------------- /web/assets/blog/post3/mixdemix.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post3/mixdemix.webp -------------------------------------------------------------------------------- /web/assets/blog/post6/model_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post6/model_comparison.png -------------------------------------------------------------------------------- /web/assets/blog/post9/yearly-billing-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post9/yearly-billing-2.webp -------------------------------------------------------------------------------- /web/assets/blog/post9/yearly-billing-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post9/yearly-billing-3.webp -------------------------------------------------------------------------------- /web/assets/blog/post9/yearly-billing-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post9/yearly-billing-4.webp -------------------------------------------------------------------------------- /web/assets/blog/post9/yearly-billing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/blog/post9/yearly-billing.webp -------------------------------------------------------------------------------- /web/assets/clips/old_macdonald_piano_midi.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/old_macdonald_piano_midi.mp3 -------------------------------------------------------------------------------- /web/assets/clips/old_macdonald_piano_waveform.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/old_macdonald_piano_waveform.mp3 -------------------------------------------------------------------------------- /web/assets/clips/paranoid_jaxius_bass_free.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/paranoid_jaxius_bass_free.mp3 -------------------------------------------------------------------------------- /web/assets/clips/paranoid_jaxius_bass_pro.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/paranoid_jaxius_bass_pro.mp3 -------------------------------------------------------------------------------- /web/assets/clips/paranoid_jaxius_drums_free.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/paranoid_jaxius_drums_free.mp3 -------------------------------------------------------------------------------- /web/assets/clips/paranoid_jaxius_drums_pro.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/paranoid_jaxius_drums_pro.mp3 -------------------------------------------------------------------------------- /web/assets/clips/paranoid_jaxius_melody_free.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/paranoid_jaxius_melody_free.mp3 -------------------------------------------------------------------------------- /web/assets/clips/paranoid_jaxius_melody_pro.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/paranoid_jaxius_melody_pro.mp3 -------------------------------------------------------------------------------- /web/assets/clips/paranoid_jaxius_vocals_free.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/paranoid_jaxius_vocals_free.mp3 -------------------------------------------------------------------------------- /web/assets/clips/paranoid_jaxius_vocals_pro.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/paranoid_jaxius_vocals_pro.mp3 -------------------------------------------------------------------------------- /web/assets/clips/spleeter/shimmy_bass_bad.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/spleeter/shimmy_bass_bad.mp3 -------------------------------------------------------------------------------- /web/assets/clips/spleeter/shimmy_bass_good.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/spleeter/shimmy_bass_good.mp3 -------------------------------------------------------------------------------- /web/assets/clips/spleeter/shimmy_drums_bad.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/spleeter/shimmy_drums_bad.mp3 -------------------------------------------------------------------------------- /web/assets/clips/spleeter/shimmy_drums_good.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/spleeter/shimmy_drums_good.mp3 -------------------------------------------------------------------------------- /web/assets/clips/spleeter/shimmy_instrum_bad.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/spleeter/shimmy_instrum_bad.mp3 -------------------------------------------------------------------------------- /web/assets/clips/spleeter/shimmy_instrum_good.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/spleeter/shimmy_instrum_good.mp3 -------------------------------------------------------------------------------- /web/assets/clips/spleeter/shimmy_piano_bad.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/spleeter/shimmy_piano_bad.mp3 -------------------------------------------------------------------------------- /web/assets/clips/spleeter/shimmy_piano_good.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/spleeter/shimmy_piano_good.mp3 -------------------------------------------------------------------------------- /web/assets/clips/spleeter/shimmy_vocal_bad.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/spleeter/shimmy_vocal_bad.mp3 -------------------------------------------------------------------------------- /web/assets/clips/spleeter/shimmy_vocal_good.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/clips/spleeter/shimmy_vocal_good.mp3 -------------------------------------------------------------------------------- /web/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/css/style.scss -------------------------------------------------------------------------------- /web/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/favicon.ico -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-Black.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-BlackItalic.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-Bold.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-BoldItalic.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-ExtraBold.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-ExtraLight.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-Italic.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-Light.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-LightItalic.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-Medium.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-MediumItalic.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-Regular.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-SemiBold.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-Thin.woff2 -------------------------------------------------------------------------------- /web/assets/fonts/Poppins-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/fonts/Poppins-ThinItalic.woff2 -------------------------------------------------------------------------------- /web/assets/images/ai-meme.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/ai-meme.webp -------------------------------------------------------------------------------- /web/assets/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/bullet.png -------------------------------------------------------------------------------- /web/assets/images/cyantocat.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/cyantocat.webp -------------------------------------------------------------------------------- /web/assets/images/dismiss.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/dismiss.webp -------------------------------------------------------------------------------- /web/assets/images/dobson_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/dobson_logo.webp -------------------------------------------------------------------------------- /web/assets/images/dobson_logo_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/dobson_logo_white.webp -------------------------------------------------------------------------------- /web/assets/images/ig_banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/ig_banner.webp -------------------------------------------------------------------------------- /web/assets/images/karaoke-lively-banner-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/karaoke-lively-banner-small.webp -------------------------------------------------------------------------------- /web/assets/images/karaoke-recording-studio-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/karaoke-recording-studio-small.webp -------------------------------------------------------------------------------- /web/assets/images/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/logo.webp -------------------------------------------------------------------------------- /web/assets/images/logo_free.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/logo_free.webp -------------------------------------------------------------------------------- /web/assets/images/logo_karaoke.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/logo_karaoke.webp -------------------------------------------------------------------------------- /web/assets/images/logo_pro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/logo_pro.webp -------------------------------------------------------------------------------- /web/assets/images/logo_realtime.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/logo_realtime.webp -------------------------------------------------------------------------------- /web/assets/images/logo_whitebg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/logo_whitebg.webp -------------------------------------------------------------------------------- /web/assets/images/midi-amt-dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/midi-amt-dark.webp -------------------------------------------------------------------------------- /web/assets/images/midi-amt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/midi-amt.webp -------------------------------------------------------------------------------- /web/assets/images/model_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/model_comparison.png -------------------------------------------------------------------------------- /web/assets/images/model_comparison.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/model_comparison.webp -------------------------------------------------------------------------------- /web/assets/images/music-demix-dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/music-demix-dark.webp -------------------------------------------------------------------------------- /web/assets/images/music-demix.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/music-demix.webp -------------------------------------------------------------------------------- /web/assets/images/popup_app.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/popup_app.webp -------------------------------------------------------------------------------- /web/assets/images/popup_pro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/popup_pro.webp -------------------------------------------------------------------------------- /web/assets/images/popup_web.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/popup_web.webp -------------------------------------------------------------------------------- /web/assets/images/sheet-music-are-you-sleeping.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/sheet-music-are-you-sleeping.webp -------------------------------------------------------------------------------- /web/assets/images/sideload.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/images/sideload.webp -------------------------------------------------------------------------------- /web/assets/social/facebook-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/social/facebook-dark.svg -------------------------------------------------------------------------------- /web/assets/social/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/social/facebook.svg -------------------------------------------------------------------------------- /web/assets/social/reddit-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/social/reddit-dark.svg -------------------------------------------------------------------------------- /web/assets/social/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/social/reddit.svg -------------------------------------------------------------------------------- /web/assets/social/rss-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/social/rss-dark.svg -------------------------------------------------------------------------------- /web/assets/social/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/social/rss.svg -------------------------------------------------------------------------------- /web/assets/social/x-twitter-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/social/x-twitter-dark.svg -------------------------------------------------------------------------------- /web/assets/social/x-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/social/x-twitter.svg -------------------------------------------------------------------------------- /web/assets/social/y-combinator-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/social/y-combinator-dark.svg -------------------------------------------------------------------------------- /web/assets/social/y-combinator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/assets/social/y-combinator.svg -------------------------------------------------------------------------------- /web/basicpitch_mxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/basicpitch_mxml.js -------------------------------------------------------------------------------- /web/basicpitch_mxml.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/basicpitch_mxml.wasm -------------------------------------------------------------------------------- /web/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/blog.js -------------------------------------------------------------------------------- /web/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/blog.md -------------------------------------------------------------------------------- /web/demucs_onnx_simd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/demucs_onnx_simd.js -------------------------------------------------------------------------------- /web/demucs_onnx_simd.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/demucs_onnx_simd.wasm -------------------------------------------------------------------------------- /web/faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/faqs.md -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/functions/getprocontent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/functions/getprocontent.js -------------------------------------------------------------------------------- /web/functions/sendmobileemail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/functions/sendmobileemail.js -------------------------------------------------------------------------------- /web/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/index.md -------------------------------------------------------------------------------- /web/ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/ios.md -------------------------------------------------------------------------------- /web/karaoke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/karaoke.md -------------------------------------------------------------------------------- /web/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/main.js -------------------------------------------------------------------------------- /web/midi-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/midi-worker.js -------------------------------------------------------------------------------- /web/midi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/midi.md -------------------------------------------------------------------------------- /web/pricing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/pricing.md -------------------------------------------------------------------------------- /web/private-ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/private-ai.md -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- 1 | --- 2 | layout: none 3 | --- 4 | {% include robots.txt %} 5 | -------------------------------------------------------------------------------- /web/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/service-worker.js -------------------------------------------------------------------------------- /web/sheet-music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/sheet-music.md -------------------------------------------------------------------------------- /web/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/sitemap.xml -------------------------------------------------------------------------------- /web/stem-separation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/stem-separation.md -------------------------------------------------------------------------------- /web/stem-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/stem-worker.js -------------------------------------------------------------------------------- /web/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/support.md -------------------------------------------------------------------------------- /web/vs-ezstems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/vs-ezstems.md -------------------------------------------------------------------------------- /web/vs-izotope-rx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/vs-izotope-rx.md -------------------------------------------------------------------------------- /web/vs-lalalai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/vs-lalalai.md -------------------------------------------------------------------------------- /web/vs-spleeter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/vs-spleeter.md -------------------------------------------------------------------------------- /web/vs-vocalremover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevagh/free-music-demixer/HEAD/web/vs-vocalremover.md --------------------------------------------------------------------------------