Skip to main content
Skip table of contents

Update from existing CAE 2.0.x to 2.1.x settings.json

Remove eaoSettings section, migrate to caeSettings/export

Reason: Unused settings removed.

  • Migrate eaoSettings/transcodingBackend/virtualPath to caeSettings/export/defaultTable

  • Migrate eaoSettings/transcodingBackend/uploadService to caeSettings/export/uploadUrl

  • The remaining eaoSettings are obsolete and can be removed

Old values from CAE 2.0.x

New values in CAE 2.1.x

JSON
"eaoSettings": {
	"transcodingBackend": {
   		"customHeaders": {
   			"Dpe-Auth": "${authenticationToken}"
		},
   		"userName": "Do not use",
   		"password": "Do not use",
   		"computerName": "",
   		"authenticationType": "dpe",
    	"virtualPath": "VM-SQL-DIGAS\\Galileo",
    	"uploadService": "https://dpe.davidsystems.com/DpeWebApplication/UploadMedium.ashx?tableid=${virtualPath}&entryid=${uploadId}",
    	"waveformService": "https://dpe.davidsystems.com/DpeWebApplication/Waveform.ashx?tableid=${virtualPath}&entryid=${uploadId}",
    	"lowResService": "https://dpe.davidsystems.com/DpeWebApplication/Media.ashx?tableid=${virtualPath}&entryid=${uploadId}&main=true"
	}
}

JSON
"caeSettings": {
    ...
    "export": {
      "defaultTable": "VM-SQL-DIGAS\\Galileo",
      "uploadUrl": "https://dpe.davidsystems-test.com/DpeWebApplication/UploadMedium.ashx?tableid=${virtualPath}&entryid=${uploadId}"
    }
    ...
}

Add caeSettings/record section

Reason: New settings.

Section to add

JSON
"record": {
      "echoCancellation": false,
      "noiseSuppression": false,
      "autoGainControl": false,
      "channelCount": 2
},

Add caeSettings/waveformView section

Reason: New settings.

Section to add

JSON
"waveformView": {
      "autoWaveformToBlockDuration": 2000
},

Cleanup/Fix Number and Boolean types

Some settings have wrong types, an can be fixed quickly by:

  • removing quotes around boolean values e.g. rename “false“ to false

  • removing quotes around number values e.g. rename “2000“ to 2000

Apply the change on following settings:

  • caeSettings/importFilePath/keepDecodedMp2InMemory (boolean)

  • caeSettings/saveLoadProject/useLegacyFormat (boolean)

  • caeSettings/transport/prelistenDuration (number)

  • caeSettings/textArea/minimumDurationForSilenceDetection (number)

  • caeSettings/textArea/levelForSilenceDetection (number)

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.