0.1.7 • Published 8 years ago
vimeo-upload-me v0.1.7
╭───╮╭─╮
│ ││ │╭─╮╭──┬──┬─╮╭───╮╭───╮
│ ││ │├─┤│ ╭╮ ╭╮ ││ ─ ││╭╮ │ ╭────────┬─────────────────────╮
╰╮ ╰╯╭╯│ ││ ││ ││ ││ ─┤│╰╯ │ | UPLOAD │ ▒▒▒▒▒▒▒▒▒▒▒░░░░ %75 |
╰────╯ ╰─╯╰─╯╰─╯╰─╯╰───╯╰───╯ ╰────────┴─────────────────────╯ Upload videos to your Vimeo account and update their metadata directly from a browser or a Node.js app.
Try it LIVE
Install
Using Bower
bower install vimeo-uploadOr npm
npm install vimeo-uploadUsage
Include vimeo-upload.js in your index.html.
<script src="bower_components/vimeo-upload/vimeo-upload.js"></script>Create a new VimeoUpload initialized with a Blob or File and Vimeo Access Token then call upload() to start the upload process.
var uploader = new VimeoUpload({
file: file,
token: accessToken,
});
uploader.upload();Your access token need to be authorized by Vimeo. Create new Vimeo access token here.
Check index.html for details and additional parameters you can include when initializing VimeoUpload.
Credits
Sample code for uploading files directly with XHR/CORS: cors-upload-sample