├── .gitmodules ├── LICENSE ├── README.md ├── black-box ├── HSJA_signal_audiomarkdata.py ├── HSJA_signal_librispeech.py ├── HSJA_spectrogram_audiomarkdata.py ├── HSJA_spectrogram_librispeech.py ├── hop_skip_jump.py ├── run_blackbox.sh ├── square_audiomarkdata.py └── square_librispeech.py ├── no-box ├── .DS_Store ├── encodec_visqol.py ├── nobox_audioseal_audiomarkdata.py ├── nobox_audioseal_librispeech.py ├── nobox_timbre_audiomarkdata.py ├── nobox_timbre_librispeech.py ├── nobox_wavmark_audiomarkdata.py ├── nobox_wavmark_librispeech.py └── run_nobox.sh ├── requirements.txt └── white-box ├── run_whitebox.sh ├── whitebox_forgery.py └── whitebox_removal.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/README.md -------------------------------------------------------------------------------- /black-box/HSJA_signal_audiomarkdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/black-box/HSJA_signal_audiomarkdata.py -------------------------------------------------------------------------------- /black-box/HSJA_signal_librispeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/black-box/HSJA_signal_librispeech.py -------------------------------------------------------------------------------- /black-box/HSJA_spectrogram_audiomarkdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/black-box/HSJA_spectrogram_audiomarkdata.py -------------------------------------------------------------------------------- /black-box/HSJA_spectrogram_librispeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/black-box/HSJA_spectrogram_librispeech.py -------------------------------------------------------------------------------- /black-box/hop_skip_jump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/black-box/hop_skip_jump.py -------------------------------------------------------------------------------- /black-box/run_blackbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/black-box/run_blackbox.sh -------------------------------------------------------------------------------- /black-box/square_audiomarkdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/black-box/square_audiomarkdata.py -------------------------------------------------------------------------------- /black-box/square_librispeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/black-box/square_librispeech.py -------------------------------------------------------------------------------- /no-box/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/no-box/.DS_Store -------------------------------------------------------------------------------- /no-box/encodec_visqol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/no-box/encodec_visqol.py -------------------------------------------------------------------------------- /no-box/nobox_audioseal_audiomarkdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/no-box/nobox_audioseal_audiomarkdata.py -------------------------------------------------------------------------------- /no-box/nobox_audioseal_librispeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/no-box/nobox_audioseal_librispeech.py -------------------------------------------------------------------------------- /no-box/nobox_timbre_audiomarkdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/no-box/nobox_timbre_audiomarkdata.py -------------------------------------------------------------------------------- /no-box/nobox_timbre_librispeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/no-box/nobox_timbre_librispeech.py -------------------------------------------------------------------------------- /no-box/nobox_wavmark_audiomarkdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/no-box/nobox_wavmark_audiomarkdata.py -------------------------------------------------------------------------------- /no-box/nobox_wavmark_librispeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/no-box/nobox_wavmark_librispeech.py -------------------------------------------------------------------------------- /no-box/run_nobox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/no-box/run_nobox.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/requirements.txt -------------------------------------------------------------------------------- /white-box/run_whitebox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/white-box/run_whitebox.sh -------------------------------------------------------------------------------- /white-box/whitebox_forgery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/white-box/whitebox_forgery.py -------------------------------------------------------------------------------- /white-box/whitebox_removal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mileskuo42/AudioMarkBench/HEAD/white-box/whitebox_removal.py --------------------------------------------------------------------------------