I am looking for the code to live stream Hikvision cameras in Android App using RTSP stream to play video properly. However unable to find the 2-way Audio communication functionality just like IVMS Official App.
What protocol should be the to be used for same. I tried Hikvision IP Camera APIs but no use.
/ISAPI/System/TwoWayAudio/channels/ID
General Resource v2.0
GET
Description It is used to get a particular two way audio channel
Query None
Inbound Data None
Success Return TwoWayAudioChannel
/ISAPI/System/TwoWayAudio/channels/ID/open General Resource
v2.0
PUT
Description It is used to open the two way audio channel.
Query None
Inbound Data None
Success Return TwoWayAudioSession
this is the isapi url you need to use #define HTTP_TWOWAY_AUDIO_OPEN_URL "/ISAPI/System/TwoWayAudio/channels/1/open" #define HTTP_TWOWAY_AUDIO_CLOSE_URL "/ISAPI/System/TwoWayAudio/channels/1/close" #define HTTP_GET_TWOWAY_AUDIO_URL "/ISAPI/System/TwoWayAudio/channels/1/audioData"