From 93184fee3074377dcf26257b1d810f2de23977b5 Mon Sep 17 00:00:00 2001 From: Sanj Date: Thu, 16 Feb 2012 02:17:47 +0530 Subject: [PATCH] download video from video.pad.ma --- padma.layers.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/padma.layers.js b/padma.layers.js index c0f18a7..42b2e35 100644 --- a/padma.layers.js +++ b/padma.layers.js @@ -77,7 +77,8 @@ padmaVideo.prototype.getVideo = function(tc, size) { if (typeof(size) == 'undefined') { size = '240'; } - return BASE_URL + this.id + "/" + size + "p.webm"; + return "http://video.pad.ma/" + this.id + "/" + size + "p.webm"; +// return BASE_URL + this.id + "/" + size + "p.webm"; // return this.video.urls[size] + "?t=npt:" + tc; }