Skip to content

Instantly share code, notes, and snippets.

@atsusy
Created September 10, 2012 11:03
Show Gist options
  • Save atsusy/3690338 to your computer and use it in GitHub Desktop.
Save atsusy/3690338 to your computer and use it in GitHub Desktop.
Asset Library module example
var assetLibrary = require('de.marcelpociot.assetlibrary');
assetLibrary.assetThumbnails({
group:'all',
page:0,
perPage:48,
type:assetLibrary.TYPE_VIDEO,
thumbnailCallback:function(e){
for(var i = 0; i < e.assets.length; i++){
e.assets[i].thumbnail; // サムネイル画像です
e.assets[i].duration; // ムービーの時間です
e.assets[i].assetUrl; // ムービーのURLです
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment