← BACK TO BLOG

声网SDK对接记录

声网 Agora Python Server SDK 的对接记录,包含依赖安装与推送音视频流的示例命令。

次阅读

安装依赖

bash
pip install agora_python_server_sdk
pip instal numpy
python>3.10

相关信息

yaml
channel: test123
userid: 0
token: 007eJxTYBBbZfIipPPYn+MvDr6aF5Wl2BI48d6Bkx/v3hRZZM5sbiejwJBkYZSYZpxkaWpsZGpilmZkkWpqZJySZmpmapaUamScutY8L6MhkJGhOukBMyMDBIL47AwlqcUlhkbGDAwAS2ghpw==
appid: b82af3b9532546f28e523df5656be23e

推送视频+音频

bash
python agora_rtc/examples/example_pcm_yuv_send.py --appId=b82af3b9532546f28e523df5656be23e --token=007eJxTYBBbZfIipPPYn+MvDr6aF5Wl2BI48d6Bkx/v3hRZZM5sbiejwJBkYZSYZpxkaWpsZGpilmZkkWpqZJySZmpmapaUamScutY8L6MhkJGhOukBMyMDBIL47AwlqcUlhkbGDAwAS2ghpw== --channelId=test123 --connectionNumber=1 --videoFile=./test_data/103_RaceHorses_416x240p30_300.yuv --width=416 --height=240 --fps=30 --audioFile=./test_data/demo.pcm --sampleRate=16000 --numOfChannels=1

推送音频

bash
python agora_rtc/examples/example_audio_pcm_send.py --appId=b82af3b9532546f28e523df5656be23e --token=007eJxTYBBbZfIipPPYn+MvDr6aF5Wl2BI48d6Bkx/v3hRZZM5sbiejwJBkYZSYZpxkaWpsZGpilmZkkWpqZJySZmpmapaUamScutY8L6MhkJGhOukBMyMDBIL47AwlqcUlhkbGDAwAS2ghpw== --channelId=test123 --userId=0 --audioFile=./test_data/demo.pcm --sampleRate=16000 --numOfChannels=1