comparison Resources/Configuration.json @ 3894:8f7ad4989fec transcoding

transcoding to uncompressed transfer syntaxes over DICOM protocol is implemented
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 07 May 2020 11:13:29 +0200
parents ee0a1211419f
children 0ef7f4528be2
comparison
equal deleted inserted replaced
3893:7a5fa8f307e9 3894:8f7ad4989fec
207 * By default, the Orthanc SCP accepts all DICOM commands (C-ECHO, 207 * By default, the Orthanc SCP accepts all DICOM commands (C-ECHO,
208 * C-STORE, C-FIND, C-MOVE, and storage commitment) issued by the 208 * C-STORE, C-FIND, C-MOVE, and storage commitment) issued by the
209 * registered remote SCU modalities. Starting with Orthanc 1.5.0, 209 * registered remote SCU modalities. Starting with Orthanc 1.5.0,
210 * it is possible to specify which DICOM commands are allowed, 210 * it is possible to specify which DICOM commands are allowed,
211 * separately for each remote modality, using the syntax 211 * separately for each remote modality, using the syntax
212 * below. The "AllowEcho" (resp. "AllowStore") option only has an 212 * below.
213 * effect respectively if global option "DicomAlwaysAllowEcho" 213 *
214 * (resp. "DicomAlwaysAllowStore") is set to false. 214 * The "AllowEcho" (resp. "AllowStore") option only has an effect
215 * respectively if global option "DicomAlwaysAllowEcho"
216 * (resp. "DicomAlwaysAllowStore") is set to "false".
217 *
218 * Starting with Orthanc 1.7.0, "AllowTranscoding" can be used to
219 * disable the transcoding to uncompressed transfer syntaxes if
220 * the remote modality doesn't support compressed transfer
221 * syntaxes. This option only has an effect if global option
222 * "EnableTranscoding" is set to "true".
215 **/ 223 **/
216 //"untrusted" : { 224 //"untrusted" : {
217 // "AET" : "ORTHANC", 225 // "AET" : "ORTHANC",
218 // "Port" : 104, 226 // "Port" : 104,
219 // "Host" : "127.0.0.1", 227 // "Host" : "127.0.0.1",
220 // "Manufacturer" : "Generic", 228 // "Manufacturer" : "Generic",
221 // "AllowEcho" : false, 229 // "AllowEcho" : false,
222 // "AllowFind" : false, 230 // "AllowFind" : false,
223 // "AllowMove" : false, 231 // "AllowMove" : false,
224 // "AllowStore" : true, 232 // "AllowStore" : true,
225 // "AllowStorageCommitment" : false // new in 1.6.0 233 // "AllowStorageCommitment" : false, // new in 1.6.0
234 // "AllowTranscoding" : true // new in 1.7.0
226 //} 235 //}
227 }, 236 },
228 237
229 // Whether to store the DICOM modalities in the Orthanc database 238 // Whether to store the DICOM modalities in the Orthanc database
230 // instead of in this configuration file (new in Orthanc 1.5.0) 239 // instead of in this configuration file (new in Orthanc 1.5.0)
530 // option), or when it creates/modifies a DICOM file (new in Orthanc 1.6.0). 539 // option), or when it creates/modifies a DICOM file (new in Orthanc 1.6.0).
531 "DefaultPrivateCreator" : "", 540 "DefaultPrivateCreator" : "",
532 541
533 // Maximum number of storage commitment reports (i.e. received from 542 // Maximum number of storage commitment reports (i.e. received from
534 // remote modalities) to be kept in memory (new in Orthanc 1.6.0). 543 // remote modalities) to be kept in memory (new in Orthanc 1.6.0).
535 "StorageCommitmentReportsSize" : 100 544 "StorageCommitmentReportsSize" : 100,
545
546 // Whether Orthanc transcodes DICOM files to an uncompressed
547 // transfer syntax, if remote modalities do not support compressed
548 // transfer syntaxes (new in Orthanc 1.7.0).
549 "TranscodingEnabled" : true
536 } 550 }