media.wsdl 167 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <?xml-stylesheet type="text/xsl" href="../../../ver20/util/onvif-wsdl-viewer.xsl"?>
  3. <!--
  4. Copyright (c) 2008-2012 by ONVIF: Open Network Video Interface Forum. All rights reserved.
  5. Recipients of this document may copy, distribute, publish, or display this document so long as this copyright notice, license and disclaimer are retained with all copies of the document. No license is granted to modify this document.
  6. THIS DOCUMENT IS PROVIDED "AS IS," AND THE CORPORATION AND ITS MEMBERS AND THEIR AFFILIATES, MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THIS DOCUMENT ARE SUITABLE FOR ANY PURPOSE; OR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
  7. IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, ARISING OUT OF OR RELATING TO ANY USE OR DISTRIBUTION OF THIS DOCUMENT, WHETHER OR NOT (1) THE CORPORATION, MEMBERS OR THEIR AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR (2) SUCH DAMAGES WERE REASONABLY FORESEEABLE, AND ARISING OUT OF OR RELATING TO ANY USE OR DISTRIBUTION OF THIS DOCUMENT. THE FOREGOING DISCLAIMER AND LIMITATION ON LIABILITY DO NOT APPLY TO, INVALIDATE, OR LIMIT REPRESENTATIONS AND WARRANTIES MADE BY THE MEMBERS AND THEIR RESPECTIVE AFFILIATES TO THE CORPORATION AND OTHER MEMBERS IN CERTAIN WRITTEN POLICIES OF THE CORPORATION.
  8. -->
  9. <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:trt="http://www.onvif.org/ver10/media/wsdl" targetNamespace="http://www.onvif.org/ver10/media/wsdl">
  10. <wsdl:types>
  11. <xs:schema targetNamespace="http://www.onvif.org/ver10/media/wsdl" xmlns:tt="http://www.onvif.org/ver10/schema" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="2.4.1">
  12. <xs:import namespace="http://www.onvif.org/ver10/schema" schemaLocation="onvif.xsd"/>
  13. <!-- Message Request/Responses elements -->
  14. <!--===============================-->
  15. <xs:element name="GetServiceCapabilities">
  16. <xs:complexType>
  17. <xs:sequence/>
  18. </xs:complexType>
  19. </xs:element>
  20. <xs:element name="GetServiceCapabilitiesResponse">
  21. <xs:complexType>
  22. <xs:sequence>
  23. <xs:element name="Capabilities" type="trt:Capabilities">
  24. <xs:annotation>
  25. <xs:documentation>The capabilities for the media service is returned in the Capabilities element.</xs:documentation>
  26. </xs:annotation>
  27. </xs:element>
  28. </xs:sequence>
  29. </xs:complexType>
  30. </xs:element>
  31. <!--===============================-->
  32. <xs:complexType name="Capabilities">
  33. <xs:sequence>
  34. <xs:element name="ProfileCapabilities" type="trt:ProfileCapabilities">
  35. <xs:annotation>
  36. <xs:documentation>Media profile capabilities.</xs:documentation>
  37. </xs:annotation>
  38. </xs:element>
  39. <xs:element name="StreamingCapabilities" type="trt:StreamingCapabilities">
  40. <xs:annotation>
  41. <xs:documentation>Streaming capabilities.</xs:documentation>
  42. </xs:annotation>
  43. </xs:element>
  44. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  45. </xs:sequence>
  46. <xs:attribute name="SnapshotUri" type="xs:boolean">
  47. <xs:annotation>
  48. <xs:documentation>Indicates if GetSnapshotUri is supported.</xs:documentation>
  49. </xs:annotation>
  50. </xs:attribute>
  51. <xs:attribute name="Rotation" type="xs:boolean">
  52. <xs:annotation>
  53. <xs:documentation>Indicates whether or not Rotation feature is supported.</xs:documentation>
  54. </xs:annotation>
  55. </xs:attribute>
  56. <xs:attribute name="VideoSourceMode" type="xs:boolean">
  57. <xs:annotation>
  58. <xs:documentation>Indicates the support for changing video source mode.</xs:documentation>
  59. </xs:annotation>
  60. </xs:attribute>
  61. <xs:attribute name="OSD" type="xs:boolean">
  62. <xs:annotation>
  63. <xs:documentation>Indicates if OSD is supported.</xs:documentation>
  64. </xs:annotation>
  65. </xs:attribute>
  66. <xs:anyAttribute processContents="lax"/>
  67. </xs:complexType>
  68. <xs:element name="Capabilities" type="trt:Capabilities"/>
  69. <!--===============================-->
  70. <xs:complexType name="ProfileCapabilities">
  71. <xs:sequence>
  72. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  73. </xs:sequence>
  74. <xs:attribute name="MaximumNumberOfProfiles" type="xs:int">
  75. <xs:annotation>
  76. <xs:documentation>Maximum number of profiles supported.</xs:documentation>
  77. </xs:annotation>
  78. </xs:attribute>
  79. <xs:anyAttribute processContents="lax"/>
  80. </xs:complexType>
  81. <!--===============================-->
  82. <xs:complexType name="StreamingCapabilities">
  83. <xs:sequence>
  84. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  85. </xs:sequence>
  86. <xs:attribute name="RTPMulticast" type="xs:boolean">
  87. <xs:annotation>
  88. <xs:documentation>Indicates support for RTP multicast.</xs:documentation>
  89. </xs:annotation>
  90. </xs:attribute>
  91. <xs:attribute name="RTP_TCP" type="xs:boolean">
  92. <xs:annotation>
  93. <xs:documentation>Indicates support for RTP over TCP.</xs:documentation>
  94. </xs:annotation>
  95. </xs:attribute>
  96. <xs:attribute name="RTP_RTSP_TCP" type="xs:boolean">
  97. <xs:annotation>
  98. <xs:documentation>Indicates support for RTP/RTSP/TCP.</xs:documentation>
  99. </xs:annotation>
  100. </xs:attribute>
  101. <xs:attribute name="NonAggregateControl" type="xs:boolean">
  102. <xs:annotation>
  103. <xs:documentation>Indicates support for non aggregate RTSP control.</xs:documentation>
  104. </xs:annotation>
  105. </xs:attribute>
  106. <xs:attribute name="NoRTSPStreaming" type="xs:boolean">
  107. <xs:annotation>
  108. <xs:documentation> Indicates the device does not support live media streaming via RTSP.</xs:documentation>
  109. </xs:annotation>
  110. </xs:attribute>
  111. <xs:anyAttribute processContents="lax"/>
  112. </xs:complexType>
  113. <!--===============================-->
  114. <xs:element name="GetVideoSources">
  115. <xs:complexType>
  116. <xs:sequence>
  117. </xs:sequence>
  118. </xs:complexType>
  119. </xs:element>
  120. <xs:element name="GetVideoSourcesResponse">
  121. <xs:complexType>
  122. <xs:sequence>
  123. <xs:element name="VideoSources" type="tt:VideoSource" minOccurs="0" maxOccurs="unbounded">
  124. <xs:annotation>
  125. <xs:documentation>List of existing Video Sources</xs:documentation>
  126. </xs:annotation>
  127. </xs:element>
  128. </xs:sequence>
  129. </xs:complexType>
  130. </xs:element>
  131. <!--===============================-->
  132. <xs:element name="GetAudioSources">
  133. <xs:complexType>
  134. <xs:sequence>
  135. </xs:sequence>
  136. </xs:complexType>
  137. </xs:element>
  138. <xs:element name="GetAudioSourcesResponse">
  139. <xs:complexType>
  140. <xs:sequence>
  141. <xs:element name="AudioSources" type="tt:AudioSource" minOccurs="0" maxOccurs="unbounded">
  142. <xs:annotation>
  143. <xs:documentation>List of existing Audio Sources</xs:documentation>
  144. </xs:annotation>
  145. </xs:element>
  146. </xs:sequence>
  147. </xs:complexType>
  148. </xs:element>
  149. <!--===============================-->
  150. <xs:element name="GetAudioOutputs">
  151. <xs:complexType>
  152. <xs:sequence>
  153. </xs:sequence>
  154. </xs:complexType>
  155. </xs:element>
  156. <xs:element name="GetAudioOutputsResponse">
  157. <xs:complexType>
  158. <xs:sequence>
  159. <xs:element name="AudioOutputs" type="tt:AudioOutput" minOccurs="0" maxOccurs="unbounded">
  160. <xs:annotation>
  161. <xs:documentation>List of existing Audio Outputs</xs:documentation>
  162. </xs:annotation>
  163. </xs:element>
  164. </xs:sequence>
  165. </xs:complexType>
  166. </xs:element>
  167. <!--===============================-->
  168. <xs:element name="CreateProfile">
  169. <xs:complexType>
  170. <xs:sequence>
  171. <xs:element name="Name" type="tt:Name">
  172. <xs:annotation>
  173. <xs:documentation>friendly name of the profile to be created</xs:documentation>
  174. </xs:annotation>
  175. </xs:element>
  176. <xs:element name="Token" type="tt:ReferenceToken" minOccurs="0">
  177. <xs:annotation>
  178. <xs:documentation>Optional token, specifying the unique identifier of the new profile. <br/>A device supports at least a token length of 12 characters and characters "A-Z" | "a-z" | "0-9" | "-.".</xs:documentation>
  179. </xs:annotation>
  180. </xs:element>
  181. </xs:sequence>
  182. </xs:complexType>
  183. </xs:element>
  184. <xs:element name="CreateProfileResponse">
  185. <xs:complexType>
  186. <xs:sequence>
  187. <xs:element name="Profile" type="tt:Profile">
  188. <xs:annotation>
  189. <xs:documentation>returns the new created profile</xs:documentation>
  190. </xs:annotation>
  191. </xs:element>
  192. </xs:sequence>
  193. </xs:complexType>
  194. </xs:element>
  195. <!--===============================-->
  196. <xs:element name="GetProfile">
  197. <xs:complexType>
  198. <xs:sequence>
  199. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  200. <xs:annotation>
  201. <xs:documentation>this command requests a specific profile</xs:documentation>
  202. </xs:annotation>
  203. </xs:element>
  204. </xs:sequence>
  205. </xs:complexType>
  206. </xs:element>
  207. <xs:element name="GetProfileResponse">
  208. <xs:complexType>
  209. <xs:sequence>
  210. <xs:element name="Profile" type="tt:Profile">
  211. <xs:annotation>
  212. <xs:documentation>returns the requested media profile</xs:documentation>
  213. </xs:annotation>
  214. </xs:element>
  215. </xs:sequence>
  216. </xs:complexType>
  217. </xs:element>
  218. <!--===============================-->
  219. <xs:element name="GetProfiles">
  220. <xs:complexType>
  221. <xs:sequence>
  222. </xs:sequence>
  223. </xs:complexType>
  224. </xs:element>
  225. <xs:element name="GetProfilesResponse">
  226. <xs:complexType>
  227. <xs:sequence>
  228. <xs:element name="Profiles" type="tt:Profile" minOccurs="0" maxOccurs="unbounded">
  229. <xs:annotation>
  230. <xs:documentation>lists all profiles that exist in the media service </xs:documentation>
  231. </xs:annotation>
  232. </xs:element>
  233. </xs:sequence>
  234. </xs:complexType>
  235. </xs:element>
  236. <!--===============================-->
  237. <xs:element name="AddVideoEncoderConfiguration">
  238. <xs:complexType>
  239. <xs:sequence>
  240. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  241. <xs:annotation>
  242. <xs:documentation>Reference to the profile where the configuration should be added</xs:documentation>
  243. </xs:annotation>
  244. </xs:element>
  245. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  246. <xs:annotation>
  247. <xs:documentation>Contains a reference to the VideoEncoderConfiguration to add</xs:documentation>
  248. </xs:annotation>
  249. </xs:element>
  250. </xs:sequence>
  251. </xs:complexType>
  252. </xs:element>
  253. <xs:element name="AddVideoEncoderConfigurationResponse">
  254. <xs:complexType>
  255. <xs:sequence>
  256. </xs:sequence>
  257. </xs:complexType>
  258. </xs:element>
  259. <!--===============================-->
  260. <xs:element name="RemoveVideoEncoderConfiguration">
  261. <xs:complexType>
  262. <xs:sequence>
  263. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  264. <xs:annotation>
  265. <xs:documentation>Contains a reference to the media profile from which the
  266. VideoEncoderConfiguration shall be removed.</xs:documentation>
  267. </xs:annotation>
  268. </xs:element>
  269. </xs:sequence>
  270. </xs:complexType>
  271. </xs:element>
  272. <xs:element name="RemoveVideoEncoderConfigurationResponse">
  273. <xs:complexType>
  274. <xs:sequence>
  275. </xs:sequence>
  276. </xs:complexType>
  277. </xs:element>
  278. <!--===============================-->
  279. <xs:element name="AddVideoSourceConfiguration">
  280. <xs:complexType>
  281. <xs:sequence>
  282. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  283. <xs:annotation>
  284. <xs:documentation>Reference to the profile where the configuration should be added</xs:documentation>
  285. </xs:annotation>
  286. </xs:element>
  287. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  288. <xs:annotation>
  289. <xs:documentation>Contains a reference to the VideoSourceConfiguration to add</xs:documentation>
  290. </xs:annotation>
  291. </xs:element>
  292. </xs:sequence>
  293. </xs:complexType>
  294. </xs:element>
  295. <xs:element name="AddVideoSourceConfigurationResponse">
  296. <xs:complexType>
  297. <xs:sequence>
  298. </xs:sequence>
  299. </xs:complexType>
  300. </xs:element>
  301. <!--===============================-->
  302. <xs:element name="RemoveVideoSourceConfiguration">
  303. <xs:complexType>
  304. <xs:sequence>
  305. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  306. <xs:annotation>
  307. <xs:documentation>Contains a reference to the media profile from which the
  308. VideoSourceConfiguration shall be removed.</xs:documentation>
  309. </xs:annotation>
  310. </xs:element>
  311. </xs:sequence>
  312. </xs:complexType>
  313. </xs:element>
  314. <xs:element name="RemoveVideoSourceConfigurationResponse">
  315. <xs:complexType>
  316. <xs:sequence>
  317. </xs:sequence>
  318. </xs:complexType>
  319. </xs:element>
  320. <!--===============================-->
  321. <xs:element name="AddAudioEncoderConfiguration">
  322. <xs:complexType>
  323. <xs:sequence>
  324. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  325. <xs:annotation>
  326. <xs:documentation>Reference to the profile where the configuration should be added</xs:documentation>
  327. </xs:annotation>
  328. </xs:element>
  329. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  330. <xs:annotation>
  331. <xs:documentation>Contains a reference to the AudioEncoderConfiguration to add</xs:documentation>
  332. </xs:annotation>
  333. </xs:element>
  334. </xs:sequence>
  335. </xs:complexType>
  336. </xs:element>
  337. <xs:element name="AddAudioEncoderConfigurationResponse">
  338. <xs:complexType>
  339. <xs:sequence>
  340. </xs:sequence>
  341. </xs:complexType>
  342. </xs:element>
  343. <!--===============================-->
  344. <xs:element name="RemoveAudioEncoderConfiguration">
  345. <xs:complexType>
  346. <xs:sequence>
  347. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  348. <xs:annotation>
  349. <xs:documentation>Contains a reference to the media profile from which the
  350. AudioEncoderConfiguration shall be removed.</xs:documentation>
  351. </xs:annotation>
  352. </xs:element>
  353. </xs:sequence>
  354. </xs:complexType>
  355. </xs:element>
  356. <xs:element name="RemoveAudioEncoderConfigurationResponse">
  357. <xs:complexType>
  358. <xs:sequence>
  359. </xs:sequence>
  360. </xs:complexType>
  361. </xs:element>
  362. <!--===============================-->
  363. <xs:element name="AddAudioSourceConfiguration">
  364. <xs:complexType>
  365. <xs:sequence>
  366. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  367. <xs:annotation>
  368. <xs:documentation>Reference to the profile where the configuration should be added</xs:documentation>
  369. </xs:annotation>
  370. </xs:element>
  371. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  372. <xs:annotation>
  373. <xs:documentation>Contains a reference to the AudioSourceConfiguration to add</xs:documentation>
  374. </xs:annotation>
  375. </xs:element>
  376. </xs:sequence>
  377. </xs:complexType>
  378. </xs:element>
  379. <xs:element name="AddAudioSourceConfigurationResponse">
  380. <xs:complexType>
  381. <xs:sequence>
  382. </xs:sequence>
  383. </xs:complexType>
  384. </xs:element>
  385. <!--===============================-->
  386. <xs:element name="RemoveAudioSourceConfiguration">
  387. <xs:complexType>
  388. <xs:sequence>
  389. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  390. <xs:annotation>
  391. <xs:documentation>Contains a reference to the media profile from which the
  392. AudioSourceConfiguration shall be removed.</xs:documentation>
  393. </xs:annotation>
  394. </xs:element>
  395. </xs:sequence>
  396. </xs:complexType>
  397. </xs:element>
  398. <xs:element name="RemoveAudioSourceConfigurationResponse">
  399. <xs:complexType>
  400. <xs:sequence>
  401. </xs:sequence>
  402. </xs:complexType>
  403. </xs:element>
  404. <!--===============================-->
  405. <xs:element name="AddPTZConfiguration">
  406. <xs:complexType>
  407. <xs:sequence>
  408. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  409. <xs:annotation>
  410. <xs:documentation>Reference to the profile where the configuration should be added</xs:documentation>
  411. </xs:annotation>
  412. </xs:element>
  413. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  414. <xs:annotation>
  415. <xs:documentation>Contains a reference to the PTZConfiguration to add</xs:documentation>
  416. </xs:annotation>
  417. </xs:element>
  418. </xs:sequence>
  419. </xs:complexType>
  420. </xs:element>
  421. <xs:element name="AddPTZConfigurationResponse">
  422. <xs:complexType>
  423. <xs:sequence>
  424. </xs:sequence>
  425. </xs:complexType>
  426. </xs:element>
  427. <!--===============================-->
  428. <xs:element name="RemovePTZConfiguration">
  429. <xs:complexType>
  430. <xs:sequence>
  431. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  432. <xs:annotation>
  433. <xs:documentation>Contains a reference to the media profile from which the
  434. PTZConfiguration shall be removed.</xs:documentation>
  435. </xs:annotation>
  436. </xs:element>
  437. </xs:sequence>
  438. </xs:complexType>
  439. </xs:element>
  440. <xs:element name="RemovePTZConfigurationResponse">
  441. <xs:complexType>
  442. <xs:sequence>
  443. </xs:sequence>
  444. </xs:complexType>
  445. </xs:element>
  446. <!--===============================-->
  447. <xs:element name="AddVideoAnalyticsConfiguration">
  448. <xs:complexType>
  449. <xs:sequence>
  450. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  451. <xs:annotation>
  452. <xs:documentation>Reference to the profile where the configuration should be added</xs:documentation>
  453. </xs:annotation>
  454. </xs:element>
  455. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  456. <xs:annotation>
  457. <xs:documentation>Contains a reference to the VideoAnalyticsConfiguration to add</xs:documentation>
  458. </xs:annotation>
  459. </xs:element>
  460. </xs:sequence>
  461. </xs:complexType>
  462. </xs:element>
  463. <xs:element name="AddVideoAnalyticsConfigurationResponse">
  464. <xs:complexType>
  465. <xs:sequence>
  466. </xs:sequence>
  467. </xs:complexType>
  468. </xs:element>
  469. <!--===============================-->
  470. <xs:element name="RemoveVideoAnalyticsConfiguration">
  471. <xs:complexType>
  472. <xs:sequence>
  473. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  474. <xs:annotation>
  475. <xs:documentation>Contains a reference to the media profile from which the
  476. VideoAnalyticsConfiguration shall be removed.</xs:documentation>
  477. </xs:annotation>
  478. </xs:element>
  479. </xs:sequence>
  480. </xs:complexType>
  481. </xs:element>
  482. <xs:element name="RemoveVideoAnalyticsConfigurationResponse">
  483. <xs:complexType>
  484. <xs:sequence>
  485. </xs:sequence>
  486. </xs:complexType>
  487. </xs:element>
  488. <!--===============================-->
  489. <xs:element name="AddMetadataConfiguration">
  490. <xs:complexType>
  491. <xs:sequence>
  492. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  493. <xs:annotation>
  494. <xs:documentation>Reference to the profile where the configuration should be added</xs:documentation>
  495. </xs:annotation>
  496. </xs:element>
  497. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  498. <xs:annotation>
  499. <xs:documentation>Contains a reference to the MetadataConfiguration to add</xs:documentation>
  500. </xs:annotation>
  501. </xs:element>
  502. </xs:sequence>
  503. </xs:complexType>
  504. </xs:element>
  505. <xs:element name="AddMetadataConfigurationResponse">
  506. <xs:complexType>
  507. <xs:sequence>
  508. </xs:sequence>
  509. </xs:complexType>
  510. </xs:element>
  511. <!--===============================-->
  512. <xs:element name="RemoveMetadataConfiguration">
  513. <xs:complexType>
  514. <xs:sequence>
  515. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  516. <xs:annotation>
  517. <xs:documentation>Contains a reference to the media profile from which the
  518. MetadataConfiguration shall be removed.</xs:documentation>
  519. </xs:annotation>
  520. </xs:element>
  521. </xs:sequence>
  522. </xs:complexType>
  523. </xs:element>
  524. <xs:element name="RemoveMetadataConfigurationResponse">
  525. <xs:complexType>
  526. <xs:sequence>
  527. </xs:sequence>
  528. </xs:complexType>
  529. </xs:element>
  530. <!--===============================-->
  531. <xs:element name="AddAudioOutputConfiguration">
  532. <xs:complexType>
  533. <xs:sequence>
  534. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  535. <xs:annotation>
  536. <xs:documentation>Reference to the profile where the configuration should be added</xs:documentation>
  537. </xs:annotation>
  538. </xs:element>
  539. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  540. <xs:annotation>
  541. <xs:documentation>Contains a reference to the AudioOutputConfiguration to add</xs:documentation>
  542. </xs:annotation>
  543. </xs:element>
  544. </xs:sequence>
  545. </xs:complexType>
  546. </xs:element>
  547. <xs:element name="AddAudioOutputConfigurationResponse">
  548. <xs:complexType>
  549. <xs:sequence>
  550. </xs:sequence>
  551. </xs:complexType>
  552. </xs:element>
  553. <!--===============================-->
  554. <xs:element name="RemoveAudioOutputConfiguration">
  555. <xs:complexType>
  556. <xs:sequence>
  557. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  558. <xs:annotation>
  559. <xs:documentation>Contains a reference to the media profile from which the
  560. AudioOutputConfiguration shall be removed.</xs:documentation>
  561. </xs:annotation>
  562. </xs:element>
  563. </xs:sequence>
  564. </xs:complexType>
  565. </xs:element>
  566. <xs:element name="RemoveAudioOutputConfigurationResponse">
  567. <xs:complexType>
  568. <xs:sequence>
  569. </xs:sequence>
  570. </xs:complexType>
  571. </xs:element>
  572. <!--===============================-->
  573. <xs:element name="AddAudioDecoderConfiguration">
  574. <xs:complexType>
  575. <xs:sequence>
  576. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  577. <xs:annotation>
  578. <xs:documentation>This element contains a reference to the profile where the configuration should be added.</xs:documentation>
  579. </xs:annotation>
  580. </xs:element>
  581. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  582. <xs:annotation>
  583. <xs:documentation>This element contains a reference to the AudioDecoderConfiguration to add.</xs:documentation>
  584. </xs:annotation>
  585. </xs:element>
  586. </xs:sequence>
  587. </xs:complexType>
  588. </xs:element>
  589. <xs:element name="AddAudioDecoderConfigurationResponse">
  590. <xs:complexType>
  591. <xs:sequence>
  592. </xs:sequence>
  593. </xs:complexType>
  594. </xs:element>
  595. <!--===============================-->
  596. <xs:element name="RemoveAudioDecoderConfiguration">
  597. <xs:complexType>
  598. <xs:sequence>
  599. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  600. <xs:annotation>
  601. <xs:documentation>This element contains a reference to the media profile from which the AudioDecoderConfiguration shall be removed.</xs:documentation>
  602. </xs:annotation>
  603. </xs:element>
  604. </xs:sequence>
  605. </xs:complexType>
  606. </xs:element>
  607. <xs:element name="RemoveAudioDecoderConfigurationResponse">
  608. <xs:complexType>
  609. <xs:sequence>
  610. </xs:sequence>
  611. </xs:complexType>
  612. </xs:element>
  613. <!--===============================-->
  614. <xs:element name="DeleteProfile">
  615. <xs:complexType>
  616. <xs:sequence>
  617. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  618. <xs:annotation>
  619. <xs:documentation>This element contains a reference to the profile that should be deleted.</xs:documentation>
  620. </xs:annotation>
  621. </xs:element>
  622. </xs:sequence>
  623. </xs:complexType>
  624. </xs:element>
  625. <xs:element name="DeleteProfileResponse">
  626. <xs:complexType>
  627. <xs:sequence>
  628. </xs:sequence>
  629. </xs:complexType>
  630. </xs:element>
  631. <!--===============================-->
  632. <!--===============================-->
  633. <!--===============================-->
  634. <xs:element name="GetVideoEncoderConfigurations">
  635. <xs:complexType>
  636. <xs:sequence>
  637. </xs:sequence>
  638. </xs:complexType>
  639. </xs:element>
  640. <xs:element name="GetVideoEncoderConfigurationsResponse">
  641. <xs:complexType>
  642. <xs:sequence>
  643. <xs:element name="Configurations" type="tt:VideoEncoderConfiguration" minOccurs="0" maxOccurs="unbounded">
  644. <xs:annotation>
  645. <xs:documentation>This element contains a list of video encoder configurations.</xs:documentation>
  646. </xs:annotation>
  647. </xs:element>
  648. </xs:sequence>
  649. </xs:complexType>
  650. </xs:element>
  651. <!--===============================-->
  652. <xs:element name="GetVideoSourceConfigurations">
  653. <xs:complexType>
  654. <xs:sequence>
  655. </xs:sequence>
  656. </xs:complexType>
  657. </xs:element>
  658. <xs:element name="GetVideoSourceConfigurationsResponse">
  659. <xs:complexType>
  660. <xs:sequence>
  661. <xs:element name="Configurations" type="tt:VideoSourceConfiguration" minOccurs="0" maxOccurs="unbounded">
  662. <xs:annotation>
  663. <xs:documentation>This element contains a list of video source configurations.</xs:documentation>
  664. </xs:annotation>
  665. </xs:element>
  666. </xs:sequence>
  667. </xs:complexType>
  668. </xs:element>
  669. <!--===============================-->
  670. <xs:element name="GetAudioEncoderConfigurations">
  671. <xs:complexType>
  672. <xs:sequence>
  673. </xs:sequence>
  674. </xs:complexType>
  675. </xs:element>
  676. <xs:element name="GetAudioEncoderConfigurationsResponse">
  677. <xs:complexType>
  678. <xs:sequence>
  679. <xs:element name="Configurations" type="tt:AudioEncoderConfiguration" minOccurs="0" maxOccurs="unbounded">
  680. <xs:annotation>
  681. <xs:documentation>This element contains a list of audio encoder configurations.</xs:documentation>
  682. </xs:annotation>
  683. </xs:element>
  684. </xs:sequence>
  685. </xs:complexType>
  686. </xs:element>
  687. <!--===============================-->
  688. <xs:element name="GetAudioSourceConfigurations">
  689. <xs:complexType>
  690. <xs:sequence>
  691. </xs:sequence>
  692. </xs:complexType>
  693. </xs:element>
  694. <xs:element name="GetAudioSourceConfigurationsResponse">
  695. <xs:complexType>
  696. <xs:sequence>
  697. <xs:element name="Configurations" type="tt:AudioSourceConfiguration" minOccurs="0" maxOccurs="unbounded">
  698. <xs:annotation>
  699. <xs:documentation>This element contains a list of audio source configurations.</xs:documentation>
  700. </xs:annotation>
  701. </xs:element>
  702. </xs:sequence>
  703. </xs:complexType>
  704. </xs:element>
  705. <!--===============================-->
  706. <xs:element name="GetVideoAnalyticsConfigurations">
  707. <xs:complexType>
  708. <xs:sequence>
  709. </xs:sequence>
  710. </xs:complexType>
  711. </xs:element>
  712. <xs:element name="GetVideoAnalyticsConfigurationsResponse">
  713. <xs:complexType>
  714. <xs:sequence>
  715. <xs:element name="Configurations" type="tt:VideoAnalyticsConfiguration" minOccurs="0" maxOccurs="unbounded">
  716. <xs:annotation>
  717. <xs:documentation>This element contains a list of VideoAnalytics configurations.</xs:documentation>
  718. </xs:annotation>
  719. </xs:element>
  720. </xs:sequence>
  721. </xs:complexType>
  722. </xs:element>
  723. <!--===============================-->
  724. <xs:element name="GetMetadataConfigurations">
  725. <xs:complexType>
  726. <xs:sequence>
  727. </xs:sequence>
  728. </xs:complexType>
  729. </xs:element>
  730. <xs:element name="GetMetadataConfigurationsResponse">
  731. <xs:complexType>
  732. <xs:sequence>
  733. <xs:element name="Configurations" type="tt:MetadataConfiguration" minOccurs="0" maxOccurs="unbounded">
  734. <xs:annotation>
  735. <xs:documentation>This element contains a list of metadata configurations</xs:documentation>
  736. </xs:annotation>
  737. </xs:element>
  738. </xs:sequence>
  739. </xs:complexType>
  740. </xs:element>
  741. <!--===============================-->
  742. <!--===============================-->
  743. <xs:element name="GetAudioOutputConfigurations">
  744. <xs:complexType>
  745. <xs:sequence>
  746. </xs:sequence>
  747. </xs:complexType>
  748. </xs:element>
  749. <xs:element name="GetAudioOutputConfigurationsResponse">
  750. <xs:complexType>
  751. <xs:sequence>
  752. <xs:element name="Configurations" type="tt:AudioOutputConfiguration" minOccurs="0" maxOccurs="unbounded">
  753. <xs:annotation>
  754. <xs:documentation>This element contains a list of audio output configurations</xs:documentation>
  755. </xs:annotation>
  756. </xs:element>
  757. </xs:sequence>
  758. </xs:complexType>
  759. </xs:element>
  760. <!--===============================-->
  761. <xs:element name="GetAudioDecoderConfigurations">
  762. <xs:complexType>
  763. <xs:sequence>
  764. </xs:sequence>
  765. </xs:complexType>
  766. </xs:element>
  767. <xs:element name="GetAudioDecoderConfigurationsResponse">
  768. <xs:complexType>
  769. <xs:sequence>
  770. <xs:element name="Configurations" type="tt:AudioDecoderConfiguration" minOccurs="0" maxOccurs="unbounded">
  771. <xs:annotation>
  772. <xs:documentation>This element contains a list of audio decoder configurations</xs:documentation>
  773. </xs:annotation>
  774. </xs:element>
  775. </xs:sequence>
  776. </xs:complexType>
  777. </xs:element>
  778. <!--===============================-->
  779. <xs:element name="GetVideoSourceConfiguration">
  780. <xs:complexType>
  781. <xs:sequence>
  782. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  783. <xs:annotation>
  784. <xs:documentation>Token of the requested video source configuration.</xs:documentation>
  785. </xs:annotation>
  786. </xs:element>
  787. </xs:sequence>
  788. </xs:complexType>
  789. </xs:element>
  790. <!--===============================-->
  791. <xs:element name="GetVideoSourceConfigurationResponse">
  792. <xs:complexType>
  793. <xs:sequence>
  794. <xs:element name="Configuration" type="tt:VideoSourceConfiguration">
  795. <xs:annotation>
  796. <xs:documentation>The requested video source configuration.</xs:documentation>
  797. </xs:annotation>
  798. </xs:element>
  799. </xs:sequence>
  800. </xs:complexType>
  801. </xs:element>
  802. <!--===============================-->
  803. <xs:element name="GetVideoEncoderConfiguration">
  804. <xs:complexType>
  805. <xs:sequence>
  806. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  807. <xs:annotation>
  808. <xs:documentation>Token of the requested video encoder configuration.</xs:documentation>
  809. </xs:annotation>
  810. </xs:element>
  811. </xs:sequence>
  812. </xs:complexType>
  813. </xs:element>
  814. <xs:element name="GetVideoEncoderConfigurationResponse">
  815. <xs:complexType>
  816. <xs:sequence>
  817. <xs:element name="Configuration" type="tt:VideoEncoderConfiguration">
  818. <xs:annotation>
  819. <xs:documentation>The requested video encoder configuration.</xs:documentation>
  820. </xs:annotation>
  821. </xs:element>
  822. </xs:sequence>
  823. </xs:complexType>
  824. </xs:element>
  825. <!--===============================-->
  826. <xs:element name="GetAudioSourceConfiguration">
  827. <xs:complexType>
  828. <xs:sequence>
  829. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  830. <xs:annotation>
  831. <xs:documentation>Token of the requested audio source configuration.</xs:documentation>
  832. </xs:annotation>
  833. </xs:element>
  834. </xs:sequence>
  835. </xs:complexType>
  836. </xs:element>
  837. <xs:element name="GetAudioSourceConfigurationResponse">
  838. <xs:complexType>
  839. <xs:sequence>
  840. <xs:element name="Configuration" type="tt:AudioSourceConfiguration">
  841. <xs:annotation>
  842. <xs:documentation>The requested audio source configuration.</xs:documentation>
  843. </xs:annotation>
  844. </xs:element>
  845. </xs:sequence>
  846. </xs:complexType>
  847. </xs:element>
  848. <!--===============================-->
  849. <xs:element name="GetAudioEncoderConfiguration">
  850. <xs:complexType>
  851. <xs:sequence>
  852. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  853. <xs:annotation>
  854. <xs:documentation>Token of the requested audio encoder configuration.</xs:documentation>
  855. </xs:annotation>
  856. </xs:element>
  857. </xs:sequence>
  858. </xs:complexType>
  859. </xs:element>
  860. <xs:element name="GetAudioEncoderConfigurationResponse">
  861. <xs:complexType>
  862. <xs:sequence>
  863. <xs:element name="Configuration" type="tt:AudioEncoderConfiguration">
  864. <xs:annotation>
  865. <xs:documentation>The requested audio encoder configuration</xs:documentation>
  866. </xs:annotation>
  867. </xs:element>
  868. </xs:sequence>
  869. </xs:complexType>
  870. </xs:element>
  871. <!--===============================-->
  872. <xs:element name="GetVideoAnalyticsConfiguration">
  873. <xs:complexType>
  874. <xs:sequence>
  875. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  876. <xs:annotation>
  877. <xs:documentation>Token of the requested video analytics configuration.</xs:documentation>
  878. </xs:annotation>
  879. </xs:element>
  880. </xs:sequence>
  881. </xs:complexType>
  882. </xs:element>
  883. <xs:element name="GetVideoAnalyticsConfigurationResponse">
  884. <xs:complexType>
  885. <xs:sequence>
  886. <xs:element name="Configuration" type="tt:VideoAnalyticsConfiguration">
  887. <xs:annotation>
  888. <xs:documentation>The requested video analytics configuration.</xs:documentation>
  889. </xs:annotation>
  890. </xs:element>
  891. </xs:sequence>
  892. </xs:complexType>
  893. </xs:element>
  894. <!--===============================-->
  895. <xs:element name="GetMetadataConfiguration">
  896. <xs:complexType>
  897. <xs:sequence>
  898. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  899. <xs:annotation>
  900. <xs:documentation>Token of the requested metadata configuration.</xs:documentation>
  901. </xs:annotation>
  902. </xs:element>
  903. </xs:sequence>
  904. </xs:complexType>
  905. </xs:element>
  906. <xs:element name="GetMetadataConfigurationResponse">
  907. <xs:complexType>
  908. <xs:sequence>
  909. <xs:element name="Configuration" type="tt:MetadataConfiguration">
  910. <xs:annotation>
  911. <xs:documentation>The requested metadata configuration.</xs:documentation>
  912. </xs:annotation>
  913. </xs:element>
  914. </xs:sequence>
  915. </xs:complexType>
  916. </xs:element>
  917. <!--===============================-->
  918. <!--===============================-->
  919. <xs:element name="GetAudioOutputConfiguration">
  920. <xs:complexType>
  921. <xs:sequence>
  922. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  923. <xs:annotation>
  924. <xs:documentation>Token of the requested audio output configuration.</xs:documentation>
  925. </xs:annotation>
  926. </xs:element>
  927. </xs:sequence>
  928. </xs:complexType>
  929. </xs:element>
  930. <!--===============================-->
  931. <xs:element name="GetAudioOutputConfigurationResponse">
  932. <xs:complexType>
  933. <xs:sequence>
  934. <xs:element name="Configuration" type="tt:AudioOutputConfiguration">
  935. <xs:annotation>
  936. <xs:documentation>The requested audio output configuration.</xs:documentation>
  937. </xs:annotation>
  938. </xs:element>
  939. </xs:sequence>
  940. </xs:complexType>
  941. </xs:element>
  942. <!--===============================-->
  943. <xs:element name="GetAudioDecoderConfiguration">
  944. <xs:complexType>
  945. <xs:sequence>
  946. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  947. <xs:annotation>
  948. <xs:documentation>Token of the requested audio decoder configuration.</xs:documentation>
  949. </xs:annotation>
  950. </xs:element>
  951. </xs:sequence>
  952. </xs:complexType>
  953. </xs:element>
  954. <!--===============================-->
  955. <xs:element name="GetAudioDecoderConfigurationResponse">
  956. <xs:complexType>
  957. <xs:sequence>
  958. <xs:element name="Configuration" type="tt:AudioDecoderConfiguration">
  959. <xs:annotation>
  960. <xs:documentation>The requested audio decoder configuration</xs:documentation>
  961. </xs:annotation>
  962. </xs:element>
  963. </xs:sequence>
  964. </xs:complexType>
  965. </xs:element>
  966. <!--===============================-->
  967. <xs:element name="GetCompatibleVideoEncoderConfigurations">
  968. <xs:complexType>
  969. <xs:sequence>
  970. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  971. <xs:annotation>
  972. <xs:documentation>Contains the token of an existing media profile the configurations shall be compatible with.</xs:documentation>
  973. </xs:annotation>
  974. </xs:element>
  975. </xs:sequence>
  976. </xs:complexType>
  977. </xs:element>
  978. <xs:element name="GetCompatibleVideoEncoderConfigurationsResponse">
  979. <xs:complexType>
  980. <xs:sequence>
  981. <xs:element name="Configurations" type="tt:VideoEncoderConfiguration" minOccurs="0" maxOccurs="unbounded">
  982. <xs:annotation>
  983. <xs:documentation>Contains a list of video encoder configurations that are compatible with the specified media profile.</xs:documentation>
  984. </xs:annotation>
  985. </xs:element>
  986. </xs:sequence>
  987. </xs:complexType>
  988. </xs:element>
  989. <!--===============================-->
  990. <xs:element name="GetCompatibleVideoSourceConfigurations">
  991. <xs:complexType>
  992. <xs:sequence>
  993. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  994. <xs:annotation>
  995. <xs:documentation>Contains the token of an existing media profile the configurations shall be compatible with.</xs:documentation>
  996. </xs:annotation>
  997. </xs:element>
  998. </xs:sequence>
  999. </xs:complexType>
  1000. </xs:element>
  1001. <xs:element name="GetCompatibleVideoSourceConfigurationsResponse">
  1002. <xs:complexType>
  1003. <xs:sequence>
  1004. <xs:element name="Configurations" type="tt:VideoSourceConfiguration" minOccurs="0" maxOccurs="unbounded">
  1005. <xs:annotation>
  1006. <xs:documentation>Contains a list of video source configurations that are compatible with the specified media profile.</xs:documentation>
  1007. </xs:annotation>
  1008. </xs:element>
  1009. </xs:sequence>
  1010. </xs:complexType>
  1011. </xs:element>
  1012. <!--===============================-->
  1013. <xs:element name="GetCompatibleAudioEncoderConfigurations">
  1014. <xs:complexType>
  1015. <xs:sequence>
  1016. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  1017. <xs:annotation>
  1018. <xs:documentation>Contains the token of an existing media profile the configurations shall be compatible with.</xs:documentation>
  1019. </xs:annotation>
  1020. </xs:element>
  1021. </xs:sequence>
  1022. </xs:complexType>
  1023. </xs:element>
  1024. <xs:element name="GetCompatibleAudioEncoderConfigurationsResponse">
  1025. <xs:complexType>
  1026. <xs:sequence>
  1027. <xs:element name="Configurations" type="tt:AudioEncoderConfiguration" minOccurs="0" maxOccurs="unbounded">
  1028. <xs:annotation>
  1029. <xs:documentation>Contains a list of audio encoder configurations that are compatible with the specified media profile.</xs:documentation>
  1030. </xs:annotation>
  1031. </xs:element>
  1032. </xs:sequence>
  1033. </xs:complexType>
  1034. </xs:element>
  1035. <!--===============================-->
  1036. <xs:element name="GetCompatibleAudioSourceConfigurations">
  1037. <xs:complexType>
  1038. <xs:sequence>
  1039. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  1040. <xs:annotation>
  1041. <xs:documentation>Contains the token of an existing media profile the configurations shall be compatible with.</xs:documentation>
  1042. </xs:annotation>
  1043. </xs:element>
  1044. </xs:sequence>
  1045. </xs:complexType>
  1046. </xs:element>
  1047. <xs:element name="GetCompatibleAudioSourceConfigurationsResponse">
  1048. <xs:complexType>
  1049. <xs:sequence>
  1050. <xs:element name="Configurations" type="tt:AudioSourceConfiguration" minOccurs="0" maxOccurs="unbounded">
  1051. <xs:annotation>
  1052. <xs:documentation>Contains a list of audio source configurations that are compatible with the specified media profile.</xs:documentation>
  1053. </xs:annotation>
  1054. </xs:element>
  1055. </xs:sequence>
  1056. </xs:complexType>
  1057. </xs:element>
  1058. <!--===============================-->
  1059. <xs:element name="GetCompatibleVideoAnalyticsConfigurations">
  1060. <xs:complexType>
  1061. <xs:sequence>
  1062. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  1063. <xs:annotation>
  1064. <xs:documentation>Contains the token of an existing media profile the configurations shall be compatible with.</xs:documentation>
  1065. </xs:annotation>
  1066. </xs:element>
  1067. </xs:sequence>
  1068. </xs:complexType>
  1069. </xs:element>
  1070. <xs:element name="GetCompatibleVideoAnalyticsConfigurationsResponse">
  1071. <xs:complexType>
  1072. <xs:sequence>
  1073. <xs:element name="Configurations" type="tt:VideoAnalyticsConfiguration" minOccurs="0" maxOccurs="unbounded">
  1074. <xs:annotation>
  1075. <xs:documentation>Contains a list of video analytics configurations that are compatible with the specified media profile.</xs:documentation>
  1076. </xs:annotation>
  1077. </xs:element>
  1078. </xs:sequence>
  1079. </xs:complexType>
  1080. </xs:element>
  1081. <!--===============================-->
  1082. <xs:element name="GetCompatibleMetadataConfigurations">
  1083. <xs:complexType>
  1084. <xs:sequence>
  1085. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  1086. <xs:annotation>
  1087. <xs:documentation>Contains the token of an existing media profile the configurations shall be compatible with.</xs:documentation>
  1088. </xs:annotation>
  1089. </xs:element>
  1090. </xs:sequence>
  1091. </xs:complexType>
  1092. </xs:element>
  1093. <xs:element name="GetCompatibleMetadataConfigurationsResponse">
  1094. <xs:complexType>
  1095. <xs:sequence>
  1096. <xs:element name="Configurations" type="tt:MetadataConfiguration" minOccurs="0" maxOccurs="unbounded">
  1097. <xs:annotation>
  1098. <xs:documentation>Contains a list of metadata configurations that are compatible with the specified media profile.</xs:documentation>
  1099. </xs:annotation>
  1100. </xs:element>
  1101. </xs:sequence>
  1102. </xs:complexType>
  1103. </xs:element>
  1104. <!--===============================-->
  1105. <!--===============================-->
  1106. <xs:element name="GetCompatibleAudioOutputConfigurations">
  1107. <xs:complexType>
  1108. <xs:sequence>
  1109. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  1110. <xs:annotation>
  1111. <xs:documentation>Contains the token of an existing media profile the configurations shall be compatible with.</xs:documentation>
  1112. </xs:annotation>
  1113. </xs:element>
  1114. </xs:sequence>
  1115. </xs:complexType>
  1116. </xs:element>
  1117. <xs:element name="GetCompatibleAudioOutputConfigurationsResponse">
  1118. <xs:complexType>
  1119. <xs:sequence>
  1120. <xs:element name="Configurations" type="tt:AudioOutputConfiguration" minOccurs="0" maxOccurs="unbounded">
  1121. <xs:annotation>
  1122. <xs:documentation>Contains a list of audio output configurations that are compatible with the specified media profile.</xs:documentation>
  1123. </xs:annotation>
  1124. </xs:element>
  1125. </xs:sequence>
  1126. </xs:complexType>
  1127. </xs:element>
  1128. <!--===============================-->
  1129. <xs:element name="GetCompatibleAudioDecoderConfigurations">
  1130. <xs:complexType>
  1131. <xs:sequence>
  1132. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  1133. <xs:annotation>
  1134. <xs:documentation>Contains the token of an existing media profile the configurations shall be compatible with.</xs:documentation>
  1135. </xs:annotation>
  1136. </xs:element>
  1137. </xs:sequence>
  1138. </xs:complexType>
  1139. </xs:element>
  1140. <xs:element name="GetCompatibleAudioDecoderConfigurationsResponse">
  1141. <xs:complexType>
  1142. <xs:sequence>
  1143. <xs:element name="Configurations" type="tt:AudioDecoderConfiguration" minOccurs="0" maxOccurs="unbounded">
  1144. <xs:annotation>
  1145. <xs:documentation>Contains a list of audio decoder configurations that are compatible with the specified media profile. </xs:documentation>
  1146. </xs:annotation>
  1147. </xs:element>
  1148. </xs:sequence>
  1149. </xs:complexType>
  1150. </xs:element>
  1151. <!--===============================-->
  1152. <!--===============================-->
  1153. <!--===============================-->
  1154. <!--===============================-->
  1155. <!--===============================-->
  1156. <!--===============================-->
  1157. <xs:element name="SetVideoEncoderConfiguration">
  1158. <xs:complexType>
  1159. <xs:sequence>
  1160. <xs:element name="Configuration" type="tt:VideoEncoderConfiguration">
  1161. <xs:annotation>
  1162. <xs:documentation>Contains the modified video encoder configuration. The configuration shall exist in the device.</xs:documentation>
  1163. </xs:annotation>
  1164. </xs:element>
  1165. <xs:element name="ForcePersistence" type="xs:boolean">
  1166. <xs:annotation>
  1167. <xs:documentation>The ForcePersistence element is obsolete and should always be assumed to be true.</xs:documentation>
  1168. </xs:annotation>
  1169. </xs:element>
  1170. </xs:sequence>
  1171. </xs:complexType>
  1172. </xs:element>
  1173. <xs:element name="SetVideoEncoderConfigurationResponse">
  1174. <xs:complexType>
  1175. <xs:sequence>
  1176. </xs:sequence>
  1177. </xs:complexType>
  1178. </xs:element>
  1179. <!--===============================-->
  1180. <xs:element name="SetVideoSourceConfiguration">
  1181. <xs:complexType>
  1182. <xs:sequence>
  1183. <xs:element name="Configuration" type="tt:VideoSourceConfiguration">
  1184. <xs:annotation>
  1185. <xs:documentation>Contains the modified video source configuration. The configuration shall exist in the device.</xs:documentation>
  1186. </xs:annotation>
  1187. </xs:element>
  1188. <xs:element name="ForcePersistence" type="xs:boolean">
  1189. <xs:annotation>
  1190. <xs:documentation>The ForcePersistence element is obsolete and should always be assumed to be true.</xs:documentation>
  1191. </xs:annotation>
  1192. </xs:element>
  1193. </xs:sequence>
  1194. </xs:complexType>
  1195. </xs:element>
  1196. <xs:element name="SetVideoSourceConfigurationResponse">
  1197. <xs:complexType>
  1198. <xs:sequence>
  1199. </xs:sequence>
  1200. </xs:complexType>
  1201. </xs:element>
  1202. <!--===============================-->
  1203. <xs:element name="SetAudioEncoderConfiguration">
  1204. <xs:complexType>
  1205. <xs:sequence>
  1206. <xs:element name="Configuration" type="tt:AudioEncoderConfiguration">
  1207. <xs:annotation>
  1208. <xs:documentation>Contains the modified audio encoder configuration. The configuration shall exist in the device.</xs:documentation>
  1209. </xs:annotation>
  1210. </xs:element>
  1211. <xs:element name="ForcePersistence" type="xs:boolean">
  1212. <xs:annotation>
  1213. <xs:documentation>The ForcePersistence element is obsolete and should always be assumed to be true.</xs:documentation>
  1214. </xs:annotation>
  1215. </xs:element>
  1216. </xs:sequence>
  1217. </xs:complexType>
  1218. </xs:element>
  1219. <xs:element name="SetAudioEncoderConfigurationResponse">
  1220. <xs:complexType>
  1221. <xs:sequence>
  1222. </xs:sequence>
  1223. </xs:complexType>
  1224. </xs:element>
  1225. <!--===============================-->
  1226. <xs:element name="SetAudioSourceConfiguration">
  1227. <xs:complexType>
  1228. <xs:sequence>
  1229. <xs:element name="Configuration" type="tt:AudioSourceConfiguration">
  1230. <xs:annotation>
  1231. <xs:documentation>Contains the modified audio source configuration. The configuration shall exist in the device.</xs:documentation>
  1232. </xs:annotation>
  1233. </xs:element>
  1234. <xs:element name="ForcePersistence" type="xs:boolean">
  1235. <xs:annotation>
  1236. <xs:documentation>The ForcePersistence element is obsolete and should always be assumed to be true.</xs:documentation>
  1237. </xs:annotation>
  1238. </xs:element>
  1239. </xs:sequence>
  1240. </xs:complexType>
  1241. </xs:element>
  1242. <xs:element name="SetAudioSourceConfigurationResponse">
  1243. <xs:complexType>
  1244. <xs:sequence>
  1245. </xs:sequence>
  1246. </xs:complexType>
  1247. </xs:element>
  1248. <!--===============================-->
  1249. <xs:element name="SetVideoAnalyticsConfiguration">
  1250. <xs:complexType>
  1251. <xs:sequence>
  1252. <xs:element name="Configuration" type="tt:VideoAnalyticsConfiguration">
  1253. <xs:annotation>
  1254. <xs:documentation>Contains the modified video analytics configuration. The configuration shall exist in the device.</xs:documentation>
  1255. </xs:annotation>
  1256. </xs:element>
  1257. <xs:element name="ForcePersistence" type="xs:boolean">
  1258. <xs:annotation>
  1259. <xs:documentation>The ForcePersistence element is obsolete and should always be assumed to be true.</xs:documentation>
  1260. </xs:annotation>
  1261. </xs:element>
  1262. </xs:sequence>
  1263. </xs:complexType>
  1264. </xs:element>
  1265. <xs:element name="SetVideoAnalyticsConfigurationResponse">
  1266. <xs:complexType>
  1267. <xs:sequence>
  1268. </xs:sequence>
  1269. </xs:complexType>
  1270. </xs:element>
  1271. <!--===============================-->
  1272. <xs:element name="SetMetadataConfiguration">
  1273. <xs:complexType>
  1274. <xs:sequence>
  1275. <xs:element name="Configuration" type="tt:MetadataConfiguration">
  1276. <xs:annotation>
  1277. <xs:documentation>Contains the modified metadata configuration. The configuration shall exist in the device.</xs:documentation>
  1278. </xs:annotation>
  1279. </xs:element>
  1280. <xs:element name="ForcePersistence" type="xs:boolean">
  1281. <xs:annotation>
  1282. <xs:documentation>The ForcePersistence element is obsolete and should always be assumed to be true.</xs:documentation>
  1283. </xs:annotation>
  1284. </xs:element>
  1285. </xs:sequence>
  1286. </xs:complexType>
  1287. </xs:element>
  1288. <xs:element name="SetMetadataConfigurationResponse">
  1289. <xs:complexType>
  1290. <xs:sequence>
  1291. </xs:sequence>
  1292. </xs:complexType>
  1293. </xs:element>
  1294. <!--===============================-->
  1295. <!--===============================-->
  1296. <xs:element name="SetAudioOutputConfiguration">
  1297. <xs:complexType>
  1298. <xs:sequence>
  1299. <xs:element name="Configuration" type="tt:AudioOutputConfiguration">
  1300. <xs:annotation>
  1301. <xs:documentation>Contains the modified audio output configuration. The configuration shall exist in the device.</xs:documentation>
  1302. </xs:annotation>
  1303. </xs:element>
  1304. <xs:element name="ForcePersistence" type="xs:boolean">
  1305. <xs:annotation>
  1306. <xs:documentation>The ForcePersistence element is obsolete and should always be assumed to be true.</xs:documentation>
  1307. </xs:annotation>
  1308. </xs:element>
  1309. </xs:sequence>
  1310. </xs:complexType>
  1311. </xs:element>
  1312. <xs:element name="SetAudioOutputConfigurationResponse">
  1313. <xs:complexType>
  1314. <xs:sequence>
  1315. </xs:sequence>
  1316. </xs:complexType>
  1317. </xs:element>
  1318. <!--===============================-->
  1319. <xs:element name="SetAudioDecoderConfiguration">
  1320. <xs:complexType>
  1321. <xs:sequence>
  1322. <xs:element name="Configuration" type="tt:AudioDecoderConfiguration">
  1323. <xs:annotation>
  1324. <xs:documentation>Contains the modified audio decoder configuration. The configuration shall exist in the device.</xs:documentation>
  1325. </xs:annotation>
  1326. </xs:element>
  1327. <xs:element name="ForcePersistence" type="xs:boolean">
  1328. <xs:annotation>
  1329. <xs:documentation>The ForcePersistence element is obsolete and should always be assumed to be true.</xs:documentation>
  1330. </xs:annotation>
  1331. </xs:element>
  1332. </xs:sequence>
  1333. </xs:complexType>
  1334. </xs:element>
  1335. <xs:element name="SetAudioDecoderConfigurationResponse">
  1336. <xs:complexType>
  1337. <xs:sequence>
  1338. </xs:sequence>
  1339. </xs:complexType>
  1340. </xs:element>
  1341. <!--===============================-->
  1342. <xs:element name="GetVideoSourceConfigurationOptions">
  1343. <xs:complexType>
  1344. <xs:sequence>
  1345. <xs:element name="ConfigurationToken" type="tt:ReferenceToken" minOccurs="0">
  1346. <xs:annotation>
  1347. <xs:documentation>Optional video source configurationToken that specifies an existing configuration that the options are intended for.</xs:documentation>
  1348. </xs:annotation>
  1349. </xs:element>
  1350. <xs:element name="ProfileToken" type="tt:ReferenceToken" minOccurs="0">
  1351. <xs:annotation>
  1352. <xs:documentation>Optional ProfileToken that specifies an existing media profile that the options shall be compatible with.</xs:documentation>
  1353. </xs:annotation>
  1354. </xs:element>
  1355. </xs:sequence>
  1356. </xs:complexType>
  1357. </xs:element>
  1358. <xs:element name="GetVideoSourceConfigurationOptionsResponse">
  1359. <xs:complexType>
  1360. <xs:sequence>
  1361. <xs:element name="Options" type="tt:VideoSourceConfigurationOptions">
  1362. <xs:annotation>
  1363. <xs:documentation>This message contains the video source configuration options. If a video source configuration is specified, the options shall concern that particular configuration. If a media profile is specified, the options shall be compatible with that media profile. If no tokens are specified, the options shall be considered generic for the device.</xs:documentation>
  1364. </xs:annotation>
  1365. </xs:element>
  1366. </xs:sequence>
  1367. </xs:complexType>
  1368. </xs:element>
  1369. <!--===============================-->
  1370. <xs:element name="GetVideoEncoderConfigurationOptions">
  1371. <xs:complexType>
  1372. <xs:sequence>
  1373. <xs:element name="ConfigurationToken" type="tt:ReferenceToken" minOccurs="0">
  1374. <xs:annotation>
  1375. <xs:documentation>Optional video encoder configuration token that specifies an existing configuration that the options are intended for.</xs:documentation>
  1376. </xs:annotation>
  1377. </xs:element>
  1378. <xs:element name="ProfileToken" type="tt:ReferenceToken" minOccurs="0">
  1379. <xs:annotation>
  1380. <xs:documentation>Optional ProfileToken that specifies an existing media profile that the options shall be compatible with.</xs:documentation>
  1381. </xs:annotation>
  1382. </xs:element>
  1383. </xs:sequence>
  1384. </xs:complexType>
  1385. </xs:element>
  1386. <xs:element name="GetVideoEncoderConfigurationOptionsResponse">
  1387. <xs:complexType>
  1388. <xs:sequence>
  1389. <xs:element name="Options" type="tt:VideoEncoderConfigurationOptions"/>
  1390. </xs:sequence>
  1391. </xs:complexType>
  1392. </xs:element>
  1393. <!--===============================-->
  1394. <xs:element name="GetAudioSourceConfigurationOptions">
  1395. <xs:complexType>
  1396. <xs:sequence>
  1397. <xs:element name="ConfigurationToken" type="tt:ReferenceToken" minOccurs="0">
  1398. <xs:annotation>
  1399. <xs:documentation>Optional audio source configuration token that specifies an existing configuration that the options are intended for.</xs:documentation>
  1400. </xs:annotation>
  1401. </xs:element>
  1402. <xs:element name="ProfileToken" type="tt:ReferenceToken" minOccurs="0">
  1403. <xs:annotation>
  1404. <xs:documentation>Optional ProfileToken that specifies an existing media profile that the options shall be compatible with.</xs:documentation>
  1405. </xs:annotation>
  1406. </xs:element>
  1407. </xs:sequence>
  1408. </xs:complexType>
  1409. </xs:element>
  1410. <xs:element name="GetAudioSourceConfigurationOptionsResponse">
  1411. <xs:complexType>
  1412. <xs:sequence>
  1413. <xs:element name="Options" type="tt:AudioSourceConfigurationOptions">
  1414. <xs:annotation>
  1415. <xs:documentation>This message contains the audio source configuration options. If a audio source configuration is specified, the options shall concern that particular configuration. If a media profile is specified, the options shall be compatible with that media profile. If no tokens are specified, the options shall be considered generic for the device.</xs:documentation>
  1416. </xs:annotation>
  1417. </xs:element>
  1418. </xs:sequence>
  1419. </xs:complexType>
  1420. </xs:element>
  1421. <!--===============================-->
  1422. <xs:element name="GetAudioEncoderConfigurationOptions">
  1423. <xs:complexType>
  1424. <xs:sequence>
  1425. <xs:element name="ConfigurationToken" type="tt:ReferenceToken" minOccurs="0">
  1426. <xs:annotation>
  1427. <xs:documentation>Optional audio encoder configuration token that specifies an existing configuration that the options are intended for.</xs:documentation>
  1428. </xs:annotation>
  1429. </xs:element>
  1430. <xs:element name="ProfileToken" type="tt:ReferenceToken" minOccurs="0">
  1431. <xs:annotation>
  1432. <xs:documentation>Optional ProfileToken that specifies an existing media profile that the options shall be compatible with.</xs:documentation>
  1433. </xs:annotation>
  1434. </xs:element>
  1435. </xs:sequence>
  1436. </xs:complexType>
  1437. </xs:element>
  1438. <xs:element name="GetAudioEncoderConfigurationOptionsResponse">
  1439. <xs:complexType>
  1440. <xs:sequence>
  1441. <xs:element name="Options" type="tt:AudioEncoderConfigurationOptions">
  1442. <xs:annotation>
  1443. <xs:documentation>This message contains the audio encoder configuration options. If a audio encoder configuration is specified, the options shall concern that particular configuration. If a media profile is specified, the options shall be compatible with that media profile. If no tokens are specified, the options shall be considered generic for the device.</xs:documentation>
  1444. </xs:annotation>
  1445. </xs:element>
  1446. </xs:sequence>
  1447. </xs:complexType>
  1448. </xs:element>
  1449. <!--===============================-->
  1450. <xs:element name="GetMetadataConfigurationOptions">
  1451. <xs:complexType>
  1452. <xs:sequence>
  1453. <xs:element name="ConfigurationToken" type="tt:ReferenceToken" minOccurs="0">
  1454. <xs:annotation>
  1455. <xs:documentation>Optional metadata configuration token that specifies an existing configuration that the options are intended for.</xs:documentation>
  1456. </xs:annotation>
  1457. </xs:element>
  1458. <xs:element name="ProfileToken" type="tt:ReferenceToken" minOccurs="0">
  1459. <xs:annotation>
  1460. <xs:documentation>Optional ProfileToken that specifies an existing media profile that the options shall be compatible with.</xs:documentation>
  1461. </xs:annotation>
  1462. </xs:element>
  1463. </xs:sequence>
  1464. </xs:complexType>
  1465. </xs:element>
  1466. <xs:element name="GetMetadataConfigurationOptionsResponse">
  1467. <xs:complexType>
  1468. <xs:sequence>
  1469. <xs:element name="Options" type="tt:MetadataConfigurationOptions">
  1470. <xs:annotation>
  1471. <xs:documentation>This message contains the metadata configuration options. If a metadata configuration is specified, the options shall concern that particular configuration. If a media profile is specified, the options shall be compatible with that media profile. If no tokens are specified, the options shall be considered generic for the device.</xs:documentation>
  1472. </xs:annotation>
  1473. </xs:element>
  1474. </xs:sequence>
  1475. </xs:complexType>
  1476. </xs:element>
  1477. <!--===============================-->
  1478. <xs:element name="GetAudioOutputConfigurationOptions">
  1479. <xs:complexType>
  1480. <xs:sequence>
  1481. <xs:element name="ConfigurationToken" type="tt:ReferenceToken" minOccurs="0">
  1482. <xs:annotation>
  1483. <xs:documentation>Optional audio output configuration token that specifies an existing configuration that the options are intended for.</xs:documentation>
  1484. </xs:annotation>
  1485. </xs:element>
  1486. <xs:element name="ProfileToken" type="tt:ReferenceToken" minOccurs="0">
  1487. <xs:annotation>
  1488. <xs:documentation>Optional ProfileToken that specifies an existing media profile that the options shall be compatible with.</xs:documentation>
  1489. </xs:annotation>
  1490. </xs:element>
  1491. </xs:sequence>
  1492. </xs:complexType>
  1493. </xs:element>
  1494. <xs:element name="GetAudioOutputConfigurationOptionsResponse">
  1495. <xs:complexType>
  1496. <xs:sequence>
  1497. <xs:element name="Options" type="tt:AudioOutputConfigurationOptions">
  1498. <xs:annotation>
  1499. <xs:documentation>This message contains the audio output configuration options. If a audio output configuration is specified, the options shall concern that particular configuration. If a media profile is specified, the options shall be compatible with that media profile. If no tokens are specified, the options shall be considered generic for the device.</xs:documentation>
  1500. </xs:annotation>
  1501. </xs:element>
  1502. </xs:sequence>
  1503. </xs:complexType>
  1504. </xs:element>
  1505. <!--===============================-->
  1506. <xs:element name="GetAudioDecoderConfigurationOptions">
  1507. <xs:complexType>
  1508. <xs:sequence>
  1509. <xs:element name="ConfigurationToken" type="tt:ReferenceToken" minOccurs="0">
  1510. <xs:annotation>
  1511. <xs:documentation>Optional audio decoder configuration token that specifies an existing configuration that the options are intended for.</xs:documentation>
  1512. </xs:annotation>
  1513. </xs:element>
  1514. <xs:element name="ProfileToken" type="tt:ReferenceToken" minOccurs="0">
  1515. <xs:annotation>
  1516. <xs:documentation>Optional ProfileToken that specifies an existing media profile that the options shall be compatible with.</xs:documentation>
  1517. </xs:annotation>
  1518. </xs:element>
  1519. </xs:sequence>
  1520. </xs:complexType>
  1521. </xs:element>
  1522. <xs:element name="GetAudioDecoderConfigurationOptionsResponse">
  1523. <xs:complexType>
  1524. <xs:sequence>
  1525. <xs:element name="Options" type="tt:AudioDecoderConfigurationOptions">
  1526. <xs:annotation>
  1527. <xs:documentation>This message contains the audio decoder configuration options. If a audio decoder configuration is specified, the options shall concern that particular configuration. If a media profile is specified, the options shall be compatible with that media profile. If no tokens are specified, the options shall be considered generic for the device.</xs:documentation>
  1528. </xs:annotation>
  1529. </xs:element>
  1530. </xs:sequence>
  1531. </xs:complexType>
  1532. </xs:element>
  1533. <!--===============================-->
  1534. <xs:element name="GetGuaranteedNumberOfVideoEncoderInstances">
  1535. <xs:complexType>
  1536. <xs:sequence>
  1537. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  1538. <xs:annotation>
  1539. <xs:documentation>Token of the video source configuration</xs:documentation>
  1540. </xs:annotation>
  1541. </xs:element>
  1542. </xs:sequence>
  1543. </xs:complexType>
  1544. </xs:element>
  1545. <xs:element name="GetGuaranteedNumberOfVideoEncoderInstancesResponse">
  1546. <xs:complexType>
  1547. <xs:sequence>
  1548. <xs:element name="TotalNumber" type="xs:int">
  1549. <xs:annotation>
  1550. <xs:documentation>The minimum guaranteed total number of encoder instances (applications) per VideoSourceConfiguration. The device is able to deliver the TotalNumber of streams</xs:documentation>
  1551. </xs:annotation>
  1552. </xs:element>
  1553. <xs:element name="JPEG" type="xs:int" minOccurs="0">
  1554. <xs:annotation>
  1555. <xs:documentation>If a device limits the number of instances for respective Video Codecs the response contains the information how many Jpeg streams can be set up at the same time per VideoSource.</xs:documentation>
  1556. </xs:annotation>
  1557. </xs:element>
  1558. <xs:element name="H264" type="xs:int" minOccurs="0">
  1559. <xs:annotation>
  1560. <xs:documentation>If a device limits the number of instances for respective Video Codecs the response contains the information how many H264 streams can be set up at the same time per VideoSource.</xs:documentation>
  1561. </xs:annotation>
  1562. </xs:element>
  1563. <xs:element name="MPEG4" type="xs:int" minOccurs="0">
  1564. <xs:annotation>
  1565. <xs:documentation>If a device limits the number of instances for respective Video Codecs the response contains the information how many Mpeg4 streams can be set up at the same time per VideoSource.</xs:documentation>
  1566. </xs:annotation>
  1567. </xs:element>
  1568. </xs:sequence>
  1569. </xs:complexType>
  1570. </xs:element>
  1571. <!--===============================-->
  1572. <xs:element name="GetStreamUri">
  1573. <xs:complexType>
  1574. <xs:sequence>
  1575. <xs:element name="StreamSetup" type="tt:StreamSetup">
  1576. <xs:annotation>
  1577. <xs:documentation>Stream Setup that should be used with the uri</xs:documentation>
  1578. </xs:annotation>
  1579. </xs:element>
  1580. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  1581. <xs:annotation>
  1582. <xs:documentation>The ProfileToken element indicates the media profile to use and will define the configuration of the content of the stream.</xs:documentation>
  1583. </xs:annotation>
  1584. </xs:element>
  1585. </xs:sequence>
  1586. </xs:complexType>
  1587. </xs:element>
  1588. <xs:element name="GetStreamUriResponse">
  1589. <xs:complexType>
  1590. <xs:sequence>
  1591. <xs:element name="MediaUri" type="tt:MediaUri">
  1592. <xs:annotation>
  1593. <xs:documentation/>
  1594. </xs:annotation>
  1595. </xs:element>
  1596. </xs:sequence>
  1597. </xs:complexType>
  1598. </xs:element>
  1599. <!--===============================-->
  1600. <xs:element name="StartMulticastStreaming">
  1601. <xs:complexType>
  1602. <xs:sequence>
  1603. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  1604. <xs:annotation>
  1605. <xs:documentation>Contains the token of the Profile that is used to define the multicast stream.</xs:documentation>
  1606. </xs:annotation>
  1607. </xs:element>
  1608. </xs:sequence>
  1609. </xs:complexType>
  1610. </xs:element>
  1611. <xs:element name="StartMulticastStreamingResponse">
  1612. <xs:complexType>
  1613. <xs:sequence>
  1614. </xs:sequence>
  1615. </xs:complexType>
  1616. </xs:element>
  1617. <!--===============================-->
  1618. <xs:element name="StopMulticastStreaming">
  1619. <xs:complexType>
  1620. <xs:sequence>
  1621. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  1622. <xs:annotation>
  1623. <xs:documentation>Contains the token of the Profile that is used to define the multicast stream.</xs:documentation>
  1624. </xs:annotation>
  1625. </xs:element>
  1626. </xs:sequence>
  1627. </xs:complexType>
  1628. </xs:element>
  1629. <xs:element name="StopMulticastStreamingResponse">
  1630. <xs:complexType>
  1631. <xs:sequence>
  1632. </xs:sequence>
  1633. </xs:complexType>
  1634. </xs:element>
  1635. <!--===============================-->
  1636. <xs:element name="SetSynchronizationPoint">
  1637. <xs:complexType>
  1638. <xs:sequence>
  1639. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  1640. <xs:annotation>
  1641. <xs:documentation>Contains a Profile reference for which a Synchronization Point is requested.</xs:documentation>
  1642. </xs:annotation>
  1643. </xs:element>
  1644. </xs:sequence>
  1645. </xs:complexType>
  1646. </xs:element>
  1647. <xs:element name="SetSynchronizationPointResponse">
  1648. <xs:complexType>
  1649. <xs:sequence>
  1650. </xs:sequence>
  1651. </xs:complexType>
  1652. </xs:element>
  1653. <!--===============================-->
  1654. <xs:element name="GetSnapshotUri">
  1655. <xs:complexType>
  1656. <xs:sequence>
  1657. <xs:element name="ProfileToken" type="tt:ReferenceToken">
  1658. <xs:annotation>
  1659. <xs:documentation>The ProfileToken element indicates the media profile to use and will define the source and dimensions of the snapshot.</xs:documentation>
  1660. </xs:annotation>
  1661. </xs:element>
  1662. </xs:sequence>
  1663. </xs:complexType>
  1664. </xs:element>
  1665. <xs:element name="GetSnapshotUriResponse">
  1666. <xs:complexType>
  1667. <xs:sequence>
  1668. <xs:element name="MediaUri" type="tt:MediaUri">
  1669. <xs:annotation>
  1670. <xs:documentation/>
  1671. </xs:annotation>
  1672. </xs:element>
  1673. </xs:sequence>
  1674. </xs:complexType>
  1675. </xs:element>
  1676. <!--================ Video Source Mode ===============-->
  1677. <xs:element name="GetVideoSourceModes">
  1678. <xs:complexType>
  1679. <xs:sequence>
  1680. <xs:element name="VideoSourceToken" type="tt:ReferenceToken">
  1681. <xs:annotation>
  1682. <xs:documentation>Contains a video source reference for which a video source mode is requested.</xs:documentation>
  1683. </xs:annotation>
  1684. </xs:element>
  1685. </xs:sequence>
  1686. </xs:complexType>
  1687. </xs:element>
  1688. <xs:element name="GetVideoSourceModesResponse">
  1689. <xs:complexType>
  1690. <xs:sequence>
  1691. <xs:element name="VideoSourceModes" type="trt:VideoSourceMode" maxOccurs="unbounded">
  1692. <xs:annotation>
  1693. <xs:documentation>Return the information for specified video source mode.</xs:documentation>
  1694. </xs:annotation>
  1695. </xs:element>
  1696. </xs:sequence>
  1697. </xs:complexType>
  1698. </xs:element>
  1699. <!--===============================-->
  1700. <xs:element name="SetVideoSourceMode">
  1701. <xs:complexType>
  1702. <xs:sequence>
  1703. <xs:element name="VideoSourceToken" type="tt:ReferenceToken">
  1704. <xs:annotation>
  1705. <xs:documentation>Contains a video source reference for which a video source mode is requested.</xs:documentation>
  1706. </xs:annotation>
  1707. </xs:element>
  1708. <xs:element name="VideoSourceModeToken" type="tt:ReferenceToken">
  1709. <xs:annotation>
  1710. <xs:documentation>Indicate video source mode.</xs:documentation>
  1711. </xs:annotation>
  1712. </xs:element>
  1713. </xs:sequence>
  1714. </xs:complexType>
  1715. </xs:element>
  1716. <xs:element name="SetVideoSourceModeResponse">
  1717. <xs:complexType>
  1718. <xs:sequence>
  1719. <xs:element name="Reboot" type="xs:boolean">
  1720. <xs:annotation>
  1721. <xs:documentation>The response contains information about rebooting after returning response. When Reboot is set true, a device will reboot automatically after setting mode.</xs:documentation>
  1722. </xs:annotation>
  1723. </xs:element>
  1724. </xs:sequence>
  1725. </xs:complexType>
  1726. </xs:element>
  1727. <!--===============================-->
  1728. <xs:simpleType name="EncodingTypes">
  1729. <xs:annotation>
  1730. <xs:documentation>Indication which encodings are supported for this video source. The list may contain one or more enumeration values of tt:VideoEncoding.</xs:documentation>
  1731. </xs:annotation>
  1732. <xs:list itemType="xs:string"/>
  1733. </xs:simpleType>
  1734. <!--===============================-->
  1735. <xs:complexType name="VideoSourceMode">
  1736. <xs:sequence>
  1737. <xs:element name="MaxFramerate" type="xs:float">
  1738. <xs:annotation>
  1739. <xs:documentation>Max frame rate in frames per second for this video source mode.</xs:documentation>
  1740. </xs:annotation>
  1741. </xs:element>
  1742. <xs:element name="MaxResolution" type="tt:VideoResolution">
  1743. <xs:annotation>
  1744. <xs:documentation>Max horizontal and vertical resolution for this video source mode.</xs:documentation>
  1745. </xs:annotation>
  1746. </xs:element>
  1747. <xs:element name="Encodings" type="trt:EncodingTypes">
  1748. <xs:annotation>
  1749. <xs:documentation>Indication which encodings are supported for this video source. The list may contain one or more enumeration values of tt:VideoEncoding.</xs:documentation>
  1750. </xs:annotation>
  1751. </xs:element>
  1752. <xs:element name="Reboot" type="xs:boolean">
  1753. <xs:annotation>
  1754. <xs:documentation>After setting the mode if a device starts to reboot this value is true. If a device change the mode without rebooting this value is false. If true, configured parameters may not be guaranteed by the device after rebooting.</xs:documentation>
  1755. </xs:annotation>
  1756. </xs:element>
  1757. <xs:element name="Description" type="tt:Description" minOccurs="0">
  1758. <xs:annotation>
  1759. <xs:documentation>Informative description of this video source mode. This field should be described in English.</xs:documentation>
  1760. </xs:annotation>
  1761. </xs:element>
  1762. <xs:element name="Extension" type="trt:VideoSourceModeExtension" minOccurs="0"/>
  1763. </xs:sequence>
  1764. <xs:attribute name="token" type="tt:ReferenceToken" use="required">
  1765. <xs:annotation>
  1766. <xs:documentation>Indicate token for video source mode.</xs:documentation>
  1767. </xs:annotation>
  1768. </xs:attribute>
  1769. <xs:attribute name="Enabled" type="xs:boolean">
  1770. <xs:annotation>
  1771. <xs:documentation>Indication of whether this mode is active. If active this value is true. In case of non-indication, it means as false. The value of true shall be had by only one video source mode.</xs:documentation>
  1772. </xs:annotation>
  1773. </xs:attribute>
  1774. <xs:anyAttribute processContents="lax"/>
  1775. </xs:complexType>
  1776. <!--===============================-->
  1777. <xs:complexType name="VideoSourceModeExtension">
  1778. <xs:sequence>
  1779. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  1780. </xs:sequence>
  1781. </xs:complexType>
  1782. <!--===============================-->
  1783. <!--============OSD Schema Begin================-->
  1784. <xs:element name="GetOSDs">
  1785. <xs:complexType>
  1786. <xs:sequence>
  1787. <xs:element name="ConfigurationToken" type="tt:ReferenceToken" minOccurs="0" maxOccurs="1">
  1788. <xs:annotation>
  1789. <xs:documentation>Token of the Video Source Configuration, which has OSDs associated with are requested. If token not exist, request all available OSDs.</xs:documentation>
  1790. </xs:annotation>
  1791. </xs:element>
  1792. </xs:sequence>
  1793. </xs:complexType>
  1794. </xs:element>
  1795. <xs:element name="GetOSDsResponse">
  1796. <xs:complexType>
  1797. <xs:sequence>
  1798. <xs:element name="OSDs" type="tt:OSDConfiguration" minOccurs="0" maxOccurs="unbounded">
  1799. <xs:annotation>
  1800. <xs:documentation>This element contains a list of requested OSDs.</xs:documentation>
  1801. </xs:annotation>
  1802. </xs:element>
  1803. </xs:sequence>
  1804. </xs:complexType>
  1805. </xs:element>
  1806. <!--===============================-->
  1807. <xs:element name="GetOSD">
  1808. <xs:complexType>
  1809. <xs:sequence>
  1810. <xs:element name="OSDToken" type="tt:ReferenceToken">
  1811. <xs:annotation>
  1812. <xs:documentation>The GetOSD command fetches the OSD configuration if the OSD token is known.</xs:documentation>
  1813. </xs:annotation>
  1814. </xs:element>
  1815. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  1816. </xs:sequence>
  1817. </xs:complexType>
  1818. </xs:element>
  1819. <xs:element name="GetOSDResponse">
  1820. <xs:complexType>
  1821. <xs:sequence>
  1822. <xs:element name="OSD" type="tt:OSDConfiguration">
  1823. <xs:annotation>
  1824. <xs:documentation>The requested OSD configuration.</xs:documentation>
  1825. </xs:annotation>
  1826. </xs:element>
  1827. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  1828. </xs:sequence>
  1829. </xs:complexType>
  1830. </xs:element>
  1831. <!--===============================-->
  1832. <xs:element name="SetOSD">
  1833. <xs:complexType>
  1834. <xs:sequence>
  1835. <xs:element name="OSD" type="tt:OSDConfiguration">
  1836. <xs:annotation>
  1837. <xs:documentation>Contains the modified OSD configuration.</xs:documentation>
  1838. </xs:annotation>
  1839. </xs:element>
  1840. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  1841. </xs:sequence>
  1842. </xs:complexType>
  1843. </xs:element>
  1844. <xs:element name="SetOSDResponse">
  1845. <xs:complexType>
  1846. <xs:sequence>
  1847. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  1848. </xs:sequence>
  1849. </xs:complexType>
  1850. </xs:element>
  1851. <!--===============================-->
  1852. <xs:element name="GetOSDOptions">
  1853. <xs:complexType>
  1854. <xs:sequence>
  1855. <xs:element name="ConfigurationToken" type="tt:ReferenceToken">
  1856. <xs:annotation>
  1857. <xs:documentation>Video Source Configuration Token that specifies an existing video source configuration that the options shall be compatible with.</xs:documentation>
  1858. </xs:annotation>
  1859. </xs:element>
  1860. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  1861. </xs:sequence>
  1862. </xs:complexType>
  1863. </xs:element>
  1864. <xs:element name="GetOSDOptionsResponse">
  1865. <xs:complexType>
  1866. <xs:sequence>
  1867. <xs:element name="OSDOptions" type="tt:OSDConfigurationOptions">
  1868. <xs:annotation>
  1869. <xs:documentation/>
  1870. </xs:annotation>
  1871. </xs:element>
  1872. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  1873. </xs:sequence>
  1874. </xs:complexType>
  1875. </xs:element>
  1876. <!--===============================-->
  1877. <xs:element name="CreateOSD">
  1878. <xs:complexType>
  1879. <xs:sequence>
  1880. <xs:element name="OSD" type="tt:OSDConfiguration">
  1881. <xs:annotation>
  1882. <xs:documentation>Contain the initial OSD configuration for create.</xs:documentation>
  1883. </xs:annotation>
  1884. </xs:element>
  1885. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  1886. </xs:sequence>
  1887. </xs:complexType>
  1888. </xs:element>
  1889. <xs:element name="CreateOSDResponse">
  1890. <xs:complexType>
  1891. <xs:sequence>
  1892. <xs:element name="OSDToken" type="tt:ReferenceToken">
  1893. <xs:annotation>
  1894. <xs:documentation>Returns Token of the newly created OSD</xs:documentation>
  1895. </xs:annotation>
  1896. </xs:element>
  1897. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  1898. </xs:sequence>
  1899. </xs:complexType>
  1900. </xs:element>
  1901. <!--===============================-->
  1902. <xs:element name="DeleteOSD">
  1903. <xs:complexType>
  1904. <xs:sequence>
  1905. <xs:element name="OSDToken" type="tt:ReferenceToken">
  1906. <xs:annotation>
  1907. <xs:documentation>This element contains a reference to the OSD configuration that should be deleted.</xs:documentation>
  1908. </xs:annotation>
  1909. </xs:element>
  1910. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  1911. </xs:sequence>
  1912. </xs:complexType>
  1913. </xs:element>
  1914. <xs:element name="DeleteOSDResponse">
  1915. <xs:complexType>
  1916. <xs:sequence>
  1917. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  1918. </xs:sequence>
  1919. </xs:complexType>
  1920. </xs:element>
  1921. <!--============OSD Schema End================-->
  1922. </xs:schema>
  1923. </wsdl:types>
  1924. <wsdl:message name="GetServiceCapabilitiesRequest">
  1925. <wsdl:part name="parameter" element="trt:GetServiceCapabilities"/>
  1926. </wsdl:message>
  1927. <wsdl:message name="GetServiceCapabilitiesResponse">
  1928. <wsdl:part name="parameter" element="trt:GetServiceCapabilitiesResponse"/>
  1929. </wsdl:message>
  1930. <wsdl:message name="GetVideoSourcesRequest">
  1931. <wsdl:part name="parameters" element="trt:GetVideoSources"/>
  1932. </wsdl:message>
  1933. <wsdl:message name="GetVideoSourcesResponse">
  1934. <wsdl:part name="parameters" element="trt:GetVideoSourcesResponse"/>
  1935. </wsdl:message>
  1936. <wsdl:message name="GetAudioSourcesRequest">
  1937. <wsdl:part name="parameters" element="trt:GetAudioSources"/>
  1938. </wsdl:message>
  1939. <wsdl:message name="GetAudioSourcesResponse">
  1940. <wsdl:part name="parameters" element="trt:GetAudioSourcesResponse"/>
  1941. </wsdl:message>
  1942. <wsdl:message name="GetAudioOutputsRequest">
  1943. <wsdl:part name="parameters" element="trt:GetAudioOutputs"/>
  1944. </wsdl:message>
  1945. <wsdl:message name="GetAudioOutputsResponse">
  1946. <wsdl:part name="parameters" element="trt:GetAudioOutputsResponse"/>
  1947. </wsdl:message>
  1948. <wsdl:message name="CreateProfileRequest">
  1949. <wsdl:part name="parameters" element="trt:CreateProfile"/>
  1950. </wsdl:message>
  1951. <wsdl:message name="CreateProfileResponse">
  1952. <wsdl:part name="parameters" element="trt:CreateProfileResponse"/>
  1953. </wsdl:message>
  1954. <wsdl:message name="GetProfileRequest">
  1955. <wsdl:part name="parameters" element="trt:GetProfile"/>
  1956. </wsdl:message>
  1957. <wsdl:message name="GetProfileResponse">
  1958. <wsdl:part name="parameters" element="trt:GetProfileResponse"/>
  1959. </wsdl:message>
  1960. <wsdl:message name="GetProfilesRequest">
  1961. <wsdl:part name="parameters" element="trt:GetProfiles"/>
  1962. </wsdl:message>
  1963. <wsdl:message name="GetProfilesResponse">
  1964. <wsdl:part name="parameters" element="trt:GetProfilesResponse"/>
  1965. </wsdl:message>
  1966. <wsdl:message name="AddVideoEncoderConfigurationRequest">
  1967. <wsdl:part name="parameters" element="trt:AddVideoEncoderConfiguration"/>
  1968. </wsdl:message>
  1969. <wsdl:message name="AddVideoEncoderConfigurationResponse">
  1970. <wsdl:part name="parameters" element="trt:AddVideoEncoderConfigurationResponse"/>
  1971. </wsdl:message>
  1972. <wsdl:message name="RemoveVideoEncoderConfigurationRequest">
  1973. <wsdl:part name="parameters" element="trt:RemoveVideoEncoderConfiguration"/>
  1974. </wsdl:message>
  1975. <wsdl:message name="RemoveVideoEncoderConfigurationResponse">
  1976. <wsdl:part name="parameters" element="trt:RemoveVideoEncoderConfigurationResponse"/>
  1977. </wsdl:message>
  1978. <wsdl:message name="AddVideoSourceConfigurationRequest">
  1979. <wsdl:part name="parameters" element="trt:AddVideoSourceConfiguration"/>
  1980. </wsdl:message>
  1981. <wsdl:message name="AddVideoSourceConfigurationResponse">
  1982. <wsdl:part name="parameters" element="trt:AddVideoSourceConfigurationResponse"/>
  1983. </wsdl:message>
  1984. <wsdl:message name="RemoveVideoSourceConfigurationRequest">
  1985. <wsdl:part name="parameters" element="trt:RemoveVideoSourceConfiguration"/>
  1986. </wsdl:message>
  1987. <wsdl:message name="RemoveVideoSourceConfigurationResponse">
  1988. <wsdl:part name="parameters" element="trt:RemoveVideoSourceConfigurationResponse"/>
  1989. </wsdl:message>
  1990. <wsdl:message name="AddAudioEncoderConfigurationRequest">
  1991. <wsdl:part name="parameters" element="trt:AddAudioEncoderConfiguration"/>
  1992. </wsdl:message>
  1993. <wsdl:message name="AddAudioEncoderConfigurationResponse">
  1994. <wsdl:part name="parameters" element="trt:AddAudioEncoderConfigurationResponse"/>
  1995. </wsdl:message>
  1996. <wsdl:message name="RemoveAudioEncoderConfigurationRequest">
  1997. <wsdl:part name="parameters" element="trt:RemoveAudioEncoderConfiguration"/>
  1998. </wsdl:message>
  1999. <wsdl:message name="RemoveAudioEncoderConfigurationResponse">
  2000. <wsdl:part name="parameters" element="trt:RemoveAudioEncoderConfigurationResponse"/>
  2001. </wsdl:message>
  2002. <wsdl:message name="AddAudioSourceConfigurationRequest">
  2003. <wsdl:part name="parameters" element="trt:AddAudioSourceConfiguration"/>
  2004. </wsdl:message>
  2005. <wsdl:message name="AddAudioSourceConfigurationResponse">
  2006. <wsdl:part name="parameters" element="trt:AddAudioSourceConfigurationResponse"/>
  2007. </wsdl:message>
  2008. <wsdl:message name="RemoveAudioSourceConfigurationRequest">
  2009. <wsdl:part name="parameters" element="trt:RemoveAudioSourceConfiguration"/>
  2010. </wsdl:message>
  2011. <wsdl:message name="RemoveAudioSourceConfigurationResponse">
  2012. <wsdl:part name="parameters" element="trt:RemoveAudioSourceConfigurationResponse"/>
  2013. </wsdl:message>
  2014. <wsdl:message name="AddPTZConfigurationRequest">
  2015. <wsdl:part name="parameters" element="trt:AddPTZConfiguration"/>
  2016. </wsdl:message>
  2017. <wsdl:message name="AddPTZConfigurationResponse">
  2018. <wsdl:part name="parameters" element="trt:AddPTZConfigurationResponse"/>
  2019. </wsdl:message>
  2020. <wsdl:message name="RemovePTZConfigurationRequest">
  2021. <wsdl:part name="parameters" element="trt:RemovePTZConfiguration"/>
  2022. </wsdl:message>
  2023. <wsdl:message name="RemovePTZConfigurationResponse">
  2024. <wsdl:part name="parameters" element="trt:RemovePTZConfigurationResponse"/>
  2025. </wsdl:message>
  2026. <wsdl:message name="AddVideoAnalyticsConfigurationRequest">
  2027. <wsdl:part name="parameters" element="trt:AddVideoAnalyticsConfiguration"/>
  2028. </wsdl:message>
  2029. <wsdl:message name="AddVideoAnalyticsConfigurationResponse">
  2030. <wsdl:part name="parameters" element="trt:AddVideoAnalyticsConfigurationResponse"/>
  2031. </wsdl:message>
  2032. <wsdl:message name="RemoveVideoAnalyticsConfigurationRequest">
  2033. <wsdl:part name="parameters" element="trt:RemoveVideoAnalyticsConfiguration"/>
  2034. </wsdl:message>
  2035. <wsdl:message name="RemoveVideoAnalyticsConfigurationResponse">
  2036. <wsdl:part name="parameters" element="trt:RemoveVideoAnalyticsConfigurationResponse"/>
  2037. </wsdl:message>
  2038. <wsdl:message name="AddMetadataConfigurationRequest">
  2039. <wsdl:part name="parameters" element="trt:AddMetadataConfiguration"/>
  2040. </wsdl:message>
  2041. <wsdl:message name="AddMetadataConfigurationResponse">
  2042. <wsdl:part name="parameters" element="trt:AddMetadataConfigurationResponse"/>
  2043. </wsdl:message>
  2044. <wsdl:message name="RemoveMetadataConfigurationRequest">
  2045. <wsdl:part name="parameters" element="trt:RemoveMetadataConfiguration"/>
  2046. </wsdl:message>
  2047. <wsdl:message name="RemoveMetadataConfigurationResponse">
  2048. <wsdl:part name="parameters" element="trt:RemoveMetadataConfigurationResponse"/>
  2049. </wsdl:message>
  2050. <wsdl:message name="AddAudioOutputConfigurationRequest">
  2051. <wsdl:part name="parameters" element="trt:AddAudioOutputConfiguration"/>
  2052. </wsdl:message>
  2053. <wsdl:message name="AddAudioOutputConfigurationResponse">
  2054. <wsdl:part name="parameters" element="trt:AddAudioOutputConfigurationResponse"/>
  2055. </wsdl:message>
  2056. <wsdl:message name="RemoveAudioOutputConfigurationRequest">
  2057. <wsdl:part name="parameters" element="trt:RemoveAudioOutputConfiguration"/>
  2058. </wsdl:message>
  2059. <wsdl:message name="RemoveAudioOutputConfigurationResponse">
  2060. <wsdl:part name="parameters" element="trt:RemoveAudioOutputConfigurationResponse"/>
  2061. </wsdl:message>
  2062. <wsdl:message name="AddAudioDecoderConfigurationRequest">
  2063. <wsdl:part name="parameters" element="trt:AddAudioDecoderConfiguration"/>
  2064. </wsdl:message>
  2065. <wsdl:message name="AddAudioDecoderConfigurationResponse">
  2066. <wsdl:part name="parameters" element="trt:AddAudioDecoderConfigurationResponse"/>
  2067. </wsdl:message>
  2068. <wsdl:message name="RemoveAudioDecoderConfigurationRequest">
  2069. <wsdl:part name="parameters" element="trt:RemoveAudioDecoderConfiguration"/>
  2070. </wsdl:message>
  2071. <wsdl:message name="RemoveAudioDecoderConfigurationResponse">
  2072. <wsdl:part name="parameters" element="trt:RemoveAudioDecoderConfigurationResponse"/>
  2073. </wsdl:message>
  2074. <wsdl:message name="DeleteProfileRequest">
  2075. <wsdl:part name="parameters" element="trt:DeleteProfile"/>
  2076. </wsdl:message>
  2077. <wsdl:message name="DeleteProfileResponse">
  2078. <wsdl:part name="parameters" element="trt:DeleteProfileResponse"/>
  2079. </wsdl:message>
  2080. <wsdl:message name="GetVideoSourceConfigurationsRequest">
  2081. <wsdl:part name="parameters" element="trt:GetVideoSourceConfigurations"/>
  2082. </wsdl:message>
  2083. <wsdl:message name="GetVideoSourceConfigurationsResponse">
  2084. <wsdl:part name="parameters" element="trt:GetVideoSourceConfigurationsResponse"/>
  2085. </wsdl:message>
  2086. <wsdl:message name="GetVideoEncoderConfigurationsRequest">
  2087. <wsdl:part name="parameters" element="trt:GetVideoEncoderConfigurations"/>
  2088. </wsdl:message>
  2089. <wsdl:message name="GetVideoEncoderConfigurationsResponse">
  2090. <wsdl:part name="parameters" element="trt:GetVideoEncoderConfigurationsResponse"/>
  2091. </wsdl:message>
  2092. <wsdl:message name="GetAudioSourceConfigurationsRequest">
  2093. <wsdl:part name="parameters" element="trt:GetAudioSourceConfigurations"/>
  2094. </wsdl:message>
  2095. <wsdl:message name="GetAudioSourceConfigurationsResponse">
  2096. <wsdl:part name="parameters" element="trt:GetAudioSourceConfigurationsResponse"/>
  2097. </wsdl:message>
  2098. <wsdl:message name="GetAudioEncoderConfigurationsRequest">
  2099. <wsdl:part name="parameters" element="trt:GetAudioEncoderConfigurations"/>
  2100. </wsdl:message>
  2101. <wsdl:message name="GetAudioEncoderConfigurationsResponse">
  2102. <wsdl:part name="parameters" element="trt:GetAudioEncoderConfigurationsResponse"/>
  2103. </wsdl:message>
  2104. <wsdl:message name="GetVideoAnalyticsConfigurationsRequest">
  2105. <wsdl:part name="parameters" element="trt:GetVideoAnalyticsConfigurations"/>
  2106. </wsdl:message>
  2107. <wsdl:message name="GetVideoAnalyticsConfigurationsResponse">
  2108. <wsdl:part name="parameters" element="trt:GetVideoAnalyticsConfigurationsResponse"/>
  2109. </wsdl:message>
  2110. <wsdl:message name="GetMetadataConfigurationsRequest">
  2111. <wsdl:part name="parameters" element="trt:GetMetadataConfigurations"/>
  2112. </wsdl:message>
  2113. <wsdl:message name="GetMetadataConfigurationsResponse">
  2114. <wsdl:part name="parameters" element="trt:GetMetadataConfigurationsResponse"/>
  2115. </wsdl:message>
  2116. <wsdl:message name="GetAudioOutputConfigurationsRequest">
  2117. <wsdl:part name="parameters" element="trt:GetAudioOutputConfigurations"/>
  2118. </wsdl:message>
  2119. <wsdl:message name="GetAudioOutputConfigurationsResponse">
  2120. <wsdl:part name="parameters" element="trt:GetAudioOutputConfigurationsResponse"/>
  2121. </wsdl:message>
  2122. <wsdl:message name="GetAudioDecoderConfigurationsRequest">
  2123. <wsdl:part name="parameters" element="trt:GetAudioDecoderConfigurations"/>
  2124. </wsdl:message>
  2125. <wsdl:message name="GetAudioDecoderConfigurationsResponse">
  2126. <wsdl:part name="parameters" element="trt:GetAudioDecoderConfigurationsResponse"/>
  2127. </wsdl:message>
  2128. <wsdl:message name="GetVideoSourceConfigurationRequest">
  2129. <wsdl:part name="parameters" element="trt:GetVideoSourceConfiguration"/>
  2130. </wsdl:message>
  2131. <wsdl:message name="GetVideoSourceConfigurationResponse">
  2132. <wsdl:part name="parameters" element="trt:GetVideoSourceConfigurationResponse"/>
  2133. </wsdl:message>
  2134. <wsdl:message name="GetVideoEncoderConfigurationRequest">
  2135. <wsdl:part name="parameters" element="trt:GetVideoEncoderConfiguration"/>
  2136. </wsdl:message>
  2137. <wsdl:message name="GetVideoEncoderConfigurationResponse">
  2138. <wsdl:part name="parameters" element="trt:GetVideoEncoderConfigurationResponse"/>
  2139. </wsdl:message>
  2140. <wsdl:message name="GetAudioSourceConfigurationRequest">
  2141. <wsdl:part name="parameters" element="trt:GetAudioSourceConfiguration"/>
  2142. </wsdl:message>
  2143. <wsdl:message name="GetAudioSourceConfigurationResponse">
  2144. <wsdl:part name="parameters" element="trt:GetAudioSourceConfigurationResponse"/>
  2145. </wsdl:message>
  2146. <wsdl:message name="GetAudioEncoderConfigurationRequest">
  2147. <wsdl:part name="parameters" element="trt:GetAudioEncoderConfiguration"/>
  2148. </wsdl:message>
  2149. <wsdl:message name="GetAudioEncoderConfigurationResponse">
  2150. <wsdl:part name="parameters" element="trt:GetAudioEncoderConfigurationResponse"/>
  2151. </wsdl:message>
  2152. <wsdl:message name="GetVideoAnalyticsConfigurationRequest">
  2153. <wsdl:part name="parameters" element="trt:GetVideoAnalyticsConfiguration"/>
  2154. </wsdl:message>
  2155. <wsdl:message name="GetVideoAnalyticsConfigurationResponse">
  2156. <wsdl:part name="parameters" element="trt:GetVideoAnalyticsConfigurationResponse"/>
  2157. </wsdl:message>
  2158. <wsdl:message name="GetMetadataConfigurationRequest">
  2159. <wsdl:part name="parameters" element="trt:GetMetadataConfiguration"/>
  2160. </wsdl:message>
  2161. <wsdl:message name="GetMetadataConfigurationResponse">
  2162. <wsdl:part name="parameters" element="trt:GetMetadataConfigurationResponse"/>
  2163. </wsdl:message>
  2164. <wsdl:message name="GetAudioOutputConfigurationRequest">
  2165. <wsdl:part name="parameters" element="trt:GetAudioOutputConfiguration"/>
  2166. </wsdl:message>
  2167. <wsdl:message name="GetAudioOutputConfigurationResponse">
  2168. <wsdl:part name="parameters" element="trt:GetAudioOutputConfigurationResponse"/>
  2169. </wsdl:message>
  2170. <wsdl:message name="GetAudioDecoderConfigurationRequest">
  2171. <wsdl:part name="parameters" element="trt:GetAudioDecoderConfiguration"/>
  2172. </wsdl:message>
  2173. <wsdl:message name="GetAudioDecoderConfigurationResponse">
  2174. <wsdl:part name="parameters" element="trt:GetAudioDecoderConfigurationResponse"/>
  2175. </wsdl:message>
  2176. <wsdl:message name="GetCompatibleVideoEncoderConfigurationsRequest">
  2177. <wsdl:part name="parameters" element="trt:GetCompatibleVideoEncoderConfigurations"/>
  2178. </wsdl:message>
  2179. <wsdl:message name="GetCompatibleVideoEncoderConfigurationsResponse">
  2180. <wsdl:part name="parameters" element="trt:GetCompatibleVideoEncoderConfigurationsResponse"/>
  2181. </wsdl:message>
  2182. <wsdl:message name="GetCompatibleVideoSourceConfigurationsRequest">
  2183. <wsdl:part name="parameters" element="trt:GetCompatibleVideoSourceConfigurations"/>
  2184. </wsdl:message>
  2185. <wsdl:message name="GetCompatibleVideoSourceConfigurationsResponse">
  2186. <wsdl:part name="parameters" element="trt:GetCompatibleVideoSourceConfigurationsResponse"/>
  2187. </wsdl:message>
  2188. <wsdl:message name="GetCompatibleAudioEncoderConfigurationsRequest">
  2189. <wsdl:part name="parameters" element="trt:GetCompatibleAudioEncoderConfigurations"/>
  2190. </wsdl:message>
  2191. <wsdl:message name="GetCompatibleAudioEncoderConfigurationsResponse">
  2192. <wsdl:part name="parameters" element="trt:GetCompatibleAudioEncoderConfigurationsResponse"/>
  2193. </wsdl:message>
  2194. <wsdl:message name="GetCompatibleAudioSourceConfigurationsRequest">
  2195. <wsdl:part name="parameters" element="trt:GetCompatibleAudioSourceConfigurations"/>
  2196. </wsdl:message>
  2197. <wsdl:message name="GetCompatibleAudioSourceConfigurationsResponse">
  2198. <wsdl:part name="parameters" element="trt:GetCompatibleAudioSourceConfigurationsResponse"/>
  2199. </wsdl:message>
  2200. <wsdl:message name="GetCompatibleVideoAnalyticsConfigurationsRequest">
  2201. <wsdl:part name="parameters" element="trt:GetCompatibleVideoAnalyticsConfigurations"/>
  2202. </wsdl:message>
  2203. <wsdl:message name="GetCompatibleVideoAnalyticsConfigurationsResponse">
  2204. <wsdl:part name="parameters" element="trt:GetCompatibleVideoAnalyticsConfigurationsResponse"/>
  2205. </wsdl:message>
  2206. <wsdl:message name="GetCompatibleMetadataConfigurationsRequest">
  2207. <wsdl:part name="parameters" element="trt:GetCompatibleMetadataConfigurations"/>
  2208. </wsdl:message>
  2209. <wsdl:message name="GetCompatibleMetadataConfigurationsResponse">
  2210. <wsdl:part name="parameters" element="trt:GetCompatibleMetadataConfigurationsResponse"/>
  2211. </wsdl:message>
  2212. <wsdl:message name="GetCompatibleAudioOutputConfigurationsRequest">
  2213. <wsdl:part name="parameters" element="trt:GetCompatibleAudioOutputConfigurations"/>
  2214. </wsdl:message>
  2215. <wsdl:message name="GetCompatibleAudioOutputConfigurationsResponse">
  2216. <wsdl:part name="parameters" element="trt:GetCompatibleAudioOutputConfigurationsResponse"/>
  2217. </wsdl:message>
  2218. <wsdl:message name="GetCompatibleAudioDecoderConfigurationsRequest">
  2219. <wsdl:part name="parameters" element="trt:GetCompatibleAudioDecoderConfigurations"/>
  2220. </wsdl:message>
  2221. <wsdl:message name="GetCompatibleAudioDecoderConfigurationsResponse">
  2222. <wsdl:part name="parameters" element="trt:GetCompatibleAudioDecoderConfigurationsResponse"/>
  2223. </wsdl:message>
  2224. <wsdl:message name="SetVideoSourceConfigurationRequest">
  2225. <wsdl:part name="parameters" element="trt:SetVideoSourceConfiguration"/>
  2226. </wsdl:message>
  2227. <wsdl:message name="SetVideoSourceConfigurationResponse">
  2228. <wsdl:part name="parameters" element="trt:SetVideoSourceConfigurationResponse"/>
  2229. </wsdl:message>
  2230. <wsdl:message name="SetVideoEncoderConfigurationRequest">
  2231. <wsdl:part name="parameters" element="trt:SetVideoEncoderConfiguration"/>
  2232. </wsdl:message>
  2233. <wsdl:message name="SetVideoEncoderConfigurationResponse">
  2234. <wsdl:part name="parameters" element="trt:SetVideoEncoderConfigurationResponse"/>
  2235. </wsdl:message>
  2236. <wsdl:message name="SetAudioSourceConfigurationRequest">
  2237. <wsdl:part name="parameters" element="trt:SetAudioSourceConfiguration"/>
  2238. </wsdl:message>
  2239. <wsdl:message name="SetAudioSourceConfigurationResponse">
  2240. <wsdl:part name="parameters" element="trt:SetAudioSourceConfigurationResponse"/>
  2241. </wsdl:message>
  2242. <wsdl:message name="SetAudioEncoderConfigurationRequest">
  2243. <wsdl:part name="parameters" element="trt:SetAudioEncoderConfiguration"/>
  2244. </wsdl:message>
  2245. <wsdl:message name="SetAudioEncoderConfigurationResponse">
  2246. <wsdl:part name="parameters" element="trt:SetAudioEncoderConfigurationResponse"/>
  2247. </wsdl:message>
  2248. <wsdl:message name="SetVideoAnalyticsConfigurationRequest">
  2249. <wsdl:part name="parameters" element="trt:SetVideoAnalyticsConfiguration"/>
  2250. </wsdl:message>
  2251. <wsdl:message name="SetVideoAnalyticsConfigurationResponse">
  2252. <wsdl:part name="parameters" element="trt:SetVideoAnalyticsConfigurationResponse"/>
  2253. </wsdl:message>
  2254. <wsdl:message name="SetMetadataConfigurationRequest">
  2255. <wsdl:part name="parameters" element="trt:SetMetadataConfiguration"/>
  2256. </wsdl:message>
  2257. <wsdl:message name="SetMetadataConfigurationResponse">
  2258. <wsdl:part name="parameters" element="trt:SetMetadataConfigurationResponse"/>
  2259. </wsdl:message>
  2260. <wsdl:message name="SetAudioOutputConfigurationRequest">
  2261. <wsdl:part name="parameters" element="trt:SetAudioOutputConfiguration"/>
  2262. </wsdl:message>
  2263. <wsdl:message name="SetAudioOutputConfigurationResponse">
  2264. <wsdl:part name="parameters" element="trt:SetAudioOutputConfigurationResponse"/>
  2265. </wsdl:message>
  2266. <wsdl:message name="SetAudioDecoderConfigurationRequest">
  2267. <wsdl:part name="parameters" element="trt:SetAudioDecoderConfiguration"/>
  2268. </wsdl:message>
  2269. <wsdl:message name="SetAudioDecoderConfigurationResponse">
  2270. <wsdl:part name="parameters" element="trt:SetAudioDecoderConfigurationResponse"/>
  2271. </wsdl:message>
  2272. <wsdl:message name="GetVideoSourceConfigurationOptionsRequest">
  2273. <wsdl:part name="parameters" element="trt:GetVideoSourceConfigurationOptions"/>
  2274. </wsdl:message>
  2275. <wsdl:message name="GetVideoSourceConfigurationOptionsResponse">
  2276. <wsdl:part name="parameters" element="trt:GetVideoSourceConfigurationOptionsResponse"/>
  2277. </wsdl:message>
  2278. <wsdl:message name="GetVideoEncoderConfigurationOptionsRequest">
  2279. <wsdl:part name="parameters" element="trt:GetVideoEncoderConfigurationOptions"/>
  2280. </wsdl:message>
  2281. <wsdl:message name="GetVideoEncoderConfigurationOptionsResponse">
  2282. <wsdl:part name="parameters" element="trt:GetVideoEncoderConfigurationOptionsResponse"/>
  2283. </wsdl:message>
  2284. <wsdl:message name="GetAudioSourceConfigurationOptionsRequest">
  2285. <wsdl:part name="parameters" element="trt:GetAudioSourceConfigurationOptions"/>
  2286. </wsdl:message>
  2287. <wsdl:message name="GetAudioSourceConfigurationOptionsResponse">
  2288. <wsdl:part name="parameters" element="trt:GetAudioSourceConfigurationOptionsResponse"/>
  2289. </wsdl:message>
  2290. <wsdl:message name="GetAudioEncoderConfigurationOptionsRequest">
  2291. <wsdl:part name="parameters" element="trt:GetAudioEncoderConfigurationOptions"/>
  2292. </wsdl:message>
  2293. <wsdl:message name="GetAudioEncoderConfigurationOptionsResponse">
  2294. <wsdl:part name="parameters" element="trt:GetAudioEncoderConfigurationOptionsResponse"/>
  2295. </wsdl:message>
  2296. <wsdl:message name="GetMetadataConfigurationOptionsRequest">
  2297. <wsdl:part name="parameters" element="trt:GetMetadataConfigurationOptions"/>
  2298. </wsdl:message>
  2299. <wsdl:message name="GetMetadataConfigurationOptionsResponse">
  2300. <wsdl:part name="parameters" element="trt:GetMetadataConfigurationOptionsResponse"/>
  2301. </wsdl:message>
  2302. <wsdl:message name="GetAudioOutputConfigurationOptionsRequest">
  2303. <wsdl:part name="parameters" element="trt:GetAudioOutputConfigurationOptions"/>
  2304. </wsdl:message>
  2305. <wsdl:message name="GetAudioOutputConfigurationOptionsResponse">
  2306. <wsdl:part name="parameters" element="trt:GetAudioOutputConfigurationOptionsResponse"/>
  2307. </wsdl:message>
  2308. <wsdl:message name="GetAudioDecoderConfigurationOptionsRequest">
  2309. <wsdl:part name="parameters" element="trt:GetAudioDecoderConfigurationOptions"/>
  2310. </wsdl:message>
  2311. <wsdl:message name="GetAudioDecoderConfigurationOptionsResponse">
  2312. <wsdl:part name="parameters" element="trt:GetAudioDecoderConfigurationOptionsResponse"/>
  2313. </wsdl:message>
  2314. <wsdl:message name="GetGuaranteedNumberOfVideoEncoderInstancesRequest">
  2315. <wsdl:part name="parameters" element="trt:GetGuaranteedNumberOfVideoEncoderInstances"/>
  2316. </wsdl:message>
  2317. <wsdl:message name="GetGuaranteedNumberOfVideoEncoderInstancesResponse">
  2318. <wsdl:part name="parameters" element="trt:GetGuaranteedNumberOfVideoEncoderInstancesResponse"/>
  2319. </wsdl:message>
  2320. <wsdl:message name="GetStreamUriRequest">
  2321. <wsdl:part name="parameters" element="trt:GetStreamUri"/>
  2322. </wsdl:message>
  2323. <wsdl:message name="GetStreamUriResponse">
  2324. <wsdl:part name="parameters" element="trt:GetStreamUriResponse"/>
  2325. </wsdl:message>
  2326. <wsdl:message name="StartMulticastStreamingRequest">
  2327. <wsdl:part name="parameters" element="trt:StartMulticastStreaming"/>
  2328. </wsdl:message>
  2329. <wsdl:message name="StartMulticastStreamingResponse">
  2330. <wsdl:part name="parameters" element="trt:StartMulticastStreamingResponse"/>
  2331. </wsdl:message>
  2332. <wsdl:message name="StopMulticastStreamingRequest">
  2333. <wsdl:part name="parameters" element="trt:StopMulticastStreaming"/>
  2334. </wsdl:message>
  2335. <wsdl:message name="StopMulticastStreamingResponse">
  2336. <wsdl:part name="parameters" element="trt:StopMulticastStreamingResponse"/>
  2337. </wsdl:message>
  2338. <wsdl:message name="SetSynchronizationPointRequest">
  2339. <wsdl:part name="parameters" element="trt:SetSynchronizationPoint"/>
  2340. </wsdl:message>
  2341. <wsdl:message name="SetSynchronizationPointResponse">
  2342. <wsdl:part name="parameters" element="trt:SetSynchronizationPointResponse"/>
  2343. </wsdl:message>
  2344. <wsdl:message name="GetSnapshotUriRequest">
  2345. <wsdl:part name="parameters" element="trt:GetSnapshotUri"/>
  2346. </wsdl:message>
  2347. <wsdl:message name="GetSnapshotUriResponse">
  2348. <wsdl:part name="parameters" element="trt:GetSnapshotUriResponse"/>
  2349. </wsdl:message>
  2350. <wsdl:message name="GetVideoSourceModesRequest">
  2351. <wsdl:part name="parameters" element="trt:GetVideoSourceModes"/>
  2352. </wsdl:message>
  2353. <wsdl:message name="GetVideoSourceModesResponse">
  2354. <wsdl:part name="parameters" element="trt:GetVideoSourceModesResponse"/>
  2355. </wsdl:message>
  2356. <wsdl:message name="SetVideoSourceModeRequest">
  2357. <wsdl:part name="parameters" element="trt:SetVideoSourceMode"/>
  2358. </wsdl:message>
  2359. <wsdl:message name="SetVideoSourceModeResponse">
  2360. <wsdl:part name="parameters" element="trt:SetVideoSourceModeResponse"/>
  2361. </wsdl:message>
  2362. <wsdl:message name="GetOSDsRequest">
  2363. <wsdl:part name="parameters" element="trt:GetOSDs"/>
  2364. </wsdl:message>
  2365. <wsdl:message name="GetOSDsResponse">
  2366. <wsdl:part name="parameters" element="trt:GetOSDsResponse"/>
  2367. </wsdl:message>
  2368. <wsdl:message name="GetOSDRequest">
  2369. <wsdl:part name="parameters" element="trt:GetOSD"/>
  2370. </wsdl:message>
  2371. <wsdl:message name="GetOSDResponse">
  2372. <wsdl:part name="parameters" element="trt:GetOSDResponse"/>
  2373. </wsdl:message>
  2374. <wsdl:message name="GetOSDOptionsRequest">
  2375. <wsdl:part name="parameters" element="trt:GetOSDOptions"/>
  2376. </wsdl:message>
  2377. <wsdl:message name="GetOSDOptionsResponse">
  2378. <wsdl:part name="parameters" element="trt:GetOSDOptionsResponse"/>
  2379. </wsdl:message>
  2380. <wsdl:message name="SetOSDRequest">
  2381. <wsdl:part name="parameters" element="trt:SetOSD"/>
  2382. </wsdl:message>
  2383. <wsdl:message name="SetOSDResponse">
  2384. <wsdl:part name="parameters" element="trt:SetOSDResponse"/>
  2385. </wsdl:message>
  2386. <wsdl:message name="CreateOSDRequest">
  2387. <wsdl:part name="parameters" element="trt:CreateOSD"/>
  2388. </wsdl:message>
  2389. <wsdl:message name="CreateOSDResponse">
  2390. <wsdl:part name="parameters" element="trt:CreateOSDResponse"/>
  2391. </wsdl:message>
  2392. <wsdl:message name="DeleteOSDRequest">
  2393. <wsdl:part name="parameters" element="trt:DeleteOSD"/>
  2394. </wsdl:message>
  2395. <wsdl:message name="DeleteOSDResponse">
  2396. <wsdl:part name="parameters" element="trt:DeleteOSDResponse"/>
  2397. </wsdl:message>
  2398. <wsdl:portType name="Media">
  2399. <!--===============================-->
  2400. <!--===============================-->
  2401. <wsdl:operation name="GetServiceCapabilities">
  2402. <wsdl:documentation>Returns the capabilities of the media service. The result is returned in a typed answer.</wsdl:documentation>
  2403. <wsdl:input message="trt:GetServiceCapabilitiesRequest"/>
  2404. <wsdl:output message="trt:GetServiceCapabilitiesResponse"/>
  2405. </wsdl:operation>
  2406. <!--===============================-->
  2407. <wsdl:operation name="GetVideoSources">
  2408. <wsdl:documentation>This command lists all available physical video inputs of the device.</wsdl:documentation>
  2409. <wsdl:input message="trt:GetVideoSourcesRequest"/>
  2410. <wsdl:output message="trt:GetVideoSourcesResponse"/>
  2411. </wsdl:operation>
  2412. <wsdl:operation name="GetAudioSources">
  2413. <wsdl:documentation>This command lists all available physical audio inputs of the device.</wsdl:documentation>
  2414. <wsdl:input message="trt:GetAudioSourcesRequest"/>
  2415. <wsdl:output message="trt:GetAudioSourcesResponse"/>
  2416. </wsdl:operation>
  2417. <wsdl:operation name="GetAudioOutputs">
  2418. <wsdl:documentation>This command lists all available physical audio outputs of the device.</wsdl:documentation>
  2419. <wsdl:input message="trt:GetAudioOutputsRequest"/>
  2420. <wsdl:output message="trt:GetAudioOutputsResponse"/>
  2421. </wsdl:operation>
  2422. <!--===============================-->
  2423. <wsdl:operation name="CreateProfile">
  2424. <wsdl:documentation>This operation creates a new empty media profile. The media profile shall be created in the
  2425. device and shall be persistent (remain after reboot). A created profile shall be deletable and a device shall set the “fixed” attribute to false in the
  2426. returned Profile.</wsdl:documentation>
  2427. <wsdl:input message="trt:CreateProfileRequest"/>
  2428. <wsdl:output message="trt:CreateProfileResponse"/>
  2429. </wsdl:operation>
  2430. <wsdl:operation name="GetProfile">
  2431. <wsdl:documentation>If the profile token is already known, a profile can be fetched through the GetProfile command.</wsdl:documentation>
  2432. <wsdl:input message="trt:GetProfileRequest"/>
  2433. <wsdl:output message="trt:GetProfileResponse"/>
  2434. </wsdl:operation>
  2435. <wsdl:operation name="GetProfiles">
  2436. <wsdl:documentation>Any endpoint can ask for the existing media profiles of a device using the GetProfiles
  2437. command. Pre-configured or dynamically configured profiles can be retrieved using this
  2438. command. This command lists all configured profiles in a device. The client does not need to
  2439. know the media profile in order to use the command.</wsdl:documentation>
  2440. <wsdl:input message="trt:GetProfilesRequest"/>
  2441. <wsdl:output message="trt:GetProfilesResponse"/>
  2442. </wsdl:operation>
  2443. <wsdl:operation name="AddVideoEncoderConfiguration">
  2444. <wsdl:documentation>This operation adds a VideoEncoderConfiguration to an existing media profile. If a
  2445. configuration exists in the media profile, it will be replaced. The change shall be persistent. A device shall
  2446. support adding a compatible VideoEncoderConfiguration to a Profile containing a VideoSourceConfiguration and shall
  2447. support streaming video data of such a profile.
  2448. </wsdl:documentation>
  2449. <wsdl:input message="trt:AddVideoEncoderConfigurationRequest"/>
  2450. <wsdl:output message="trt:AddVideoEncoderConfigurationResponse"/>
  2451. </wsdl:operation>
  2452. <wsdl:operation name="RemoveVideoEncoderConfiguration">
  2453. <wsdl:documentation>This operation removes a VideoEncoderConfiguration from an existing media profile. If the
  2454. media profile does not contain a VideoEncoderConfiguration, the operation has no effect. The removal shall be persistent.</wsdl:documentation>
  2455. <wsdl:input message="trt:RemoveVideoEncoderConfigurationRequest"/>
  2456. <wsdl:output message="trt:RemoveVideoEncoderConfigurationResponse"/>
  2457. </wsdl:operation>
  2458. <wsdl:operation name="AddVideoSourceConfiguration">
  2459. <wsdl:documentation>This operation adds a VideoSourceConfiguration to an existing media profile. If such a
  2460. configuration exists in the media profile, it will be replaced. The change shall be persistent.</wsdl:documentation>
  2461. <wsdl:input message="trt:AddVideoSourceConfigurationRequest"/>
  2462. <wsdl:output message="trt:AddVideoSourceConfigurationResponse"/>
  2463. </wsdl:operation>
  2464. <wsdl:operation name="RemoveVideoSourceConfiguration">
  2465. <wsdl:documentation>This operation removes a VideoSourceConfiguration from an existing media profile. If the
  2466. media profile does not contain a VideoSourceConfiguration, the operation has no effect. The removal shall be persistent. Video source configurations should only be removed after removing a
  2467. VideoEncoderConfiguration from the media profile.</wsdl:documentation>
  2468. <wsdl:input message="trt:RemoveVideoSourceConfigurationRequest"/>
  2469. <wsdl:output message="trt:RemoveVideoSourceConfigurationResponse"/>
  2470. </wsdl:operation>
  2471. <wsdl:operation name="AddAudioEncoderConfiguration">
  2472. <wsdl:documentation>This operation adds an AudioEncoderConfiguration to an existing media profile. If a
  2473. configuration exists in the media profile, it will be replaced. The change shall be persistent. A device shall
  2474. support adding a compatible AudioEncoderConfiguration to a profile containing an AudioSourceConfiguration and shall
  2475. support streaming audio data of such a profile.
  2476. </wsdl:documentation>
  2477. <wsdl:input message="trt:AddAudioEncoderConfigurationRequest"/>
  2478. <wsdl:output message="trt:AddAudioEncoderConfigurationResponse"/>
  2479. </wsdl:operation>
  2480. <wsdl:operation name="RemoveAudioEncoderConfiguration">
  2481. <wsdl:documentation>This operation removes an AudioEncoderConfiguration from an existing media profile. If the
  2482. media profile does not contain an AudioEncoderConfiguration, the operation has no effect.
  2483. The removal shall be persistent.</wsdl:documentation>
  2484. <wsdl:input message="trt:RemoveAudioEncoderConfigurationRequest"/>
  2485. <wsdl:output message="trt:RemoveAudioEncoderConfigurationResponse"/>
  2486. </wsdl:operation>
  2487. <wsdl:operation name="AddAudioSourceConfiguration">
  2488. <wsdl:documentation>This operation adds an AudioSourceConfiguration to an existing media profile. If a
  2489. configuration exists in the media profile, it will be replaced. The change shall be persistent.</wsdl:documentation>
  2490. <wsdl:input message="trt:AddAudioSourceConfigurationRequest"/>
  2491. <wsdl:output message="trt:AddAudioSourceConfigurationResponse"/>
  2492. </wsdl:operation>
  2493. <wsdl:operation name="RemoveAudioSourceConfiguration">
  2494. <wsdl:documentation>This operation removes an AudioSourceConfiguration from an existing media profile. If the
  2495. media profile does not contain an AudioSourceConfiguration, the operation has no effect. The
  2496. removal shall be persistent. Audio source configurations should only be removed after removing an
  2497. AudioEncoderConfiguration from the media profile.</wsdl:documentation>
  2498. <wsdl:input message="trt:RemoveAudioSourceConfigurationRequest"/>
  2499. <wsdl:output message="trt:RemoveAudioSourceConfigurationResponse"/>
  2500. </wsdl:operation>
  2501. <wsdl:operation name="AddPTZConfiguration">
  2502. <wsdl:documentation>This operation adds a PTZConfiguration to an existing media profile. If a configuration exists
  2503. in the media profile, it will be replaced. The change shall be persistent. Adding a PTZConfiguration to a media profile means that streams using that media profile can
  2504. contain PTZ status (in the metadata), and that the media profile can be used for controlling
  2505. PTZ movement.</wsdl:documentation>
  2506. <wsdl:input message="trt:AddPTZConfigurationRequest"/>
  2507. <wsdl:output message="trt:AddPTZConfigurationResponse"/>
  2508. </wsdl:operation>
  2509. <wsdl:operation name="RemovePTZConfiguration">
  2510. <wsdl:documentation>This operation removes a PTZConfiguration from an existing media profile. If the media profile
  2511. does not contain a PTZConfiguration, the operation has no effect. The removal shall be persistent.</wsdl:documentation>
  2512. <wsdl:input message="trt:RemovePTZConfigurationRequest"/>
  2513. <wsdl:output message="trt:RemovePTZConfigurationResponse"/>
  2514. </wsdl:operation>
  2515. <wsdl:operation name="AddVideoAnalyticsConfiguration">
  2516. <wsdl:documentation>This operation adds a VideoAnalytics configuration to an existing media profile. If a
  2517. configuration exists in the media profile, it will be replaced. The change shall be persistent. Adding a VideoAnalyticsConfiguration to a media profile means that streams using that media
  2518. profile can contain video analytics data (in the metadata) as defined by the submitted configuration reference. A profile containing only a video analytics configuration but no video source configuration is incomplete. Therefore, a client should first add a video source configuration to a profile before adding a video analytics configuration. The device can deny adding of a video analytics
  2519. configuration before a video source configuration.</wsdl:documentation>
  2520. <wsdl:input message="trt:AddVideoAnalyticsConfigurationRequest"/>
  2521. <wsdl:output message="trt:AddVideoAnalyticsConfigurationResponse"/>
  2522. </wsdl:operation>
  2523. <wsdl:operation name="RemoveVideoAnalyticsConfiguration">
  2524. <wsdl:documentation>This operation removes a VideoAnalyticsConfiguration from an existing media profile. If the media profile does not contain a VideoAnalyticsConfiguration, the operation has no effect.
  2525. The removal shall be persistent.</wsdl:documentation>
  2526. <wsdl:input message="trt:RemoveVideoAnalyticsConfigurationRequest"/>
  2527. <wsdl:output message="trt:RemoveVideoAnalyticsConfigurationResponse"/>
  2528. </wsdl:operation>
  2529. <wsdl:operation name="AddMetadataConfiguration">
  2530. <wsdl:documentation>This operation adds a Metadata configuration to an existing media profile. If a configuration exists in the media profile, it will be replaced. The change shall be persistent. Adding a MetadataConfiguration to a Profile means that streams using that profile contain metadata. Metadata can consist of events, PTZ status, and/or video analytics data.</wsdl:documentation>
  2531. <wsdl:input message="trt:AddMetadataConfigurationRequest"/>
  2532. <wsdl:output message="trt:AddMetadataConfigurationResponse"/>
  2533. </wsdl:operation>
  2534. <wsdl:operation name="RemoveMetadataConfiguration">
  2535. <wsdl:documentation>This operation removes a MetadataConfiguration from an existing media profile. If the media profile does not contain a MetadataConfiguration, the operation has no effect. The removal shall be persistent.</wsdl:documentation>
  2536. <wsdl:input message="trt:RemoveMetadataConfigurationRequest"/>
  2537. <wsdl:output message="trt:RemoveMetadataConfigurationResponse"/>
  2538. </wsdl:operation>
  2539. <wsdl:operation name="AddAudioOutputConfiguration">
  2540. <wsdl:documentation>This operation adds an AudioOutputConfiguration to an existing media profile. If a configuration exists in the media profile, it will be replaced. The change shall be persistent.</wsdl:documentation>
  2541. <wsdl:input message="trt:AddAudioOutputConfigurationRequest"/>
  2542. <wsdl:output message="trt:AddAudioOutputConfigurationResponse"/>
  2543. </wsdl:operation>
  2544. <wsdl:operation name="RemoveAudioOutputConfiguration">
  2545. <wsdl:documentation>This operation removes an AudioOutputConfiguration from an existing media profile. If the media profile does not contain an AudioOutputConfiguration, the operation has no effect. The removal shall be persistent.</wsdl:documentation>
  2546. <wsdl:input message="trt:RemoveAudioOutputConfigurationRequest"/>
  2547. <wsdl:output message="trt:RemoveAudioOutputConfigurationResponse"/>
  2548. </wsdl:operation>
  2549. <wsdl:operation name="AddAudioDecoderConfiguration">
  2550. <wsdl:documentation>This operation adds an AudioDecoderConfiguration to an existing media profile. If a configuration exists in the media profile, it shall be replaced. The change shall be persistent.</wsdl:documentation>
  2551. <wsdl:input message="trt:AddAudioDecoderConfigurationRequest"/>
  2552. <wsdl:output message="trt:AddAudioDecoderConfigurationResponse"/>
  2553. </wsdl:operation>
  2554. <wsdl:operation name="RemoveAudioDecoderConfiguration">
  2555. <wsdl:documentation>This operation removes an AudioDecoderConfiguration from an existing media profile. If the media profile does not contain an AudioDecoderConfiguration, the operation has no effect. The removal shall be persistent.</wsdl:documentation>
  2556. <wsdl:input message="trt:RemoveAudioDecoderConfigurationRequest"/>
  2557. <wsdl:output message="trt:RemoveAudioDecoderConfigurationResponse"/>
  2558. </wsdl:operation>
  2559. <wsdl:operation name="DeleteProfile">
  2560. <wsdl:documentation>This operation deletes a profile. This change shall always be persistent. Deletion of a profile is only possible for non-fixed profiles</wsdl:documentation>
  2561. <wsdl:input message="trt:DeleteProfileRequest"/>
  2562. <wsdl:output message="trt:DeleteProfileResponse"/>
  2563. </wsdl:operation>
  2564. <!--===============================-->
  2565. <wsdl:operation name="GetVideoSourceConfigurations">
  2566. <wsdl:documentation>This operation lists all existing video source configurations for a device. The client need not know anything about the video source configurations in order to use the command.</wsdl:documentation>
  2567. <wsdl:input message="trt:GetVideoSourceConfigurationsRequest"/>
  2568. <wsdl:output message="trt:GetVideoSourceConfigurationsResponse"/>
  2569. </wsdl:operation>
  2570. <wsdl:operation name="GetVideoEncoderConfigurations">
  2571. <wsdl:documentation>This operation lists all existing video encoder configurations of a device. This command lists all configured video encoder configurations in a device. The client need not know anything apriori about the video encoder configurations in order to use the command.</wsdl:documentation>
  2572. <wsdl:input message="trt:GetVideoEncoderConfigurationsRequest"/>
  2573. <wsdl:output message="trt:GetVideoEncoderConfigurationsResponse"/>
  2574. </wsdl:operation>
  2575. <wsdl:operation name="GetAudioSourceConfigurations">
  2576. <wsdl:documentation>This operation lists all existing audio source configurations of a device. This command lists all audio source configurations in a device. The client need not know anything apriori about the audio source configurations in order to use the command.</wsdl:documentation>
  2577. <wsdl:input message="trt:GetAudioSourceConfigurationsRequest"/>
  2578. <wsdl:output message="trt:GetAudioSourceConfigurationsResponse"/>
  2579. </wsdl:operation>
  2580. <wsdl:operation name="GetAudioEncoderConfigurations">
  2581. <wsdl:documentation>This operation lists all existing device audio encoder configurations. The client need not know anything apriori about the audio encoder configurations in order to use the command.</wsdl:documentation>
  2582. <wsdl:input message="trt:GetAudioEncoderConfigurationsRequest"/>
  2583. <wsdl:output message="trt:GetAudioEncoderConfigurationsResponse"/>
  2584. </wsdl:operation>
  2585. <wsdl:operation name="GetVideoAnalyticsConfigurations">
  2586. <wsdl:documentation>This operation lists all video analytics configurations of a device. This command lists all configured video analytics in a device. The client need not know anything apriori about the video analytics in order to use the command.</wsdl:documentation>
  2587. <wsdl:input message="trt:GetVideoAnalyticsConfigurationsRequest"/>
  2588. <wsdl:output message="trt:GetVideoAnalyticsConfigurationsResponse"/>
  2589. </wsdl:operation>
  2590. <wsdl:operation name="GetMetadataConfigurations">
  2591. <wsdl:documentation>This operation lists all existing metadata configurations. The client need not know anything apriori about the metadata in order to use the command.</wsdl:documentation>
  2592. <wsdl:input message="trt:GetMetadataConfigurationsRequest"/>
  2593. <wsdl:output message="trt:GetMetadataConfigurationsResponse"/>
  2594. </wsdl:operation>
  2595. <wsdl:operation name="GetAudioOutputConfigurations">
  2596. <wsdl:documentation>This command lists all existing AudioOutputConfigurations of a device. The NVC need not know anything apriori about the audio configurations to use this command.</wsdl:documentation>
  2597. <wsdl:input message="trt:GetAudioOutputConfigurationsRequest"/>
  2598. <wsdl:output message="trt:GetAudioOutputConfigurationsResponse"/>
  2599. </wsdl:operation>
  2600. <wsdl:operation name="GetAudioDecoderConfigurations">
  2601. <wsdl:documentation>This command lists all existing AudioDecoderConfigurations of a device. The NVC need not know anything apriori about the audio decoder configurations in order to
  2602. use this command.</wsdl:documentation>
  2603. <wsdl:input message="trt:GetAudioDecoderConfigurationsRequest"/>
  2604. <wsdl:output message="trt:GetAudioDecoderConfigurationsResponse"/>
  2605. </wsdl:operation>
  2606. <wsdl:operation name="GetVideoSourceConfiguration">
  2607. <wsdl:documentation>If the video source configuration token is already known, the video source configuration can be fetched through the GetVideoSourceConfiguration command.</wsdl:documentation>
  2608. <wsdl:input message="trt:GetVideoSourceConfigurationRequest"/>
  2609. <wsdl:output message="trt:GetVideoSourceConfigurationResponse"/>
  2610. </wsdl:operation>
  2611. <wsdl:operation name="GetVideoEncoderConfiguration">
  2612. <wsdl:documentation>If the video encoder configuration token is already known, the encoder configuration can be fetched through the GetVideoEncoderConfiguration command.</wsdl:documentation>
  2613. <wsdl:input message="trt:GetVideoEncoderConfigurationRequest"/>
  2614. <wsdl:output message="trt:GetVideoEncoderConfigurationResponse"/>
  2615. </wsdl:operation>
  2616. <wsdl:operation name="GetAudioSourceConfiguration">
  2617. <wsdl:documentation>The GetAudioSourceConfiguration command fetches the audio source configurations if the audio source configuration token is already known. An</wsdl:documentation>
  2618. <wsdl:input message="trt:GetAudioSourceConfigurationRequest"/>
  2619. <wsdl:output message="trt:GetAudioSourceConfigurationResponse"/>
  2620. </wsdl:operation>
  2621. <wsdl:operation name="GetAudioEncoderConfiguration">
  2622. <wsdl:documentation>The GetAudioEncoderConfiguration command fetches the encoder configuration if the audio encoder configuration token is known.</wsdl:documentation>
  2623. <wsdl:input message="trt:GetAudioEncoderConfigurationRequest"/>
  2624. <wsdl:output message="trt:GetAudioEncoderConfigurationResponse"/>
  2625. </wsdl:operation>
  2626. <wsdl:operation name="GetVideoAnalyticsConfiguration">
  2627. <wsdl:documentation>The GetVideoAnalyticsConfiguration command fetches the video analytics configuration if the video analytics token is known.</wsdl:documentation>
  2628. <wsdl:input message="trt:GetVideoAnalyticsConfigurationRequest"/>
  2629. <wsdl:output message="trt:GetVideoAnalyticsConfigurationResponse"/>
  2630. </wsdl:operation>
  2631. <wsdl:operation name="GetMetadataConfiguration">
  2632. <wsdl:documentation>The GetMetadataConfiguration command fetches the metadata configuration if the metadata token is known.</wsdl:documentation>
  2633. <wsdl:input message="trt:GetMetadataConfigurationRequest"/>
  2634. <wsdl:output message="trt:GetMetadataConfigurationResponse"/>
  2635. </wsdl:operation>
  2636. <wsdl:operation name="GetAudioOutputConfiguration">
  2637. <wsdl:documentation>If the audio output configuration token is already known, the output configuration can be fetched through the GetAudioOutputConfiguration command.</wsdl:documentation>
  2638. <wsdl:input message="trt:GetAudioOutputConfigurationRequest"/>
  2639. <wsdl:output message="trt:GetAudioOutputConfigurationResponse"/>
  2640. </wsdl:operation>
  2641. <wsdl:operation name="GetAudioDecoderConfiguration">
  2642. <wsdl:documentation>If the audio decoder configuration token is already known, the decoder configuration can be fetched through the GetAudioDecoderConfiguration command.</wsdl:documentation>
  2643. <wsdl:input message="trt:GetAudioDecoderConfigurationRequest"/>
  2644. <wsdl:output message="trt:GetAudioDecoderConfigurationResponse"/>
  2645. </wsdl:operation>
  2646. <!--===============================-->
  2647. <wsdl:operation name="GetCompatibleVideoEncoderConfigurations">
  2648. <wsdl:documentation>This operation lists all the video encoder configurations of the device that are compatible with a certain media profile. Each of the returned configurations shall be a valid input parameter for the AddVideoEncoderConfiguration command on the media profile. The result will vary depending on the capabilities, configurations and settings in the device.</wsdl:documentation>
  2649. <wsdl:input message="trt:GetCompatibleVideoEncoderConfigurationsRequest"/>
  2650. <wsdl:output message="trt:GetCompatibleVideoEncoderConfigurationsResponse"/>
  2651. </wsdl:operation>
  2652. <wsdl:operation name="GetCompatibleVideoSourceConfigurations">
  2653. <wsdl:documentation>This operation requests all the video source configurations of the device that are compatible
  2654. with a certain media profile. Each of the returned configurations shall be a valid input
  2655. parameter for the AddVideoSourceConfiguration command on the media profile. The result
  2656. will vary depending on the capabilities, configurations and settings in the device.</wsdl:documentation>
  2657. <wsdl:input message="trt:GetCompatibleVideoSourceConfigurationsRequest"/>
  2658. <wsdl:output message="trt:GetCompatibleVideoSourceConfigurationsResponse"/>
  2659. </wsdl:operation>
  2660. <wsdl:operation name="GetCompatibleAudioEncoderConfigurations">
  2661. <wsdl:documentation>This operation requests all audio encoder configurations of a device that are compatible with a certain media profile. Each of the returned configurations shall be a valid input parameter for the AddAudioSourceConfiguration command on the media profile. The result varies depending on the capabilities, configurations and settings in the device.</wsdl:documentation>
  2662. <wsdl:input message="trt:GetCompatibleAudioEncoderConfigurationsRequest"/>
  2663. <wsdl:output message="trt:GetCompatibleAudioEncoderConfigurationsResponse"/>
  2664. </wsdl:operation>
  2665. <wsdl:operation name="GetCompatibleAudioSourceConfigurations">
  2666. <wsdl:documentation>This operation requests all audio source configurations of the device that are compatible with a certain media profile. Each of the returned configurations shall be a valid input parameter for the AddAudioEncoderConfiguration command on the media profile. The result varies depending on the capabilities, configurations and settings in the device.</wsdl:documentation>
  2667. <wsdl:input message="trt:GetCompatibleAudioSourceConfigurationsRequest"/>
  2668. <wsdl:output message="trt:GetCompatibleAudioSourceConfigurationsResponse"/>
  2669. </wsdl:operation>
  2670. <wsdl:operation name="GetCompatibleVideoAnalyticsConfigurations">
  2671. <wsdl:documentation>This operation requests all video analytic configurations of the device that are compatible with a certain media profile. Each of the returned configurations shall be a valid input parameter for the AddVideoAnalyticsConfiguration command on the media profile. The result varies depending on the capabilities, configurations and settings in the device.</wsdl:documentation>
  2672. <wsdl:input message="trt:GetCompatibleVideoAnalyticsConfigurationsRequest"/>
  2673. <wsdl:output message="trt:GetCompatibleVideoAnalyticsConfigurationsResponse"/>
  2674. </wsdl:operation>
  2675. <wsdl:operation name="GetCompatibleMetadataConfigurations">
  2676. <wsdl:documentation>This operation requests all the metadata configurations of the device that are compatible with a certain media profile. Each of the returned configurations shall be a valid input parameter for the AddMetadataConfiguration command on the media profile. The result varies depending on the capabilities, configurations and settings in the device.</wsdl:documentation>
  2677. <wsdl:input message="trt:GetCompatibleMetadataConfigurationsRequest"/>
  2678. <wsdl:output message="trt:GetCompatibleMetadataConfigurationsResponse"/>
  2679. </wsdl:operation>
  2680. <wsdl:operation name="GetCompatibleAudioOutputConfigurations">
  2681. <wsdl:documentation>This command lists all audio output configurations of a device that are compatible with a certain media profile. Each returned configuration shall be a valid input for the
  2682. AddAudioOutputConfiguration command.</wsdl:documentation>
  2683. <wsdl:input message="trt:GetCompatibleAudioOutputConfigurationsRequest"/>
  2684. <wsdl:output message="trt:GetCompatibleAudioOutputConfigurationsResponse"/>
  2685. </wsdl:operation>
  2686. <wsdl:operation name="GetCompatibleAudioDecoderConfigurations">
  2687. <wsdl:documentation>This operation lists all the audio decoder configurations of the device that are compatible with a certain media profile. Each of the returned configurations shall be a valid input parameter for the AddAudioDecoderConfiguration command on the media profile.</wsdl:documentation>
  2688. <wsdl:input message="trt:GetCompatibleAudioDecoderConfigurationsRequest"/>
  2689. <wsdl:output message="trt:GetCompatibleAudioDecoderConfigurationsResponse"/>
  2690. </wsdl:operation>
  2691. <!--===============================-->
  2692. <wsdl:operation name="SetVideoSourceConfiguration">
  2693. <wsdl:documentation>This operation modifies a video source configuration. The ForcePersistence flag indicates if the changes shall remain after reboot of the device. Running streams using this configuration may be immediately updated according to the new settings. The changes are not guaranteed to take effect unless the client requests a new stream URI and restarts any affected stream. NVC methods for changing a running stream are out of scope for this specification.</wsdl:documentation>
  2694. <wsdl:input message="trt:SetVideoSourceConfigurationRequest"/>
  2695. <wsdl:output message="trt:SetVideoSourceConfigurationResponse"/>
  2696. </wsdl:operation>
  2697. <wsdl:operation name="SetVideoEncoderConfiguration">
  2698. <wsdl:documentation>This operation modifies a video encoder configuration. The ForcePersistence flag indicates if the changes shall remain after reboot of the device. Changes in the Multicast settings shall always be persistent. Running streams using this configuration may be immediately updated according to the new settings. The changes are not guaranteed to take effect unless the client requests a new stream URI and restarts any affected stream. NVC methods for changing a running stream are out of scope for this specification. <br/>SessionTimeout is provided as a hint for keeping rtsp session by a device. If necessary the device may adapt parameter values for SessionTimeout elements without returning an error. For the time between keep alive calls the client shall adhere to the timeout value signaled via RTSP.</wsdl:documentation>
  2699. <wsdl:input message="trt:SetVideoEncoderConfigurationRequest"/>
  2700. <wsdl:output message="trt:SetVideoEncoderConfigurationResponse"/>
  2701. </wsdl:operation>
  2702. <wsdl:operation name="SetAudioSourceConfiguration">
  2703. <wsdl:documentation>This operation modifies an audio source configuration. The ForcePersistence flag indicates if
  2704. the changes shall remain after reboot of the device. Running streams using this configuration
  2705. may be immediately updated according to the new settings. The changes are not guaranteed
  2706. to take effect unless the client requests a new stream URI and restarts any affected stream
  2707. NVC methods for changing a running stream are out of scope for this specification.</wsdl:documentation>
  2708. <wsdl:input message="trt:SetAudioSourceConfigurationRequest"/>
  2709. <wsdl:output message="trt:SetAudioSourceConfigurationResponse"/>
  2710. </wsdl:operation>
  2711. <wsdl:operation name="SetAudioEncoderConfiguration">
  2712. <wsdl:documentation>This operation modifies an audio encoder configuration. The ForcePersistence flag indicates if
  2713. the changes shall remain after reboot of the device. Running streams using this configuration may be immediately updated
  2714. according to the new settings. The changes are not guaranteed to take effect unless the client
  2715. requests a new stream URI and restarts any affected streams. NVC methods for changing a
  2716. running stream are out of scope for this specification.</wsdl:documentation>
  2717. <wsdl:input message="trt:SetAudioEncoderConfigurationRequest"/>
  2718. <wsdl:output message="trt:SetAudioEncoderConfigurationResponse"/>
  2719. </wsdl:operation>
  2720. <wsdl:operation name="SetVideoAnalyticsConfiguration">
  2721. <wsdl:documentation>A video analytics configuration is modified using this command. The ForcePersistence flag
  2722. indicates if the changes shall remain after reboot of the device or not. Running streams using
  2723. this configuration shall be immediately updated according to the new settings. Otherwise
  2724. inconsistencies can occur between the scene description processed by the rule engine and
  2725. the notifications produced by analytics engine and rule engine which reference the very same
  2726. video analytics configuration token.</wsdl:documentation>
  2727. <wsdl:input message="trt:SetVideoAnalyticsConfigurationRequest"/>
  2728. <wsdl:output message="trt:SetVideoAnalyticsConfigurationResponse"/>
  2729. </wsdl:operation>
  2730. <wsdl:operation name="SetMetadataConfiguration">
  2731. <wsdl:documentation>This operation modifies a metadata configuration. The ForcePersistence flag indicates if the
  2732. changes shall remain after reboot of the device. Changes in the Multicast settings shall
  2733. always be persistent. Running streams using this configuration may be updated immediately
  2734. according to the new settings. The changes are not guaranteed to take effect unless the client
  2735. requests a new stream URI and restarts any affected streams. NVC methods for changing a
  2736. running stream are out of scope for this specification.</wsdl:documentation>
  2737. <wsdl:input message="trt:SetMetadataConfigurationRequest"/>
  2738. <wsdl:output message="trt:SetMetadataConfigurationResponse"/>
  2739. </wsdl:operation>
  2740. <wsdl:operation name="SetAudioOutputConfiguration">
  2741. <wsdl:documentation>This operation modifies an audio output configuration. The ForcePersistence flag indicates if
  2742. the changes shall remain after reboot of the device.</wsdl:documentation>
  2743. <wsdl:input message="trt:SetAudioOutputConfigurationRequest"/>
  2744. <wsdl:output message="trt:SetAudioOutputConfigurationResponse"/>
  2745. </wsdl:operation>
  2746. <wsdl:operation name="SetAudioDecoderConfiguration">
  2747. <wsdl:documentation>This operation modifies an audio decoder configuration. The ForcePersistence flag indicates if
  2748. the changes shall remain after reboot of the device.</wsdl:documentation>
  2749. <wsdl:input message="trt:SetAudioDecoderConfigurationRequest"/>
  2750. <wsdl:output message="trt:SetAudioDecoderConfigurationResponse"/>
  2751. </wsdl:operation>
  2752. <!--===============================-->
  2753. <wsdl:operation name="GetVideoSourceConfigurationOptions">
  2754. <wsdl:documentation>This operation returns the available options (supported values and ranges for video source configuration parameters) when the video source parameters are
  2755. reconfigured If a video source configuration is specified, the options shall concern that
  2756. particular configuration. If a media profile is specified, the options shall be compatible with
  2757. that media profile.</wsdl:documentation>
  2758. <wsdl:input message="trt:GetVideoSourceConfigurationOptionsRequest"/>
  2759. <wsdl:output message="trt:GetVideoSourceConfigurationOptionsResponse"/>
  2760. </wsdl:operation>
  2761. <wsdl:operation name="GetVideoEncoderConfigurationOptions">
  2762. <wsdl:documentation>This operation returns the available options (supported values and ranges for video encoder
  2763. configuration parameters) when the video encoder parameters are reconfigured. <br/>
  2764. For JPEG, MPEG4 and H264 extension elements have been defined that provide additional information. A device must provide the
  2765. XxxOption information for all encodings supported and should additionally provide the corresponding XxxOption2 information.<br/>
  2766. This response contains the available video encoder configuration options. If a video encoder configuration is specified,
  2767. the options shall concern that particular configuration. If a media profile is specified, the options shall be
  2768. compatible with that media profile. If no tokens are specified, the options shall be considered generic for the device.
  2769. </wsdl:documentation>
  2770. <wsdl:input message="trt:GetVideoEncoderConfigurationOptionsRequest"/>
  2771. <wsdl:output message="trt:GetVideoEncoderConfigurationOptionsResponse"/>
  2772. </wsdl:operation>
  2773. <wsdl:operation name="GetAudioSourceConfigurationOptions">
  2774. <wsdl:documentation>This operation returns the available options (supported values and ranges for audio source configuration parameters) when the audio source parameters are
  2775. reconfigured. If an audio source configuration is specified, the options shall concern that
  2776. particular configuration. If a media profile is specified, the options shall be compatible with
  2777. that media profile.</wsdl:documentation>
  2778. <wsdl:input message="trt:GetAudioSourceConfigurationOptionsRequest"/>
  2779. <wsdl:output message="trt:GetAudioSourceConfigurationOptionsResponse"/>
  2780. </wsdl:operation>
  2781. <wsdl:operation name="GetAudioEncoderConfigurationOptions">
  2782. <wsdl:documentation>This operation returns the available options (supported values and ranges for audio encoder configuration parameters) when the audio encoder parameters are
  2783. reconfigured.</wsdl:documentation>
  2784. <wsdl:input message="trt:GetAudioEncoderConfigurationOptionsRequest"/>
  2785. <wsdl:output message="trt:GetAudioEncoderConfigurationOptionsResponse"/>
  2786. </wsdl:operation>
  2787. <wsdl:operation name="GetMetadataConfigurationOptions">
  2788. <wsdl:documentation>This operation returns the available options (supported values and ranges for metadata configuration parameters) for changing the metadata configuration.</wsdl:documentation>
  2789. <wsdl:input message="trt:GetMetadataConfigurationOptionsRequest"/>
  2790. <wsdl:output message="trt:GetMetadataConfigurationOptionsResponse"/>
  2791. </wsdl:operation>
  2792. <wsdl:operation name="GetAudioOutputConfigurationOptions">
  2793. <wsdl:documentation>This operation returns the available options (supported values and ranges for audio output configuration parameters) for configuring an audio output.</wsdl:documentation>
  2794. <wsdl:input message="trt:GetAudioOutputConfigurationOptionsRequest"/>
  2795. <wsdl:output message="trt:GetAudioOutputConfigurationOptionsResponse"/>
  2796. </wsdl:operation>
  2797. <wsdl:operation name="GetAudioDecoderConfigurationOptions">
  2798. <wsdl:documentation>This command list the audio decoding capabilities for a given profile and configuration of a
  2799. device.</wsdl:documentation>
  2800. <wsdl:input message="trt:GetAudioDecoderConfigurationOptionsRequest"/>
  2801. <wsdl:output message="trt:GetAudioDecoderConfigurationOptionsResponse"/>
  2802. </wsdl:operation>
  2803. <!--===============================-->
  2804. <wsdl:operation name="GetGuaranteedNumberOfVideoEncoderInstances">
  2805. <wsdl:documentation>The GetGuaranteedNumberOfVideoEncoderInstances command can be used to request the
  2806. minimum number of guaranteed video encoder instances (applications) per Video Source
  2807. Configuration.</wsdl:documentation>
  2808. <wsdl:input message="trt:GetGuaranteedNumberOfVideoEncoderInstancesRequest"/>
  2809. <wsdl:output message="trt:GetGuaranteedNumberOfVideoEncoderInstancesResponse"/>
  2810. </wsdl:operation>
  2811. <!--===============================-->
  2812. <wsdl:operation name="GetStreamUri">
  2813. <wsdl:documentation>This operation requests a URI that can be used to initiate a live media stream using RTSP as
  2814. the control protocol. The returned URI shall remain valid indefinitely even if the profile is
  2815. changed. The ValidUntilConnect, ValidUntilReboot and Timeout Parameter shall be set
  2816. accordingly (ValidUntilConnect=false, ValidUntilReboot=false, timeout=PT0S). <br/>
  2817. The correct syntax for the StreamSetup element for these media stream setups defined in 5.1.1 of the streaming specification are as follows:
  2818. <ol>
  2819. <li>RTP unicast over UDP: StreamType = "RTP_unicast", TransportProtocol = "UDP"</li>
  2820. <li>RTP over RTSP over HTTP over TCP: StreamType = "RTP_unicast", TransportProtocol = "HTTP"</li>
  2821. <li>RTP over RTSP over TCP: StreamType = "RTP_unicast", TransportProtocol = "RTSP"</li>
  2822. </ol>
  2823. <br/>
  2824. If a multicast stream is requested the VideoEncoderConfiguration, AudioEncoderConfiguration and MetadataConfiguration element inside the corresponding
  2825. media profile must be configured with valid multicast settings.<br/>
  2826. For full compatibility with other ONVIF services a device should not generate Uris longer than
  2827. 128 octets.</wsdl:documentation>
  2828. <wsdl:input message="trt:GetStreamUriRequest"/>
  2829. <wsdl:output message="trt:GetStreamUriResponse"/>
  2830. </wsdl:operation>
  2831. <wsdl:operation name="StartMulticastStreaming">
  2832. <wsdl:documentation>This command starts multicast streaming using a specified media profile of a device.
  2833. Streaming continues until StopMulticastStreaming is called for the same Profile. The
  2834. streaming shall continue after a reboot of the device until a StopMulticastStreaming request is
  2835. received. The multicast address, port and TTL are configured in the
  2836. VideoEncoderConfiguration, AudioEncoderConfiguration and MetadataConfiguration
  2837. respectively.</wsdl:documentation>
  2838. <wsdl:input message="trt:StartMulticastStreamingRequest"/>
  2839. <wsdl:output message="trt:StartMulticastStreamingResponse"/>
  2840. </wsdl:operation>
  2841. <wsdl:operation name="StopMulticastStreaming">
  2842. <wsdl:documentation>This command stop multicast streaming using a specified media profile of a device</wsdl:documentation>
  2843. <wsdl:input message="trt:StopMulticastStreamingRequest"/>
  2844. <wsdl:output message="trt:StopMulticastStreamingResponse"/>
  2845. </wsdl:operation>
  2846. <wsdl:operation name="SetSynchronizationPoint">
  2847. <wsdl:documentation>Synchronization points allow clients to decode and correctly use all data after the
  2848. synchronization point.
  2849. For example, if a video stream is configured with a large I-frame distance and a client loses a
  2850. single packet, the client does not display video until the next I-frame is transmitted. In such
  2851. cases, the client can request a Synchronization Point which enforces the device to add an I-Frame as soon as possible. Clients can request Synchronization Points for profiles. The device
  2852. shall add synchronization points for all streams associated with this profile.
  2853. Similarly, a synchronization point is used to get an update on full PTZ or event status through
  2854. the metadata stream.
  2855. If a video stream is associated with the profile, an I-frame shall be added to this video stream.
  2856. If a PTZ metadata stream is associated to the profile,
  2857. the PTZ position shall be repeated within the metadata stream.</wsdl:documentation>
  2858. <wsdl:input message="trt:SetSynchronizationPointRequest"/>
  2859. <wsdl:output message="trt:SetSynchronizationPointResponse"/>
  2860. </wsdl:operation>
  2861. <wsdl:operation name="GetSnapshotUri">
  2862. <wsdl:documentation>A client uses the GetSnapshotUri command to obtain a JPEG snapshot from the
  2863. device. The returned URI shall remain valid indefinitely even if the profile is changed. The
  2864. ValidUntilConnect, ValidUntilReboot and Timeout Parameter shall be set accordingly
  2865. (ValidUntilConnect=false, ValidUntilReboot=false, timeout=PT0S). The URI can be used for
  2866. acquiring a JPEG image through a HTTP GET operation. The image encoding will always be
  2867. JPEG regardless of the encoding setting in the media profile. The Jpeg settings
  2868. (like resolution or quality) may be taken from the profile if suitable. The provided
  2869. image will be updated automatically and independent from calls to GetSnapshotUri.</wsdl:documentation>
  2870. <wsdl:input message="trt:GetSnapshotUriRequest"/>
  2871. <wsdl:output message="trt:GetSnapshotUriResponse"/>
  2872. </wsdl:operation>
  2873. <wsdl:operation name="GetVideoSourceModes">
  2874. <wsdl:documentation>A device returns the information for current video source mode and settable video source modes of specified video source. A device that indicates a capability of VideoSourceModes shall support this command.</wsdl:documentation>
  2875. <wsdl:input message="trt:GetVideoSourceModesRequest"/>
  2876. <wsdl:output message="trt:GetVideoSourceModesResponse"/>
  2877. </wsdl:operation>
  2878. <wsdl:operation name="SetVideoSourceMode">
  2879. <wsdl:documentation>SetVideoSourceMode changes the media profile structure relating to video source for the specified video source mode. A device that indicates a capability of VideoSourceModes shall support this command. The behavior after changing the mode is not defined in this specification.</wsdl:documentation>
  2880. <wsdl:input message="trt:SetVideoSourceModeRequest"/>
  2881. <wsdl:output message="trt:SetVideoSourceModeResponse"/>
  2882. </wsdl:operation>
  2883. <!--==============OSD Operation Begin=================-->
  2884. <wsdl:operation name="GetOSDs">
  2885. <wsdl:documentation>Get the OSDs.</wsdl:documentation>
  2886. <wsdl:input message="trt:GetOSDsRequest"/>
  2887. <wsdl:output message="trt:GetOSDsResponse"/>
  2888. </wsdl:operation>
  2889. <wsdl:operation name="GetOSD">
  2890. <wsdl:documentation>Get the OSD.</wsdl:documentation>
  2891. <wsdl:input message="trt:GetOSDRequest"/>
  2892. <wsdl:output message="trt:GetOSDResponse"/>
  2893. </wsdl:operation>
  2894. <wsdl:operation name="GetOSDOptions">
  2895. <wsdl:documentation>Get the OSD Options.</wsdl:documentation>
  2896. <wsdl:input message="trt:GetOSDOptionsRequest"/>
  2897. <wsdl:output message="trt:GetOSDOptionsResponse"/>
  2898. </wsdl:operation>
  2899. <wsdl:operation name="SetOSD">
  2900. <wsdl:documentation>Set the OSD</wsdl:documentation>
  2901. <wsdl:input message="trt:SetOSDRequest"/>
  2902. <wsdl:output message="trt:SetOSDResponse"/>
  2903. </wsdl:operation>
  2904. <wsdl:operation name="CreateOSD">
  2905. <wsdl:documentation>Create the OSD.</wsdl:documentation>
  2906. <wsdl:input message="trt:CreateOSDRequest"/>
  2907. <wsdl:output message="trt:CreateOSDResponse"/>
  2908. </wsdl:operation>
  2909. <wsdl:operation name="DeleteOSD">
  2910. <wsdl:documentation>Delete the OSD.</wsdl:documentation>
  2911. <wsdl:input message="trt:DeleteOSDRequest"/>
  2912. <wsdl:output message="trt:DeleteOSDResponse"/>
  2913. </wsdl:operation>
  2914. <!--==============OSD Operation End=================-->
  2915. </wsdl:portType>
  2916. <wsdl:binding name="MediaBinding" type="trt:Media">
  2917. <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
  2918. <!--===============================-->
  2919. <!--===============================-->
  2920. <wsdl:operation name="GetServiceCapabilities">
  2921. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetServiceCapabilities"/>
  2922. <wsdl:input>
  2923. <soap:body use="literal"/>
  2924. </wsdl:input>
  2925. <wsdl:output>
  2926. <soap:body use="literal"/>
  2927. </wsdl:output>
  2928. </wsdl:operation>
  2929. <!--===============================-->
  2930. <wsdl:operation name="GetVideoSources">
  2931. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdlGetVideoSources/"/>
  2932. <wsdl:input>
  2933. <soap:body use="literal"/>
  2934. </wsdl:input>
  2935. <wsdl:output>
  2936. <soap:body use="literal"/>
  2937. </wsdl:output>
  2938. </wsdl:operation>
  2939. <!--===============================-->
  2940. <!--===============================-->
  2941. <wsdl:operation name="GetAudioSources">
  2942. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetAudioSources"/>
  2943. <wsdl:input>
  2944. <soap:body use="literal"/>
  2945. </wsdl:input>
  2946. <wsdl:output>
  2947. <soap:body use="literal"/>
  2948. </wsdl:output>
  2949. </wsdl:operation>
  2950. <!--===============================-->
  2951. <wsdl:operation name="GetAudioOutputs">
  2952. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetAudioOutputs"/>
  2953. <wsdl:input>
  2954. <soap:body use="literal"/>
  2955. </wsdl:input>
  2956. <wsdl:output>
  2957. <soap:body use="literal"/>
  2958. </wsdl:output>
  2959. </wsdl:operation>
  2960. <!--===============================-->
  2961. <wsdl:operation name="CreateProfile">
  2962. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/CreateProfile"/>
  2963. <wsdl:input>
  2964. <soap:body parts="parameters" use="literal"/>
  2965. </wsdl:input>
  2966. <wsdl:output>
  2967. <soap:body parts="parameters" use="literal"/>
  2968. </wsdl:output>
  2969. </wsdl:operation>
  2970. <!--===============================-->
  2971. <wsdl:operation name="GetProfile">
  2972. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdlGetProfile/"/>
  2973. <wsdl:input>
  2974. <soap:body parts="parameters" use="literal"/>
  2975. </wsdl:input>
  2976. <wsdl:output>
  2977. <soap:body parts="parameters" use="literal"/>
  2978. </wsdl:output>
  2979. </wsdl:operation>
  2980. <!--===============================-->
  2981. <wsdl:operation name="GetProfiles">
  2982. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetProfiles"/>
  2983. <wsdl:input>
  2984. <soap:body parts="parameters" use="literal"/>
  2985. </wsdl:input>
  2986. <wsdl:output>
  2987. <soap:body parts="parameters" use="literal"/>
  2988. </wsdl:output>
  2989. </wsdl:operation>
  2990. <!--===============================-->
  2991. <wsdl:operation name="AddVideoEncoderConfiguration">
  2992. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/AddVideoEncoderConfiguration"/>
  2993. <wsdl:input>
  2994. <soap:body parts="parameters" use="literal"/>
  2995. </wsdl:input>
  2996. <wsdl:output>
  2997. <soap:body parts="parameters" use="literal"/>
  2998. </wsdl:output>
  2999. </wsdl:operation>
  3000. <!--===============================-->
  3001. <wsdl:operation name="AddVideoSourceConfiguration">
  3002. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/AddVideoSourceConfiguration"/>
  3003. <wsdl:input>
  3004. <soap:body parts="parameters" use="literal"/>
  3005. </wsdl:input>
  3006. <wsdl:output>
  3007. <soap:body parts="parameters" use="literal"/>
  3008. </wsdl:output>
  3009. </wsdl:operation>
  3010. <!--===============================-->
  3011. <wsdl:operation name="AddAudioEncoderConfiguration">
  3012. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/AddAudioEncoderConfiguration"/>
  3013. <wsdl:input>
  3014. <soap:body parts="parameters" use="literal"/>
  3015. </wsdl:input>
  3016. <wsdl:output>
  3017. <soap:body parts="parameters" use="literal"/>
  3018. </wsdl:output>
  3019. </wsdl:operation>
  3020. <!--===============================-->
  3021. <wsdl:operation name="AddAudioSourceConfiguration">
  3022. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/AddAudioSourceConfiguration"/>
  3023. <wsdl:input>
  3024. <soap:body parts="parameters" use="literal"/>
  3025. </wsdl:input>
  3026. <wsdl:output>
  3027. <soap:body parts="parameters" use="literal"/>
  3028. </wsdl:output>
  3029. </wsdl:operation>
  3030. <!--===============================-->
  3031. <wsdl:operation name="AddPTZConfiguration">
  3032. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/AddPTZConfiguration"/>
  3033. <wsdl:input>
  3034. <soap:body parts="parameters" use="literal"/>
  3035. </wsdl:input>
  3036. <wsdl:output>
  3037. <soap:body parts="parameters" use="literal"/>
  3038. </wsdl:output>
  3039. </wsdl:operation>
  3040. <!--===============================-->
  3041. <wsdl:operation name="AddVideoAnalyticsConfiguration">
  3042. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/AddVideoAnalyticsConfiguration"/>
  3043. <wsdl:input>
  3044. <soap:body parts="parameters" use="literal"/>
  3045. </wsdl:input>
  3046. <wsdl:output>
  3047. <soap:body parts="parameters" use="literal"/>
  3048. </wsdl:output>
  3049. </wsdl:operation>
  3050. <!--===============================-->
  3051. <wsdl:operation name="AddMetadataConfiguration">
  3052. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/AddMetadataConfiguration"/>
  3053. <wsdl:input>
  3054. <soap:body parts="parameters" use="literal"/>
  3055. </wsdl:input>
  3056. <wsdl:output>
  3057. <soap:body parts="parameters" use="literal"/>
  3058. </wsdl:output>
  3059. </wsdl:operation>
  3060. <!--===============================-->
  3061. <wsdl:operation name="AddAudioOutputConfiguration">
  3062. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/AddAudioOutputConfiguration"/>
  3063. <wsdl:input>
  3064. <soap:body parts="parameters" use="literal"/>
  3065. </wsdl:input>
  3066. <wsdl:output>
  3067. <soap:body parts="parameters" use="literal"/>
  3068. </wsdl:output>
  3069. </wsdl:operation>
  3070. <!--===============================-->
  3071. <wsdl:operation name="AddAudioDecoderConfiguration">
  3072. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/AddAudioDecoderConfiguration"/>
  3073. <wsdl:input>
  3074. <soap:body parts="parameters" use="literal"/>
  3075. </wsdl:input>
  3076. <wsdl:output>
  3077. <soap:body parts="parameters" use="literal"/>
  3078. </wsdl:output>
  3079. </wsdl:operation>
  3080. <!--===============================-->
  3081. <wsdl:operation name="RemoveVideoEncoderConfiguration">
  3082. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/RemoveVideoEncoderConfiguration"/>
  3083. <wsdl:input>
  3084. <soap:body parts="parameters" use="literal"/>
  3085. </wsdl:input>
  3086. <wsdl:output>
  3087. <soap:body parts="parameters" use="literal"/>
  3088. </wsdl:output>
  3089. </wsdl:operation>
  3090. <!--===============================-->
  3091. <wsdl:operation name="RemoveVideoSourceConfiguration">
  3092. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/RemoveVideoSourceConfiguration"/>
  3093. <wsdl:input>
  3094. <soap:body parts="parameters" use="literal"/>
  3095. </wsdl:input>
  3096. <wsdl:output>
  3097. <soap:body parts="parameters" use="literal"/>
  3098. </wsdl:output>
  3099. </wsdl:operation>
  3100. <!--===============================-->
  3101. <wsdl:operation name="RemoveAudioEncoderConfiguration">
  3102. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/RemoveAudioEncoderConfiguration"/>
  3103. <wsdl:input>
  3104. <soap:body parts="parameters" use="literal"/>
  3105. </wsdl:input>
  3106. <wsdl:output>
  3107. <soap:body parts="parameters" use="literal"/>
  3108. </wsdl:output>
  3109. </wsdl:operation>
  3110. <!--===============================-->
  3111. <wsdl:operation name="RemoveAudioSourceConfiguration">
  3112. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/RemoveAudioSourceConfiguration"/>
  3113. <wsdl:input>
  3114. <soap:body parts="parameters" use="literal"/>
  3115. </wsdl:input>
  3116. <wsdl:output>
  3117. <soap:body parts="parameters" use="literal"/>
  3118. </wsdl:output>
  3119. </wsdl:operation>
  3120. <!--===============================-->
  3121. <wsdl:operation name="RemovePTZConfiguration">
  3122. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/RemovePTZConfiguration"/>
  3123. <wsdl:input>
  3124. <soap:body parts="parameters" use="literal"/>
  3125. </wsdl:input>
  3126. <wsdl:output>
  3127. <soap:body parts="parameters" use="literal"/>
  3128. </wsdl:output>
  3129. </wsdl:operation>
  3130. <!--===============================-->
  3131. <wsdl:operation name="RemoveVideoAnalyticsConfiguration">
  3132. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/RemoveVideoAnalyticsConfiguration"/>
  3133. <wsdl:input>
  3134. <soap:body parts="parameters" use="literal"/>
  3135. </wsdl:input>
  3136. <wsdl:output>
  3137. <soap:body parts="parameters" use="literal"/>
  3138. </wsdl:output>
  3139. </wsdl:operation>
  3140. <!--===============================-->
  3141. <wsdl:operation name="RemoveMetadataConfiguration">
  3142. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/RemoveMetadataConfiguration"/>
  3143. <wsdl:input>
  3144. <soap:body parts="parameters" use="literal"/>
  3145. </wsdl:input>
  3146. <wsdl:output>
  3147. <soap:body parts="parameters" use="literal"/>
  3148. </wsdl:output>
  3149. </wsdl:operation>
  3150. <!--===============================-->
  3151. <wsdl:operation name="RemoveAudioOutputConfiguration">
  3152. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/RemoveAudioOutputConfiguration"/>
  3153. <wsdl:input>
  3154. <soap:body parts="parameters" use="literal"/>
  3155. </wsdl:input>
  3156. <wsdl:output>
  3157. <soap:body parts="parameters" use="literal"/>
  3158. </wsdl:output>
  3159. </wsdl:operation>
  3160. <!--===============================-->
  3161. <wsdl:operation name="RemoveAudioDecoderConfiguration">
  3162. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/RemoveAudioDecoderConfiguration"/>
  3163. <wsdl:input>
  3164. <soap:body parts="parameters" use="literal"/>
  3165. </wsdl:input>
  3166. <wsdl:output>
  3167. <soap:body parts="parameters" use="literal"/>
  3168. </wsdl:output>
  3169. </wsdl:operation>
  3170. <!--===============================-->
  3171. <wsdl:operation name="DeleteProfile">
  3172. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/DeleteProfile"/>
  3173. <wsdl:input>
  3174. <soap:body parts="parameters" use="literal"/>
  3175. </wsdl:input>
  3176. <wsdl:output>
  3177. <soap:body parts="parameters" use="literal"/>
  3178. </wsdl:output>
  3179. </wsdl:operation>
  3180. <!--===============================-->
  3181. <!--===============================-->
  3182. <!--===============================-->
  3183. <wsdl:operation name="GetVideoSourceConfigurations">
  3184. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetVideoSourceConfigurations"/>
  3185. <wsdl:input>
  3186. <soap:body parts="parameters" use="literal"/>
  3187. </wsdl:input>
  3188. <wsdl:output>
  3189. <soap:body parts="parameters" use="literal"/>
  3190. </wsdl:output>
  3191. </wsdl:operation>
  3192. <wsdl:operation name="GetVideoEncoderConfigurations">
  3193. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetVideoEncoderConfigurations"/>
  3194. <wsdl:input>
  3195. <soap:body parts="parameters" use="literal"/>
  3196. </wsdl:input>
  3197. <wsdl:output>
  3198. <soap:body parts="parameters" use="literal"/>
  3199. </wsdl:output>
  3200. </wsdl:operation>
  3201. <wsdl:operation name="GetAudioSourceConfigurations">
  3202. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdlGetAudioSourceConfigurations/"/>
  3203. <wsdl:input>
  3204. <soap:body parts="parameters" use="literal"/>
  3205. </wsdl:input>
  3206. <wsdl:output>
  3207. <soap:body parts="parameters" use="literal"/>
  3208. </wsdl:output>
  3209. </wsdl:operation>
  3210. <wsdl:operation name="GetAudioEncoderConfigurations">
  3211. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetAudioEncoderConfigurations"/>
  3212. <wsdl:input>
  3213. <soap:body parts="parameters" use="literal"/>
  3214. </wsdl:input>
  3215. <wsdl:output>
  3216. <soap:body parts="parameters" use="literal"/>
  3217. </wsdl:output>
  3218. </wsdl:operation>
  3219. <wsdl:operation name="GetVideoAnalyticsConfigurations">
  3220. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetVideoAnalyticsConfigurations"/>
  3221. <wsdl:input>
  3222. <soap:body parts="parameters" use="literal"/>
  3223. </wsdl:input>
  3224. <wsdl:output>
  3225. <soap:body parts="parameters" use="literal"/>
  3226. </wsdl:output>
  3227. </wsdl:operation>
  3228. <wsdl:operation name="GetMetadataConfigurations">
  3229. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetMetadataConfigurations"/>
  3230. <wsdl:input>
  3231. <soap:body parts="parameters" use="literal"/>
  3232. </wsdl:input>
  3233. <wsdl:output>
  3234. <soap:body parts="parameters" use="literal"/>
  3235. </wsdl:output>
  3236. </wsdl:operation>
  3237. <wsdl:operation name="GetAudioOutputConfigurations">
  3238. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetAudioOutputConfigurations"/>
  3239. <wsdl:input>
  3240. <soap:body parts="parameters" use="literal"/>
  3241. </wsdl:input>
  3242. <wsdl:output>
  3243. <soap:body parts="parameters" use="literal"/>
  3244. </wsdl:output>
  3245. </wsdl:operation>
  3246. <wsdl:operation name="GetAudioDecoderConfigurations">
  3247. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetAudioDecoderConfigurations"/>
  3248. <wsdl:input>
  3249. <soap:body parts="parameters" use="literal"/>
  3250. </wsdl:input>
  3251. <wsdl:output>
  3252. <soap:body parts="parameters" use="literal"/>
  3253. </wsdl:output>
  3254. </wsdl:operation>
  3255. <!--===============================-->
  3256. <wsdl:operation name="GetVideoSourceConfiguration">
  3257. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetVideoSourceConfiguration"/>
  3258. <wsdl:input>
  3259. <soap:body parts="parameters" use="literal"/>
  3260. </wsdl:input>
  3261. <wsdl:output>
  3262. <soap:body parts="parameters" use="literal"/>
  3263. </wsdl:output>
  3264. </wsdl:operation>
  3265. <wsdl:operation name="GetVideoEncoderConfiguration">
  3266. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetVideoEncoderConfiguration"/>
  3267. <wsdl:input>
  3268. <soap:body parts="parameters" use="literal"/>
  3269. </wsdl:input>
  3270. <wsdl:output>
  3271. <soap:body parts="parameters" use="literal"/>
  3272. </wsdl:output>
  3273. </wsdl:operation>
  3274. <wsdl:operation name="GetAudioSourceConfiguration">
  3275. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetAudioSourceConfiguration"/>
  3276. <wsdl:input>
  3277. <soap:body parts="parameters" use="literal"/>
  3278. </wsdl:input>
  3279. <wsdl:output>
  3280. <soap:body parts="parameters" use="literal"/>
  3281. </wsdl:output>
  3282. </wsdl:operation>
  3283. <wsdl:operation name="GetAudioEncoderConfiguration">
  3284. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetAudioEncoderConfiguration"/>
  3285. <wsdl:input>
  3286. <soap:body parts="parameters" use="literal"/>
  3287. </wsdl:input>
  3288. <wsdl:output>
  3289. <soap:body parts="parameters" use="literal"/>
  3290. </wsdl:output>
  3291. </wsdl:operation>
  3292. <wsdl:operation name="GetVideoAnalyticsConfiguration">
  3293. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetVideoAnalyticsConfiguration"/>
  3294. <wsdl:input>
  3295. <soap:body parts="parameters" use="literal"/>
  3296. </wsdl:input>
  3297. <wsdl:output>
  3298. <soap:body parts="parameters" use="literal"/>
  3299. </wsdl:output>
  3300. </wsdl:operation>
  3301. <wsdl:operation name="GetMetadataConfiguration">
  3302. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetMetadataConfiguration"/>
  3303. <wsdl:input>
  3304. <soap:body parts="parameters" use="literal"/>
  3305. </wsdl:input>
  3306. <wsdl:output>
  3307. <soap:body parts="parameters" use="literal"/>
  3308. </wsdl:output>
  3309. </wsdl:operation>
  3310. <wsdl:operation name="GetAudioOutputConfiguration">
  3311. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetAudioOutputConfiguration"/>
  3312. <wsdl:input>
  3313. <soap:body parts="parameters" use="literal"/>
  3314. </wsdl:input>
  3315. <wsdl:output>
  3316. <soap:body parts="parameters" use="literal"/>
  3317. </wsdl:output>
  3318. </wsdl:operation>
  3319. <wsdl:operation name="GetAudioDecoderConfiguration">
  3320. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetAudioDecoderConfiguration"/>
  3321. <wsdl:input>
  3322. <soap:body parts="parameters" use="literal"/>
  3323. </wsdl:input>
  3324. <wsdl:output>
  3325. <soap:body parts="parameters" use="literal"/>
  3326. </wsdl:output>
  3327. </wsdl:operation>
  3328. <!--===============================-->
  3329. <wsdl:operation name="GetCompatibleVideoEncoderConfigurations">
  3330. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetCompatibleVideoEncoderConfigurations"/>
  3331. <wsdl:input>
  3332. <soap:body parts="parameters" use="literal"/>
  3333. </wsdl:input>
  3334. <wsdl:output>
  3335. <soap:body parts="parameters" use="literal"/>
  3336. </wsdl:output>
  3337. </wsdl:operation>
  3338. <wsdl:operation name="GetCompatibleVideoSourceConfigurations">
  3339. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetCompatibleVideoSourceConfigurations"/>
  3340. <wsdl:input>
  3341. <soap:body parts="parameters" use="literal"/>
  3342. </wsdl:input>
  3343. <wsdl:output>
  3344. <soap:body parts="parameters" use="literal"/>
  3345. </wsdl:output>
  3346. </wsdl:operation>
  3347. <wsdl:operation name="GetCompatibleAudioEncoderConfigurations">
  3348. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetCompatibleAudioEncoderConfigurations"/>
  3349. <wsdl:input>
  3350. <soap:body parts="parameters" use="literal"/>
  3351. </wsdl:input>
  3352. <wsdl:output>
  3353. <soap:body parts="parameters" use="literal"/>
  3354. </wsdl:output>
  3355. </wsdl:operation>
  3356. <wsdl:operation name="GetCompatibleAudioSourceConfigurations">
  3357. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetCompatibleAudioSourceConfigurations"/>
  3358. <wsdl:input>
  3359. <soap:body parts="parameters" use="literal"/>
  3360. </wsdl:input>
  3361. <wsdl:output>
  3362. <soap:body parts="parameters" use="literal"/>
  3363. </wsdl:output>
  3364. </wsdl:operation>
  3365. <wsdl:operation name="GetCompatibleVideoAnalyticsConfigurations">
  3366. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetCompatibleVideoAnalyticsConfigurations"/>
  3367. <wsdl:input>
  3368. <soap:body parts="parameters" use="literal"/>
  3369. </wsdl:input>
  3370. <wsdl:output>
  3371. <soap:body parts="parameters" use="literal"/>
  3372. </wsdl:output>
  3373. </wsdl:operation>
  3374. <wsdl:operation name="GetCompatibleMetadataConfigurations">
  3375. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetCompatibleMetadataConfigurations"/>
  3376. <wsdl:input>
  3377. <soap:body parts="parameters" use="literal"/>
  3378. </wsdl:input>
  3379. <wsdl:output>
  3380. <soap:body parts="parameters" use="literal"/>
  3381. </wsdl:output>
  3382. </wsdl:operation>
  3383. <wsdl:operation name="GetCompatibleAudioOutputConfigurations">
  3384. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetCompatibleAudioOutputConfigurations"/>
  3385. <wsdl:input>
  3386. <soap:body parts="parameters" use="literal"/>
  3387. </wsdl:input>
  3388. <wsdl:output>
  3389. <soap:body parts="parameters" use="literal"/>
  3390. </wsdl:output>
  3391. </wsdl:operation>
  3392. <wsdl:operation name="GetCompatibleAudioDecoderConfigurations">
  3393. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetCompatibleAudioDecoderConfigurations"/>
  3394. <wsdl:input>
  3395. <soap:body parts="parameters" use="literal"/>
  3396. </wsdl:input>
  3397. <wsdl:output>
  3398. <soap:body parts="parameters" use="literal"/>
  3399. </wsdl:output>
  3400. </wsdl:operation>
  3401. <!--===============================-->
  3402. <wsdl:operation name="SetVideoSourceConfiguration">
  3403. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/SetVideoSourceConfiguration"/>
  3404. <wsdl:input>
  3405. <soap:body parts="parameters" use="literal"/>
  3406. </wsdl:input>
  3407. <wsdl:output>
  3408. <soap:body parts="parameters" use="literal"/>
  3409. </wsdl:output>
  3410. </wsdl:operation>
  3411. <wsdl:operation name="SetVideoEncoderConfiguration">
  3412. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/SetVideoEncoderConfiguration"/>
  3413. <wsdl:input>
  3414. <soap:body parts="parameters" use="literal"/>
  3415. </wsdl:input>
  3416. <wsdl:output>
  3417. <soap:body parts="parameters" use="literal"/>
  3418. </wsdl:output>
  3419. </wsdl:operation>
  3420. <wsdl:operation name="SetAudioSourceConfiguration">
  3421. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/SetAudioSourceConfiguration"/>
  3422. <wsdl:input>
  3423. <soap:body parts="parameters" use="literal"/>
  3424. </wsdl:input>
  3425. <wsdl:output>
  3426. <soap:body parts="parameters" use="literal"/>
  3427. </wsdl:output>
  3428. </wsdl:operation>
  3429. <wsdl:operation name="SetAudioEncoderConfiguration">
  3430. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/SetAudioEncoderConfiguration"/>
  3431. <wsdl:input>
  3432. <soap:body parts="parameters" use="literal"/>
  3433. </wsdl:input>
  3434. <wsdl:output>
  3435. <soap:body parts="parameters" use="literal"/>
  3436. </wsdl:output>
  3437. </wsdl:operation>
  3438. <wsdl:operation name="SetVideoAnalyticsConfiguration">
  3439. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/SetVideoAnalyticsConfiguration"/>
  3440. <wsdl:input>
  3441. <soap:body parts="parameters" use="literal"/>
  3442. </wsdl:input>
  3443. <wsdl:output>
  3444. <soap:body parts="parameters" use="literal"/>
  3445. </wsdl:output>
  3446. </wsdl:operation>
  3447. <wsdl:operation name="SetMetadataConfiguration">
  3448. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/SetMetadataConfiguration"/>
  3449. <wsdl:input>
  3450. <soap:body parts="parameters" use="literal"/>
  3451. </wsdl:input>
  3452. <wsdl:output>
  3453. <soap:body parts="parameters" use="literal"/>
  3454. </wsdl:output>
  3455. </wsdl:operation>
  3456. <wsdl:operation name="SetAudioOutputConfiguration">
  3457. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/SetAudioOutputConfiguration"/>
  3458. <wsdl:input>
  3459. <soap:body parts="parameters" use="literal"/>
  3460. </wsdl:input>
  3461. <wsdl:output>
  3462. <soap:body parts="parameters" use="literal"/>
  3463. </wsdl:output>
  3464. </wsdl:operation>
  3465. <wsdl:operation name="SetAudioDecoderConfiguration">
  3466. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/SetAudioDecoderConfiguration"/>
  3467. <wsdl:input>
  3468. <soap:body parts="parameters" use="literal"/>
  3469. </wsdl:input>
  3470. <wsdl:output>
  3471. <soap:body parts="parameters" use="literal"/>
  3472. </wsdl:output>
  3473. </wsdl:operation>
  3474. <!--===============================-->
  3475. <wsdl:operation name="GetVideoSourceConfigurationOptions">
  3476. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdlGetVideoSourceConfigurationOptions/"/>
  3477. <wsdl:input>
  3478. <soap:body parts="parameters" use="literal"/>
  3479. </wsdl:input>
  3480. <wsdl:output>
  3481. <soap:body parts="parameters" use="literal"/>
  3482. </wsdl:output>
  3483. </wsdl:operation>
  3484. <wsdl:operation name="GetVideoEncoderConfigurationOptions">
  3485. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetVideoEncoderConfigurationOptions"/>
  3486. <wsdl:input>
  3487. <soap:body parts="parameters" use="literal"/>
  3488. </wsdl:input>
  3489. <wsdl:output>
  3490. <soap:body parts="parameters" use="literal"/>
  3491. </wsdl:output>
  3492. </wsdl:operation>
  3493. <wsdl:operation name="GetAudioSourceConfigurationOptions">
  3494. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetAudioSourceConfigurationOptions"/>
  3495. <wsdl:input>
  3496. <soap:body parts="parameters" use="literal"/>
  3497. </wsdl:input>
  3498. <wsdl:output>
  3499. <soap:body parts="parameters" use="literal"/>
  3500. </wsdl:output>
  3501. </wsdl:operation>
  3502. <wsdl:operation name="GetAudioEncoderConfigurationOptions">
  3503. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetAudioEncoderConfigurationOptions"/>
  3504. <wsdl:input>
  3505. <soap:body parts="parameters" use="literal"/>
  3506. </wsdl:input>
  3507. <wsdl:output>
  3508. <soap:body parts="parameters" use="literal"/>
  3509. </wsdl:output>
  3510. </wsdl:operation>
  3511. <wsdl:operation name="GetMetadataConfigurationOptions">
  3512. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetMetadataConfigurationOptions"/>
  3513. <wsdl:input>
  3514. <soap:body parts="parameters" use="literal"/>
  3515. </wsdl:input>
  3516. <wsdl:output>
  3517. <soap:body parts="parameters" use="literal"/>
  3518. </wsdl:output>
  3519. </wsdl:operation>
  3520. <wsdl:operation name="GetAudioOutputConfigurationOptions">
  3521. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetAudioOutputConfigurationOptions"/>
  3522. <wsdl:input>
  3523. <soap:body parts="parameters" use="literal"/>
  3524. </wsdl:input>
  3525. <wsdl:output>
  3526. <soap:body parts="parameters" use="literal"/>
  3527. </wsdl:output>
  3528. </wsdl:operation>
  3529. <wsdl:operation name="GetAudioDecoderConfigurationOptions">
  3530. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetAudioDecoderConfigurationOptions"/>
  3531. <wsdl:input>
  3532. <soap:body parts="parameters" use="literal"/>
  3533. </wsdl:input>
  3534. <wsdl:output>
  3535. <soap:body parts="parameters" use="literal"/>
  3536. </wsdl:output>
  3537. </wsdl:operation>
  3538. <!--===============================-->
  3539. <wsdl:operation name="GetGuaranteedNumberOfVideoEncoderInstances">
  3540. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetGuaranteedNumberOfVideoEncoderInstances"/>
  3541. <wsdl:input>
  3542. <soap:body parts="parameters" use="literal"/>
  3543. </wsdl:input>
  3544. <wsdl:output>
  3545. <soap:body parts="parameters" use="literal"/>
  3546. </wsdl:output>
  3547. </wsdl:operation>
  3548. <!--===============================-->
  3549. <!--===============================-->
  3550. <!--===============================-->
  3551. <wsdl:operation name="GetStreamUri">
  3552. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetStreamUri"/>
  3553. <wsdl:input>
  3554. <soap:body parts="parameters" use="literal"/>
  3555. </wsdl:input>
  3556. <wsdl:output>
  3557. <soap:body parts="parameters" use="literal"/>
  3558. </wsdl:output>
  3559. </wsdl:operation>
  3560. <!--===============================-->
  3561. <wsdl:operation name="StartMulticastStreaming">
  3562. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/StartMulticastStreaming"/>
  3563. <wsdl:input>
  3564. <soap:body parts="parameters" use="literal"/>
  3565. </wsdl:input>
  3566. <wsdl:output>
  3567. <soap:body parts="parameters" use="literal"/>
  3568. </wsdl:output>
  3569. </wsdl:operation>
  3570. <!--===============================-->
  3571. <wsdl:operation name="StopMulticastStreaming">
  3572. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/StopMulticastStreaming"/>
  3573. <wsdl:input>
  3574. <soap:body parts="parameters" use="literal"/>
  3575. </wsdl:input>
  3576. <wsdl:output>
  3577. <soap:body parts="parameters" use="literal"/>
  3578. </wsdl:output>
  3579. </wsdl:operation>
  3580. <!--===============================-->
  3581. <wsdl:operation name="SetSynchronizationPoint">
  3582. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/SetSynchronizationPoint"/>
  3583. <wsdl:input>
  3584. <soap:body use="literal"/>
  3585. </wsdl:input>
  3586. <wsdl:output>
  3587. <soap:body use="literal"/>
  3588. </wsdl:output>
  3589. </wsdl:operation>
  3590. <!--===============================-->
  3591. <wsdl:operation name="GetSnapshotUri">
  3592. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetSnapshotUri"/>
  3593. <wsdl:input>
  3594. <soap:body use="literal"/>
  3595. </wsdl:input>
  3596. <wsdl:output>
  3597. <soap:body use="literal"/>
  3598. </wsdl:output>
  3599. </wsdl:operation>
  3600. <!--===============================-->
  3601. <wsdl:operation name="GetVideoSourceModes">
  3602. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetVideoSourceModes"/>
  3603. <wsdl:input>
  3604. <soap:body use="literal"/>
  3605. </wsdl:input>
  3606. <wsdl:output>
  3607. <soap:body use="literal"/>
  3608. </wsdl:output>
  3609. </wsdl:operation>
  3610. <!--===============================-->
  3611. <wsdl:operation name="SetVideoSourceMode">
  3612. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/SetVideoSourceMode"/>
  3613. <wsdl:input>
  3614. <soap:body use="literal"/>
  3615. </wsdl:input>
  3616. <wsdl:output>
  3617. <soap:body use="literal"/>
  3618. </wsdl:output>
  3619. </wsdl:operation>
  3620. <!--===============================-->
  3621. <!--==============OSD Operation Begin=================-->
  3622. <wsdl:operation name="GetOSDs">
  3623. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetOSDs"/>
  3624. <wsdl:input>
  3625. <soap:body use="literal"/>
  3626. </wsdl:input>
  3627. <wsdl:output>
  3628. <soap:body use="literal"/>
  3629. </wsdl:output>
  3630. </wsdl:operation>
  3631. <wsdl:operation name="GetOSD">
  3632. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetOSD"/>
  3633. <wsdl:input>
  3634. <soap:body use="literal"/>
  3635. </wsdl:input>
  3636. <wsdl:output>
  3637. <soap:body use="literal"/>
  3638. </wsdl:output>
  3639. </wsdl:operation>
  3640. <wsdl:operation name="GetOSDOptions">
  3641. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/GetOSDOptions"/>
  3642. <wsdl:input>
  3643. <soap:body use="literal"/>
  3644. </wsdl:input>
  3645. <wsdl:output>
  3646. <soap:body use="literal"/>
  3647. </wsdl:output>
  3648. </wsdl:operation>
  3649. <wsdl:operation name="SetOSD">
  3650. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/SetOSD"/>
  3651. <wsdl:input>
  3652. <soap:body use="literal"/>
  3653. </wsdl:input>
  3654. <wsdl:output>
  3655. <soap:body use="literal"/>
  3656. </wsdl:output>
  3657. </wsdl:operation>
  3658. <wsdl:operation name="CreateOSD">
  3659. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/CreateOSD"/>
  3660. <wsdl:input>
  3661. <soap:body use="literal"/>
  3662. </wsdl:input>
  3663. <wsdl:output>
  3664. <soap:body use="literal"/>
  3665. </wsdl:output>
  3666. </wsdl:operation>
  3667. <wsdl:operation name="DeleteOSD">
  3668. <soap:operation soapAction="http://www.onvif.org/ver10/media/wsdl/DeleteOSD"/>
  3669. <wsdl:input>
  3670. <soap:body use="literal"/>
  3671. </wsdl:input>
  3672. <wsdl:output>
  3673. <soap:body use="literal"/>
  3674. </wsdl:output>
  3675. </wsdl:operation>
  3676. <!--==============OSD Operation End=================-->
  3677. </wsdl:binding>
  3678. <wsdl:service name="MediaService">
  3679. <wsdl:port name="MediaPort" binding="trt:MediaBinding">
  3680. <soap:address location="http://192.168.0.51:8888/onvif/Media"/>
  3681. </wsdl:port>
  3682. </wsdl:service>
  3683. </wsdl:definitions>