comparison Resources/Configuration.json @ 3931:e6606d3ec892 transcoding

new configuration option: BuiltinDecoderTranscoderOrder
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 15 May 2020 09:22:31 +0200
parents 0ef7f4528be2
children 41eec97c23ef
comparison
equal deleted inserted replaced
3930:b99acc213937 3931:e6606d3ec892
544 "StorageCommitmentReportsSize" : 100, 544 "StorageCommitmentReportsSize" : 100,
545 545
546 // Whether Orthanc transcodes DICOM files to an uncompressed 546 // Whether Orthanc transcodes DICOM files to an uncompressed
547 // transfer syntax over the DICOM protocol, if the remote modality 547 // transfer syntax over the DICOM protocol, if the remote modality
548 // does not support compressed transfer syntaxes (new in Orthanc 1.7.0). 548 // does not support compressed transfer syntaxes (new in Orthanc 1.7.0).
549 "TranscodeDicomProtocol" : true 549 "TranscodeDicomProtocol" : true,
550
551 // If some plugin to decode/transcode DICOM instances is installed,
552 // this option specifies whether the built-in decoder/transcoder of
553 // Orthanc (that uses DCMTK) is applied before or after the plugins,
554 // or is not applied at all. The allowed values for this option are
555 // "After" (default value), "Before", or "Disabled". (new in Orthanc 1.7.0)
556 "BuiltinDecoderTranscoderOrder" : "After"
550 } 557 }