├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── demo └── index.html ├── google-youtube-upload-icons.html ├── google-youtube-upload.html ├── index.html ├── md-gum-polyfill-import.html └── upload-import.html /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2014 Google Inc 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | google-youtube-upload 2 | ===================== 3 | 4 | See the [component landing page](https://googlewebcomponents.github.io/google-youtube-upload) for more information. 5 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "google-youtube-upload", 3 | "description": "Upload videos to YouTube from your browser.", 4 | "homepage": "https://elements.polymer-project.org/elements/google-youtube-upload", 5 | "main": "google-youtube-upload.html", 6 | "authors": [ 7 | "Jeff Posnick " 8 | ], 9 | "license": "Apache-2.0", 10 | "ignore": [ 11 | "/.*", 12 | "/test/" 13 | ], 14 | "keywords": [ 15 | "google", 16 | "youtube", 17 | "upload", 18 | "polymer", 19 | "video", 20 | "web-components", 21 | "web-component" 22 | ], 23 | "dependencies": { 24 | "cors-upload-sample": "googledrive/cors-upload-sample#master", 25 | "google-apis": "GoogleWebComponents/google-apis#^1.1.5", 26 | "google-signin": "GoogleWebComponents/google-signin#^1.3.2", 27 | "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.3.1", 28 | "iron-iconset-svg": "PolymerElements/iron-iconset-svg#^1.0.9", 29 | "iron-pages": "PolymerElements/iron-pages#^1.0.7", 30 | "md-gum-polyfill": "mozdevs/mediaDevices-getUserMedia-polyfill#master", 31 | "paper-fab": "PolymerElements/paper-fab#^1.2.0", 32 | "paper-styles": "PolymerElements/paper-styles#^1.1.4", 33 | "polymer": "Polymer/polymer#^1.4.0" 34 | }, 35 | "devDependencies": { 36 | "google-youtube": "GoogleWebComponents/google-youtube#^1.2.1", 37 | "iron-component-page": "PolymerElements/iron-component-page#^1.1.5" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | <google-youtube-upload> Demo 7 | 8 | 9 | 10 | 11 | 24 | 25 | 26 | 27 |

28 | Upload videos with a 29 | <google-youtube-upload> 30 | element! 31 |

32 | 33 |

34 | Video capture requires a current version of either Chrome or Firefox. 35 |

36 | 37 | 84 | 85 | 148 | 149 | 150 | -------------------------------------------------------------------------------- /google-youtube-upload-icons.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /google-youtube-upload.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 66 | 67 | 68 | 119 | 120 | 222 | 223 | 224 | 738 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /md-gum-polyfill-import.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /upload-import.html: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------