skype

How do I inject custom audio buffers into a DirectX filter graph using DSPACK?

时光怂恿深爱的人放手 提交于 2019-12-07 12:09:00
问题 I am using Delphi 6 with DSPACK to do several operations involving audio and DirectX. I have the "input" side figured out where I assign one of the enumerated audio input devices to a TFilter object and connect that filter to a TSampleGrabber object and that gives me the audio buffers I need to send audio to Skype. It is the logical inverse of that graph that I need to figure out. I receive audio buffers from Skype via a socket. I need to create a graph that has a filter that would be the

UWP use skype to call number

老子叫甜甜 提交于 2019-12-07 10:01:15
问题 I want my c# UWP App to support calling numbers. When I'm on W10 mobile I want it to use W10 PhoneCall API normal (this is working) Windows.ApplicationModel.Calls.PhoneCallManager.ShowPhoneCallUI(number, name); but on W10 Desktop/PC I won't have a GSM provider, so I thought, maybe use skype to call the number, the user pressed. Is that possible via UWP? Maybe similar like opening websites: await Windows.System.Launcher.LaunchUriAsync(new Uri(website)); 回答1: Yes, it's possible and you're right

Call using Skype.app via openURL:

时光毁灭记忆、已成空白 提交于 2019-12-07 06:19:57
问题 Does anybody know if it is possible open Skype.app to call phone via - (BOOL)openURL:(NSURL *)url UIApplication message? If it possible, what url a need pass to this message? Thanks 回答1: Just for reference, this seems to have changed when multitasking support was added: starting at least with Skype 2.1.0, this URI works fine: skype:+33123456789?call 回答2: By looking at Skype's Info.plist file (you can open it from the ipa file iTunes has downloaded), you can tell it has no URL registered, so

Video calling in desktop application .net

六月ゝ 毕业季﹏ 提交于 2019-12-07 02:49:17
问题 I am working on a wpf application which is suppose to have video calling feature. So I am going for Skype to provide me with the solution. I am using Skype4COM library to do it. I got all the friends from Skype in my application, I can make call to my friends and even can do video call, but I cant control streaming. Video is being shown in Skype window, I want to show it inside my application like a part of my application. I don't even know which control should I use to handle the video

How to get skype info from the android contact list

南楼画角 提交于 2019-12-07 01:25:04
问题 Newbie to using the Contacts Contract Content Provider. I'm trying to make a skype call from within my application, and I can't figure out how to get the skype info from the android contacts. I am running a query through a ContentResolver to get all of the data for the contacts, but I don't know how to find the skype name within the data. 回答1: This is working for me: public String getSkypeID(Context mContext, String contactID) { Log.i("getContactNumber"); String returnID = "noMatch";

Google开源实时通信项目WebRTC

情到浓时终转凉″ 提交于 2019-12-06 21:36:03
最近,Google正式开源了WebRTC实时通信项目,希望浏览器厂商能够将该技术内建在浏览器中,从而使Web应用开发人员能够通过HTML标签和JavaScript API就实现Web音频、视频通信功能。 WebRTC(Web Real Time Communication)并不是Google原来自己的技术。在2010年,Google以大约6820万美元收购了VoIP软件开发商Global IP Solutions公司,并因此获得了该公司拥有的WebRTC技术。如今,互联网的音频、视频通信服务技术一般都是私有技术,如Skype, 需要通过安装插件或者桌面客户端来实现通信功能。Google希望Web开发人员能够直接在浏览器中创建视频或语音聊天应用,Global IP Solutions公司之前已经针对Android、Windows Mobile、iPhone制作了基于WebRTC的移动客户端。Google此次将WebRTC开源出来,就是希望浏览器厂商能够将该技术直接内嵌到浏 览器中,从而方便Web开发人员。 WebRTC的博客说明了WebRTC的优势和发展方向: JQuery插件定义 直到现在,实时通信仍然需要私有的信号处理技术,大部分都是通过插件和客户端来安装使用。我们通过WebRTC开源了收购GIPS后获得的音频、视频引擎技术,让开发人员能够了解信号处理技术

Python SkypeWebClient-Bot with Selenium (Error 10048)

不羁岁月 提交于 2019-12-06 18:59:26
I am building a bot for the skype web client ( https://web.skype.com/en ) using Selenium. Everything works like a charm but after a few moments I am getting the error 10048: Address already in use. Only one usage of each socket address (protocol/IP address/port) is normally permitted I checked netstat -n and saw that my programm creates a huge amount of connections. from selenium import webdriver from selenium.webdriver.common.keys import Keys import time #driver = webdriver.Chrome(executable_path='c:\Python34\chromedriver.exe') driver = webdriver.Firefox(executable_path='c:\Program Files

Detect call state change in VOIP Android apps

孤人 提交于 2019-12-06 13:35:10
Is there a way to detect the beginning/ending of voice calls in apps such as Google Hangouts / Skype? (I know this is a shot in the dark, but I was wondering if anyone researched this option). I'm interested in something like Android's receivers for the android.intent.action.PHONE_STATE and the android.intent.action.NEW_OUTGOING_CALL actions Skype broadcast: com.skype.android.CONVERSATION_LIVE_STATE There u can read: com.skype.live_identity -> ur friend com.skype.live_status -> RINGING_FOR_ME or STARTING or NONE com.skype.account -> your account 来源: https://stackoverflow.com/questions/26795814

Send an SMS via Skype with PHP

落爺英雄遲暮 提交于 2019-12-06 12:49:35
问题 Does anyone have any experience using PHP to send an sms via skype I want the user off the website to use one the forms and give them a choice if they want to send an SMS to do a request. First it will have to check for the availabillity of Skype on the clients computer, if so it should send an SMS. I already have the users mobile number in the database when he logs to the website. Maybe, I have to use a combination off Javascript and PHP? I see that Skype has a call.php script, but I can't

Java library for the use of Skype API [closed]

╄→гoц情女王★ 提交于 2019-12-06 12:20:41
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Can anyone suggest any java library to use Skype public API? I have not found Skype4Java or JSkype libraries. 回答1: I found skype4java. Yesterday download link was not available, so I thought that the library is not supported. Now everything is fine. Link for download Useful article Thank you all 来源: https:/