This repository has been archived by the owner on Nov 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from dmhacker/feature/yes-no-intent
3.0.0: Add yes/no intents to the video search process
- Loading branch information
Showing
8 changed files
with
230 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
.PHONY: default clean | ||
default: | ||
mkdir -p build | ||
$(MAKE) default -C src | ||
npm install --prefix src | ||
cd src && zip -r9 alexa-youtube-skill.zip node_modules util *.js *.json | ||
mv src/alexa-youtube-skill.zip build | ||
clean: | ||
rm -rf src/node_modules | ||
rm -rf build | ||
$(MAKE) clean -C src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
# alexa-youtube-skill | ||
|
||
By default, Amazon Alexa does not support playing audio from YouTube. | ||
In fact, it only supports a limited number of third-party audio-based skills like Spotify music. | ||
Otherwise, all default Alexa skills that use audio are tied almost exclusively to Amazon services. | ||
This project contains the code for an unpublished skill that allows users to search and play audio from YouTube. | ||
For example, a user might say: | ||
This project contains the source code for an unpublished skill that allows users to search and play audio from YouTube | ||
as, by default, Amazon Alexa does not support playing audio from YouTube. | ||
|
||
> Alexa, search YouTube for Frost Hyperventilate. | ||
After setting this skill up, it's easy to query YouTube for the video of your choice: | ||
|
||
This skill performs a search, finding [the most relevant video](https://www.youtube.com/watch?v=Ol592sakmZU) that matches the query. | ||
> Alexa, ask YouTube to search for ... | ||
This skill performs a search, finding the most relevant video that matches the query. | ||
It then streams the video (audio only) to your Alexa device for your enjoyment. :) | ||
|
||
## Additional Information | ||
|
||
__Setup:__ The instructions have been moved to this repository's [wiki page](https://github.com/dmhacker/alexa-youtube-skill/wiki). | ||
|
||
__Migration:__ Version 3.x.x is the latest version and fixes several critical issues present in earlier versions. | ||
To migrate to v3, please use [this guide on the wiki page](https://github.com/dmhacker/alexa-youtube-skill/wiki/Migrating-to-Version-3). | ||
|
||
__Disclaimer:__ This skill is not officially supported by YouTube and will never be published on Amazon. | ||
It was originally intended as a proof-of-concept, but instructions on setting it up are provided (see above). |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.