Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
BobanSpasic committed Nov 12, 2023
2 parents 5db93b7 + 6fe56de commit 7004d1c
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 deletions.
31 changes: 29 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,38 @@ jobs:
cd ..
mkdir -p lib/x86_64-linux/ bin/Linux/
bash -ex compile.sh
# Convert dx7ii performances for testing
wget -q "https://github.com/asb2m10/dexed/files/10782404/DX7IIfd.ROM1A.zip" # https://github.com/asb2m10/dexed/issues/165#issuecomment-1436586010
unzip DX7IIfd.ROM1A.zip
# TODO: Use "DX7IIfd ROM1A 1-32.syx" and "DX7IIfd ROM1A 33-64.syx" AMEM
wget -q "https://yamahablackboxes.com/patches/dx7ii/voices/dx7iifdvoice32.syx"
wget -q "https://yamahablackboxes.com/patches/dx7ii/voices/dx7iifdvoice64.syx"
wget -q "https://yamahablackboxes.com/patches/dx7ii/performances/dx7iifdperf.syx"
bin/Linux/MDX_PerfConv --info -a dx7iifdvoice32.syx -b dx7iifdvoice64.syx -p dx7iifdperf.syx
bin/Linux/MDX_PerfConv -c -a dx7iifdvoice32.syx -b dx7iifdvoice64.syx -p dx7iifdperf.syx
wget -q "https://yamahablackboxes.com/patches/dx7ii/voices/dx7iifdvoice32b.syx"
wget -q "https://yamahablackboxes.com/patches/dx7ii/voices/dx7iifdvoice64b.syx"
wget -q "https://yamahablackboxes.com/patches/dx7ii/performances/dx7iifdperfb.syx"
bin/Linux/MDX_PerfConv --info -a dx7iifdvoice32b.syx -b dx7iifdvoice64b.syx -p dx7iifdperfb.syx
bin/Linux/MDX_PerfConv -c -n 33 -a dx7iifdvoice32b.syx -b dx7iifdvoice64b.syx -p dx7iifdperfb.syx
# TODO: Convert TX802 performances for testing
# wget -q "http://hsjp.eu/downloads/Dexed/Dexed_cart_1.0.zip"
# unzip -q Dexed_cart_1.0.zip
# bin/Linux/MDX_PerfConv --info -a "./Dexed_cart_1.0/Original Yamaha/TX802/TX802BankA1.SYX" -b "./Dexed_cart_1.0/Original Yamaha/TX802/TX802BankB1.SYX" -p "./Dexed_cart_1.0/Original Yamaha/TX802/TX802_Factory_Performances.syx"
# bin/Linux/MDX_PerfConv -c -n 65 -a "./Dexed_cart_1.0/Original Yamaha/TX802/TX802BankA1.SYX" -b "./Dexed_cart_1.0/Original Yamaha/TX802/TX802BankB1.SYX" -p "./Dexed_cart_1.0/Original Yamaha/TX802/TX802_Factory_Performances.syx"
# wget "https://github.com/asb2m10/dexed/files/5360597/tx802bankb-fixed.zip"
# unzip tx802bankb-fixed.zip
ls -lh
zip -r dx7iifd.zip *.ini
shell: bash

- name: Upload binary to artifacts
uses: actions/upload-artifact@v2
with:
name: mdx_perfconv
path: bin/Linux/MDX_PerfConv
path: |
bin/Linux/MDX_PerfConv
dx7iifd.zip
- name: Cleanup Old Releases
if: github.ref == 'refs/heads/main'
Expand All @@ -48,7 +73,9 @@ jobs:
id: create_release
uses: softprops/action-gh-release@v1
with:
files: bin/Linux/MDX_PerfConv
files: |
bin/Linux/MDX_PerfConv
dx7iifd.zip
tag_name: continuous
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# MDX_PerfConv
# MDX_PerfConv [![Build and Release](../../actions/workflows/build.yml/badge.svg)](../../actions/workflows/build.yml)

MiniDexed performance converter - convert TX7, DX7II, DX5 etc. function and performance banks into MiniDexed format

Usage:
Expand All @@ -15,6 +16,8 @@ Usage:
-A (filename) --voiceA2=(filename) Path to voice bank A2
-B (filename) --voiceB2=(filename) Path to voice bank B2
-p (filename) --perf=(filename) Path to performance file
-n (number) --numbering=(number) First number for filenames
of the output performances

Parameters are CASE-SENSITIVE

Expand Down

0 comments on commit 7004d1c

Please sign in to comment.