├── .gitignore ├── LICENSE ├── README.md ├── config.ini ├── demos ├── data_48k │ ├── file_id.scp │ ├── file_id_predict.scp │ ├── labs │ │ ├── hvd_577.lab │ │ ├── hvd_589.lab │ │ ├── hvd_590.lab │ │ ├── hvd_591.lab │ │ ├── hvd_592.lab │ │ ├── hvd_593.lab │ │ ├── hvd_594.lab │ │ ├── hvd_595.lab │ │ ├── hvd_596.lab │ │ └── hvd_597.lab │ ├── params_predicted │ │ ├── hvd_704.imag │ │ ├── hvd_704.lf0 │ │ ├── hvd_704.mag │ │ ├── hvd_704.real │ │ ├── hvd_705.imag │ │ ├── hvd_705.lf0 │ │ ├── hvd_705.mag │ │ ├── hvd_705.real │ │ ├── hvd_706.imag │ │ ├── hvd_706.lf0 │ │ ├── hvd_706.mag │ │ ├── hvd_706.real │ │ ├── hvd_708.imag │ │ ├── hvd_708.lf0 │ │ ├── hvd_708.mag │ │ └── hvd_708.real │ └── wavs_nat │ │ ├── hvd_577.wav │ │ ├── hvd_589.wav │ │ ├── hvd_590.wav │ │ ├── hvd_591.wav │ │ ├── hvd_592.wav │ │ ├── hvd_593.wav │ │ ├── hvd_594.wav │ │ ├── hvd_595.wav │ │ ├── hvd_596.wav │ │ └── hvd_597.wav ├── demo_copy_synthesis_lossless.py └── demo_copy_synthesis_low_dim.py ├── development ├── compare_mags.py └── run_merlin_experiment.py ├── scripts ├── README.md ├── batch_convert_label_state_aligned_to_variable_frame_rate.py ├── batch_feature_extraction_for_tts.py └── batch_waveform_generation.py ├── src ├── __init__.py ├── libaudio.py ├── libplot.py ├── libutils.py └── magphase.py └── tools └── download_and_compile_tools.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/README.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/config.ini -------------------------------------------------------------------------------- /demos/data_48k/file_id.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/file_id.scp -------------------------------------------------------------------------------- /demos/data_48k/file_id_predict.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/file_id_predict.scp -------------------------------------------------------------------------------- /demos/data_48k/labs/hvd_577.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/labs/hvd_577.lab -------------------------------------------------------------------------------- /demos/data_48k/labs/hvd_589.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/labs/hvd_589.lab -------------------------------------------------------------------------------- /demos/data_48k/labs/hvd_590.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/labs/hvd_590.lab -------------------------------------------------------------------------------- /demos/data_48k/labs/hvd_591.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/labs/hvd_591.lab -------------------------------------------------------------------------------- /demos/data_48k/labs/hvd_592.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/labs/hvd_592.lab -------------------------------------------------------------------------------- /demos/data_48k/labs/hvd_593.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/labs/hvd_593.lab -------------------------------------------------------------------------------- /demos/data_48k/labs/hvd_594.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/labs/hvd_594.lab -------------------------------------------------------------------------------- /demos/data_48k/labs/hvd_595.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/labs/hvd_595.lab -------------------------------------------------------------------------------- /demos/data_48k/labs/hvd_596.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/labs/hvd_596.lab -------------------------------------------------------------------------------- /demos/data_48k/labs/hvd_597.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/labs/hvd_597.lab -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_704.imag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_704.imag -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_704.lf0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_704.lf0 -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_704.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_704.mag -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_704.real: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_704.real -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_705.imag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_705.imag -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_705.lf0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_705.lf0 -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_705.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_705.mag -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_705.real: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_705.real -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_706.imag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_706.imag -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_706.lf0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_706.lf0 -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_706.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_706.mag -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_706.real: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_706.real -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_708.imag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_708.imag -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_708.lf0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_708.lf0 -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_708.mag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_708.mag -------------------------------------------------------------------------------- /demos/data_48k/params_predicted/hvd_708.real: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/params_predicted/hvd_708.real -------------------------------------------------------------------------------- /demos/data_48k/wavs_nat/hvd_577.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/wavs_nat/hvd_577.wav -------------------------------------------------------------------------------- /demos/data_48k/wavs_nat/hvd_589.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/wavs_nat/hvd_589.wav -------------------------------------------------------------------------------- /demos/data_48k/wavs_nat/hvd_590.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/wavs_nat/hvd_590.wav -------------------------------------------------------------------------------- /demos/data_48k/wavs_nat/hvd_591.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/wavs_nat/hvd_591.wav -------------------------------------------------------------------------------- /demos/data_48k/wavs_nat/hvd_592.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/wavs_nat/hvd_592.wav -------------------------------------------------------------------------------- /demos/data_48k/wavs_nat/hvd_593.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/wavs_nat/hvd_593.wav -------------------------------------------------------------------------------- /demos/data_48k/wavs_nat/hvd_594.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/wavs_nat/hvd_594.wav -------------------------------------------------------------------------------- /demos/data_48k/wavs_nat/hvd_595.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/wavs_nat/hvd_595.wav -------------------------------------------------------------------------------- /demos/data_48k/wavs_nat/hvd_596.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/wavs_nat/hvd_596.wav -------------------------------------------------------------------------------- /demos/data_48k/wavs_nat/hvd_597.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/data_48k/wavs_nat/hvd_597.wav -------------------------------------------------------------------------------- /demos/demo_copy_synthesis_lossless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/demo_copy_synthesis_lossless.py -------------------------------------------------------------------------------- /demos/demo_copy_synthesis_low_dim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/demos/demo_copy_synthesis_low_dim.py -------------------------------------------------------------------------------- /development/compare_mags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/development/compare_mags.py -------------------------------------------------------------------------------- /development/run_merlin_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/development/run_merlin_experiment.py -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- 1 | # Demo for Merlin (Deprecated) 2 | 3 | -------------------------------------------------------------------------------- /scripts/batch_convert_label_state_aligned_to_variable_frame_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/scripts/batch_convert_label_state_aligned_to_variable_frame_rate.py -------------------------------------------------------------------------------- /scripts/batch_feature_extraction_for_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/scripts/batch_feature_extraction_for_tts.py -------------------------------------------------------------------------------- /scripts/batch_waveform_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/scripts/batch_waveform_generation.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libaudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/src/libaudio.py -------------------------------------------------------------------------------- /src/libplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/src/libplot.py -------------------------------------------------------------------------------- /src/libutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/src/libutils.py -------------------------------------------------------------------------------- /src/magphase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/src/magphase.py -------------------------------------------------------------------------------- /tools/download_and_compile_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSTR-Edinburgh/magphase/HEAD/tools/download_and_compile_tools.sh --------------------------------------------------------------------------------