Files
taoyao/taoyao-client-android/taoyao/client/src/main/res/values/settings.xml
2023-06-15 08:24:44 +08:00

54 lines
2.1 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- 是否预览视频 -->
<bool name="preview">false</bool>
<!-- 是否开启音频播放 -->
<bool name="playAudio">true</bool>
<!-- 是否开启视频播放 -->
<bool name="playVideo">true</bool>
<!-- 信令版本 -->
<string name="version">1.0.0</string>
<!-- 终端类型CAMERA|MOBILE -->
<string name="clientType">MOBILE</string>
<!-- 超时时间 -->
<integer name="timeout">5000</integer>
<!-- 信令加密策略AES|DES -->
<string name="encrypt">DES</string>
<!-- 信令加密密钥 -->
<string name="encryptSecret">2SPWy+TF1zM=</string>
<!-- 媒体配置:是否消费数据 -->
<bool name="dataConsume">false</bool>
<!-- 媒体配置:是否消费音频 -->
<bool name="audioConsume">true</bool>
<!-- 媒体配置:是否消费视频 -->
<bool name="videoConsume">true</bool>
<!-- 媒体配置:是否生产数据 -->
<bool name="dataProduce">false</bool>
<!-- 媒体配置:是否生产音频 -->
<bool name="audioProduce">true</bool>
<!-- 媒体配置:是否生产视频 -->
<bool name="videoProduce">true</bool>
<!-- 图片质量 -->
<integer name="imageQuantity">100</integer>
<!-- 音频质量 -->
<string name="audioQuantity">fd-audio</string>
<!-- 视频质量 -->
<string name="videoQuantity">fd-video</string>
<!-- 音频通道数量 -->
<integer name="channelCount">1</integer>
<!-- 视频关键帧频率 -->
<integer name="iFrameInterval">1</integer>
<!-- 视频房间是否使用iceServer -->
<bool name="roomUseIceServer">false</bool>
<!-- 图片存储目录 -->
<string name="imagePath">/taoyao</string>
<!-- 视频存储目录 -->
<string name="videoPath">/taoyao</string>
<!-- 分享视频文件路径 -->
<string name="videoFile"></string>
<!-- 水印 -->
<string name="watermark">"'TAOYAO' yyyy-MM-dd HH:mm:ss"</string>
<!-- 视频来源FILE|BACK|FRONT|SCREEN -->
<string name="videoSourceType">BACK</string>
</resources>