You can not use older DAFF files in Virtual Acoustics, because VA has been built against the current OpenDAFF version 1.7. However, you can convert a DAFF v15 to a DAFF v17 conveniently using the ITA-Toolbox, if you have Matlab at your disposal. The Matlab call would be
daffv17_convert_from_daffv15( hrirv15_input_file_path, hrirv17_output_file_path, [] )
You can also add further metadata, just add as last argument a metadata struct that can be created by
md = daffv17_add_metadata( [], "Measurement year", "int", 2011 )
md = daffv17_add_metadata( md, "Measurement microphone", "string", "Fabian dummy head" )
so final call would be
daffv17_convert_from_daffv15( hrirv15_input_file_path, hrirv17_output_file_path, md )
The converted DAFF HRIR is then compatible and can be loaded by VA.
itaHRTFfrom SOFA file and export it as DAFF v17 usingwriteDAFFFile. – JST Oct 11 '17 at 18:54