Created
March 21, 2010 13:30
-
-
Save eagletmt/339302 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(function() { | |
const FORMAT_INFO = { | |
5: { | |
desc: 'flv1+mp3 360p', | |
ext: 'flv', | |
}, | |
18: { | |
desc: 'h264+aac 360p', | |
ext: 'mp4', | |
}, | |
22: { | |
desc: 'h264+aac 720p', | |
ext: 'mp4', | |
}, | |
34: { | |
desc: 'h264+aac 360p', | |
ext: 'flv', | |
}, | |
35: { | |
desc: 'h264+aac 480p', | |
ext: 'flv', | |
}, | |
37: { | |
desc: 'h264+aac 1080p', | |
ext: 'mp4', | |
}, | |
}; | |
commands.addUserCommand(['ytd[ownload]'], 'download this video', | |
function(args) { | |
let flashvars = get_flashvars(); | |
let video_id = flashvars.video_id; | |
let t = flashvars.t; | |
let title = args.literalArg || get_title(); | |
title = title.replace(/[\/\\]/, '_'); | |
let fmt = args['-fmt'] || available_formats()[0]; | |
let uri = makeURI('http://www.youtube.com/get_video?fmt=' + fmt + '&video_id=' + video_id + '&t=' + t); | |
let dm = services.get('downloadManager'); | |
let file = | |
liberator.globalVariables.yt_save_dir | |
? io.File(liberator.globalVariables.yt_save_dir) | |
: dm.userDownloadsDirectory; | |
if (!file.exists() || !file.isDirectory()) { | |
file.create(Ci.nsIFile.DIRECTORY_TYPE, 0777); | |
} | |
let name = title + '.' + FORMAT_INFO[fmt].ext; | |
file.appendRelativePath(name); | |
let fileUri = makeFileURI(file); | |
let persist = makeWebBrowserPersist(); | |
let download = dm.addDownload(0, uri, fileUri, name, null, null, null, null, persist); | |
persist.progressListener = download; | |
persist.saveURI(uri, null, null, null, null, file); | |
liberator.echo('download to ' + file.path + ' with fmt=' + fmt); | |
}, | |
{ | |
literal: 0, | |
options: [ | |
[['-fmt', '-f'], commands.OPTION_INT, null, fmt_completer], | |
], | |
completer: function(context, args) { | |
context.title = ['filename']; | |
context.completions = [[get_title(), 'title']]; | |
}, | |
}, true); | |
function get_flashvars() { | |
let flashvars = {}; | |
content.document.getElementById('movie_player').getAttribute('flashvars').split('&').forEach(function(x) | |
let ([k, v] = x.split('=')) flashvars[k] = decodeURIComponent(v)); | |
return flashvars; | |
} | |
function get_title() | |
content.document.getElementsByClassName('long-title')[0].title; | |
function available_formats() | |
get_flashvars().fmt_list.split(',').map(function(u) u.split('/')[0]); | |
function fmt_completer(context, args) | |
[[f, FORMAT_INFO[f].desc + ' (' + FORMAT_INFO[f].ext + ')'] | |
for each(f in available_formats())]; | |
})(); | |
// vim: et sw=2 ts=2 sts=2: | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment