Can anyone please provide any sample code to record audio and then play on iphone ?
Thanks in advance,
abc
Try this: http://www.techotopia.com/index.php/Recording_Audio_on_an_iPhone_with_AVAudioRecorder
It provides some simple sample code. It worked for me.
Related
I would like to create a skill to yell at someone, but i can not find any reference in SSML to yell or scream.
Is it even possible ?
Use audio file for doing that. You can record or download from the internet and use it in ssml audio format. You just have to put your audio url as done in code below.
<speak>
<audio src="soundbank://soundlibrary/transportation/amzn_sfx_car_accelerate_01"/>
</speak>
There's currently no yelling supported. The closest expression you could achieve with SSML is using the custom tag for emotions:
<amazon:emotion name="excited" intensity="medium">Hey, I'm so excited!</amazon:emotion>
The support of emotions varies across locales and I suggest to keep an eye on the dev blog posts to keep track of new possibilities:
https://developer.amazon.com/en-US/blogs/alexa/alexa-skills-kit/2020/11/alexa-speaking-styles-emotions-now-available-additional-languages
I want to create a chrome extension like Zephyre capture for jira.But I am stuck how to write code for capture screenshot and edit that screenshot.Please help..
There are several samples online that can actually help you with your 'screenshot extension' endeavor. This orbitbot github repo has plenty of samples including a screenshot demo. Another one is Amindav's sample.
you get captured screenshot data in base-XX format suing this API
https://developer.chrome.com/extensions/desktopCapture
you can edit the email using base-XX
I have been trying to develop in MonoDevelop for about a week now, my boss asked me to get WEPopOver working on a particular project. I have seen the github documentation and looked at examples, but can't seem to get a working model for MonoDevelop.
Can ANYONE give me an example of how to use this WEPopOver in MonoDevelop?
thank you in advance!
Rick
Did you see/try the sample solution that comes with the bindings ?
If so then you'll need to be more explicit (edit your question) about what you want to do with it.
I was looking for something discussed in following posts.
Gap above NSMenuItem custom view.
Reverse engineering an NSMenu for a Status Bar Item
I tried the carbon code provided by Pierre Bernard
initially, i was getting same error "EXC_BAD_ACCESS on the line InstallControlEventHandler" like other had. I play with the code lots and accidently found the solution.
I have just replaced the InstallControlEventHandler function call to HIViewInstallEventHandler and everything is working fine.
Hope this will help others. Let me know if anyone need further clarification.
Special thanks to Pierre Bernard to provide great code.
Thanks
Just replace the InstallControlEventHandler function call to HIViewInstallEventHandler and code will work fine.
Thanks
I'm trying to use the code posted here: http://seanho.posterous.com/monotouch-first-attempt-arkit-c-version
however - when i try to overlay it on a camera - it seems to behave really strangely.
I'm guess that it's because the camera view only does portrait?
Has anyone succesfully used this? Or maybe know's how to get this working?
Cheers
w://
The code on the blog entry you linked to is ported from the open source iPhone ARKit: http://www.iphonear.org/
iPhone ARKit was updated after this port was posted (to quote the author "My version of code may be outdated"). You may want to examine the source on github to pick up any changes/fixes.