mi / wowza-guzzle-client
Wowza服务器的Guzzle客户端
5.0.0
2022-12-07 13:44 UTC
Requires
- php: ^7.4|^8.0
- guzzlehttp/guzzle: ^6.5 || ^7.5
- symfony/config: ^5.2
- symfony/dependency-injection: ^5.2
- symfony/http-kernel: ^5.2
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is not auto-updated.
Last update: 2024-09-25 23:24:11 UTC
README
用于使用Wowza REST API的API包
mi_wowza_guzzle_client:
wowza_admin: %wowza_admin%
wowza_admin_password: %wowza_admin_password%
wowza_protocol: %wowza_protocol%
wowza_hostname: %wowza_hostname%
wowza_dvr_port: %wowza_dvr_port%
wowza_app: %wowza_app%
#AppKernel.php
new MiWowzaGuzzleClientBundle()
#在服务中使用
DVR
<service id="yout_id.startdvr"
class="Your\Class\StartDvr">
<argument type="service" id="mi_wowza_dvr_handler"/>
</service>
<service id="your_id.stopdvr"
class="Your\Class\StopDvr">
<argument type="service" id="mi_wowza_dvr_handler"/>
</service>
录制
<service id="your_id.startrecording"
class="Your\Class\StartRecording">
<argument type="service" id="mi_wowza_recording_handler"/>
</service>
<service id="your_id.stoprecording"
class="Your\Class\StopRecording">
<argument type="service" id="mi_wowza_recording_handler"/>
</service>
提示点
<service id="your_id.set"
class="Your\Class\Set">
<argument type="service" id="mi_wowza_cuepoint_handler"/>
</service>