can i create a custom radio skill to play radio stations live in alexa - alexa-skills-kit

I am new to alexa skill kit. I want to create a skill that play a live audio stream for a radio station.
Is it possible to play live stream in skill. please tell me it is possible or not and if it is possible how can I achieve it.
Thank you in advance.

the radio skill will be implemented using AudioPlayer interface, please find more information on the link below:
https://developer.amazon.com/en-US/docs/alexa/custom-skills/audioplayer-interface-reference.html .
There is an AudioPlayer sample skill which actually streams from a radio station already to which you can refer. That can be found here:
https://github.com/alexa-samples/skill-sample-nodejs-audio-player
You will need to change the url stream and add your own. Please take into account that the URL you provide in the audioItem.stream.url property must meet these requirements:
https://developer.amazon.com/en-US/docs/alexa/custom-skills/audioplayer-interface-reference.html#audio-stream-requirements

Related

what is the deep link of telegram bots to share texts?

there is a deep link that user can share some text with her friends or chats.
I just know this deep link:
https://telegram.me/ExampleComBot?start=vCH1vGWJxfSeofSAs0K5PA
thanks for helping
You can try this format
http://t.me/share/url?url=<URL>&text=<TEXT>
e.g., http://t.me/share/url?url=blog.sean.taipei%2F2016%2F10%2Ftelegram-bot&text=Hello+World! is this
Any of these formats will work, but the first one is recommended by the official documentation...
https://t.me/share/url?url={url}&text={text}
https://telegram.me/share/url?url={url}&text={text}
tg://msg_url?url={url}&text={text}
The Official API Documentation Source: Core.Telegram.org: Widgets -> Sharing Button
You may share:
url : The URL you want to share.
text : Text to accompany the URL you want to share.
If you are interested in watching a project that keeps track of these URLs, then check us out!: https://github.com/bradvin/social-share-urls#telegramme

Acces to LinkedIn API for Apply Now button

I'm trying to add an 'Apply by LinkedIn' button to my website. I realise the plugin was deprecatad and am trying to use the JS SDK to create this. What I currently have in place (as documented here) will allow me to sign in to my account, however, the documentation doesn't go any further. How is the user to apply for a specific position, should this be referenced in the url somewhere?
Also, I've submitted the application to access the API but have heard nothing back after 9 days.
Any feedback appreciated,
Thanks :)

How create a frame for our video?

I have a video which I want users to see in my webpage. I have uploaded that video on youtube also.
My current coding is
<iframe src="https://www.youtube.com/embed/ilbR0MiH6Ho"></iframe>
But this shows the video in the style(with same loaders, buttons, interface, etc..) it is being shown at youtube...
But I want it to be shown in other style like it is shown in some other sites like http://www.apple.com/your-verse/#video-your-verse It has a different style of viewing videos!!
That way, I also want to create my own frame to view my video(with a play button of my designing, my loading bar, my interface, etc..)
Can anyone out there help me with that?? Thanks in advance...
if you need your own 'player' or 'skin', you will have to use the available players like "JWPlayer" or "flowplayer" or create your own. Then you will have to host your videos elsewhere, where a streaming link has to be obtained.
Its not easy unless you have the technical skills required to create your own video player. But you can use the existing opensource players like I mentioned before.

Flex and Video Annotation

I have been investigating how to annotate video using Flex or AIR. Similar to how it is being done on YouTube. I am not getting much joy. Wondered if anybody might have any insight?
Thanks
--Matt
This could actually be simpler than you thought.
Here's what I would do:
Play the video
When you see a spot you want to add an annotation for click the annotation button or the video to stop it and add an annotation
When you click that button you grab the timecode from the video
Save the timecode and your annotation details in a database
The next time you play the video, you load the annotations and their timecodes from the database
Before the video start playing you add cuepoints to it using the CuePointManager class in Flex
Add an event listener to the video player that will listen for these cuepoints
When the cuepoint hits you can show your annotation at the correct time code etc
Hope this helps.
Serge-
Matt you can refer the Youtube AS3 API's at
http://code.google.com/apis/youtube/flash_api_reference.html
You can check some demo examples from the link above to get an understanding how you can start off. You can also do this with Javascript API's if you are interested.
We have used Youtube AS3 API for enriching videos for content companies and it was fairly straightforward to built it - check demo at onion.tv

How can i record live audio using Flex?

I have very simple question that is how can i live Audio using flex and save the recorded audio to the client system??
is there any way, we can do without any media server or red5??
as i have to learn server api also..
Any good links will be helpful..
Please guide me.. i need little guidance.. please help me out??
Take a look at the following link. It shows you how to capture data from the microphone.

Resources