Log In
Technologies
Join the Network
Member Services
Events & Community
Jabber Developer
Jabber
What is Jabber?
The Jabber Web Tool Kit
Web Tool Kit In Use
The Jabber Application
Better Together
Develop and Test
Integrated Jabber
Voice & Video
Overview
Get Started
Sample Code
Reference Material
Jabber SDK Release Notes SDK v3.0
Troubleshooting
IM & Presence
Overview
Get Started - Hosted Deployment
Get Started - On Premise Deployment
Sample Code
Reference
Voice Mail
Overview
Get Started
Sample Code
Reference
Troubleshooting
Meeting
Overview
Get Started
Sample Code
Reference
Troubleshooting
Testing
Overview
Shared Jabber Sandbox
Rich UC Sandbox
Learn
Voice & Video: How to...
Implement Graceful Registration
Jabber Voice best practices
Embed a softphone in under 5 min
Install the Node Component
Install a Google Gadget
Add video call capabilities
IM and Presence: How to...
Use the Jabber IM Core APIs
Use the Jabber IM UI Components
Deploy the Jabber demo in salesforce.com
Voice Mail: How to...
Send a Message with Attachments
Meeting: How to...
Launch meetings on mobile
Use SSO with WebEx APIs
Use WebEx best practices
Community and Support
Technical Support
Commercial Support
Go to Market
Forum
Sitemap
Contact Us
Custom Integration
FAQs
Voice & Video
IM and Presence
Voice Mail
Meeting
Collaboration Developer Sites
Collaboration Hub
WebEx Web Conferencing Developer
WebEx Social Developer
Voice and UC Developer
Voice and UC AXL Developer
Voice and UC PAWS Developer
Contact Center Developer
Breadcrumbs
Community and Support
Forum
Jabber Voice Forum
APIs
How to identified in jabber the incoming call is video or audio
Forums
Message Boards Home
Recent Posts
Statistics
Answer
(
Unmark
)
Mark as an Answer
« Back to APIs
How to identified in jabber the incoming call is video or audio
Threads [
Previous
|
Next
]
ashok kolwal
Posts:
3
Join Date:
4/17/12
Recent Posts
How to identified in jabber the incoming call is video or audio
Answer
9/18/12 6:00 AM
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Hi,
All I am developing an application in cisco Jabber. How can I identified the incoming call is video or only audio call?
I want to open video window popup automaticaly on answer button click when the call is video otherwise no video window popup should be display.
the call is coming from jabber softPhone or DeskPhone which is registered to Unified CM or
the call is coming through gateway by the Mobile .
Please Reply as soon as posible.
Thanks.
Regards,
Ashok Kolwal
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Ting-Hao Chen
Posts:
78
Join Date:
5/17/12
Recent Posts
RE: How to identified in jabber the incoming call is video or audio
Answer
9/18/12 4:57 PM as a reply to ashok kolwal.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Ashok,
I have seen using
VideoDirection
to see if it's "inactive" or "RecvOnly", then using
conversation
to do the work...However never tried it myself...
Hope this would give you some light.
Howard
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Praveen Kumar
Posts:
5
Join Date:
12/24/12
Recent Posts
RE: How to identified in jabber the incoming call is video or audio
Answer
5/24/13 3:41 AM as a reply to Ting-Hao Chen.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
But VideoDirection is not correctly updating the value which is set when the call is initiated.
Is there any work around for this?
Thanks,
Praveen
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Praveen Kumar
Posts:
5
Join Date:
12/24/12
Recent Posts
RE: How to identified in jabber the incoming call is video or audio
Answer
5/24/13 3:45 AM as a reply to Praveen Kumar.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
http://developer.cisco.com/web/jabber-developer/jabber-voice-forum/-/message_boards/message/15553161?p_p_auth=j9bPoctY
Please refer this llink for the explaination of my issue.
Thanks,
Praveen
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Thomas Vanier
Posts:
95
Join Date:
11/29/10
Recent Posts
RE: How to identified in jabber the incoming call is video or audio
Answer
5/24/13 9:50 AM as a reply to Praveen Kumar.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
I think the videoDirection is not available until the call is actually connected and video was negotiated. The sample application checks videoDirection when callState is Connected in a conversationUpdate handler:
if(conversation && conversation.callState === "Connected" && (conversation.videoDirection === "RecvOnly" || conversation.videoDirection === "SendRecv")) {
calls.getCallDiv().cwic('updateConversation',{'addRemoteVideoWindow':videoObject});
}
Could you delay the opening of the popup after the call becomes connected with video ?
Thomas
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top