Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4349 Serge 1
2
3
4
9
FFmpeg bookmarklets
10
11
26
29
30
31
 
32

Introduction

33
 
34
The scripts in this page are
35
bookmarklets: store
36
their link version in a bookmark, and later activate the bookmark on a page
37
to run the script.
38
 
39

TED Talks captions

40
 
41

Get links to the captions

42
 
43
44
d = window.open("", "sub", "width=256,height=512,resizable=yes,scrollbars=yes").document;
45
l = document.getElementById("languageCode").getElementsByTagName("option");
46
for (i = 1; i < l.length ; i++) {
47
  d.body.appendChild(p = d.createElement("p"));
48
  p.appendChild(a = d.createElement("a"));
49
  a.appendChild(d.createTextNode(l[i].textContent));
50
  a.href="http://www.ted.com/talks/subtitles/id/" + talkID+"/lang/" + l[i].value;
51
}
52
53
 
54
55