-
Notifications
You must be signed in to change notification settings - Fork 0
/
tedxtalks-vids-1k.txt
1000 lines (1000 loc) · 132 KB
/
tedxtalks-vids-1k.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
TEDxManhattanBeach - Thomas Suarez - iPhone Application Developer... and 6th Grader,1734871,https://www.youtube.com/watch?v=ehDAP1OQ9Zw&feature=youtube_gdata_player
TEDxSF - Louie Schwartzberg - Gratitude,666665,https://www.youtube.com/watch?v=gXDMoiEkyuQ&feature=youtube_gdata_player
TEDxHouston - Brené Brown,516633,https://www.youtube.com/watch?v=X4Qm9cGRub0&feature=youtube_gdata_player
TEDxNextGenerationAsheville - Birke Baehr - "What's Wrong With Our Food System",422941,https://www.youtube.com/watch?v=F7Id9caYw-Y&feature=youtube_gdata_player
TEDxAustin Robyn O'Brien 2011,321523,https://www.youtube.com/watch?v=rixyrCNVVGA&feature=youtube_gdata_player
TEDxPugetSound - Simon Sinek - 9/17/09,209088,https://www.youtube.com/watch?v=u4ZoJKF_VuA&feature=youtube_gdata_player
TEDxPSU - Sam Richards - A Radical Experiment in Empathy,194016,https://www.youtube.com/watch?v=kUEGHdQO7WA&feature=youtube_gdata_player
TEDxRainier - Lesley Hazleton,183533,https://www.youtube.com/watch?v=O7yaDlZfqrc&feature=youtube_gdata_player
TEDxMIA - Scott Rickard - The World's Ugliest Music,175774,https://www.youtube.com/watch?v=RENk9PK06AQ&feature=youtube_gdata_player
TEDxRiodelaPlata-TEDxChange- Magdalena Goyheneix- En este mundo (Spanish),165773,https://www.youtube.com/watch?v=v3BI3WfaQq8&feature=youtube_gdata_player
TEDxSSN - Dr. Pawan Agrawal - Mumbai Dabbawalas,157104,https://www.youtube.com/watch?v=N25inoCea24&feature=youtube_gdata_player
TEDxCasablanca - Faysal Hafidi - 5 qualités qui font échouer à l'école mais réussir dans la vie,153922,https://www.youtube.com/watch?v=9rb5ZCe_n3k&feature=youtube_gdata_player
TEDxNYED - Dan Meyer - 03/06/10,152538,https://www.youtube.com/watch?v=BlvKWEvKSi8&feature=youtube_gdata_player
TEDxCARDIFF: Google Consciousness - Maf Lewis, Rome Viharo,138102,https://www.youtube.com/watch?v=RGF9NbPFfRo&feature=youtube_gdata_player
TEDxSF - Nicole Daedone - Orgasm: The Cure for Hunger in the Western Woman,125007,https://www.youtube.com/watch?v=s9QVq0EM6g4&feature=youtube_gdata_player
TEDxAmsterdam 2011 - Peter van Uhm,121805,https://www.youtube.com/watch?v=gHX5lAslnTc&feature=youtube_gdata_player
TEDxBerlin - Fabian Hemmert - 11/30/09,120879,https://www.youtube.com/watch?v=QCmsvXgxdDY&feature=youtube_gdata_player
TEDxKC - Brené Brown - The Price of Invulnerability,115582,https://www.youtube.com/watch?v=_UoMXF73j0c&feature=youtube_gdata_player
TEDxIowaCity - Dr. Terry Wahls - Minding Your Mitochondria,104530,https://www.youtube.com/watch?v=KLjgBLwH3Wc&feature=youtube_gdata_player
TEDxOrangeCoast - Amy Purdy - Living Beyond Limits,90175,https://www.youtube.com/watch?v=N2QZM7azGoA&feature=youtube_gdata_player
TEDxUSC - Kellee Santiago - 3/23/09,86415,https://www.youtube.com/watch?v=K9y6MYDSAww&feature=youtube_gdata_player
TEDxArabia 2011 | Bader Saleh | Eysh Elly Internet | بدر صالح | إيش اللي إنترنت,86082,https://www.youtube.com/watch?v=ko27XN_5m6M&feature=youtube_gdata_player
TEDxToronto - Neil Pasricha "The 3 A's of Awesome",84097,https://www.youtube.com/watch?v=ajKMkIXN1eg&feature=youtube_gdata_player
TEDxToronto - Boonaa Mohammed "Kill Them With Love",82167,https://www.youtube.com/watch?v=7p189OCWpRU&feature=youtube_gdata_player
TEDxKarachi 2011 - Imran Khan - Never Give up on Your Dreams,76629,https://www.youtube.com/watch?v=Xmbs8ihPrlg&feature=youtube_gdata_player
TEDx Brussels - John Bohannon & Black Label Movement - Dance Your PhD,70689,https://www.youtube.com/watch?v=UlDWRZ7IYqw&feature=youtube_gdata_player
TEDxSydney - Nigel Marsh - Work Life Balance is an Ongoing Battle,69729,https://www.youtube.com/watch?v=SXM7MpoVAD0&feature=youtube_gdata_player
TEDx: As the journey progresses,69608,https://www.youtube.com/watch?v=K3wXI82Y8_0&feature=youtube_gdata_player
TEDxTaipei 2011 - Po-lin Chi (齊柏林),66565,https://www.youtube.com/watch?v=3aYUpzgXSCQ&feature=youtube_gdata_player
TEDxYouthOttawa - Brigette dePape - 03/04/10,65404,https://www.youtube.com/watch?v=pRU5lIus-Zg&feature=youtube_gdata_player
TEDxTokyo - 川口盛之助- 05/15/10 (日本語),63768,https://www.youtube.com/watch?v=O3CnWavAWzc&feature=youtube_gdata_player
TEDxIslay- Keith Nolan- Deaf in the Military [Subtitled],60791,https://www.youtube.com/watch?v=gtKTcPq7XBs&feature=youtube_gdata_player
TEDxCairo - Fadel Soliman - Bread and Salt,58028,https://www.youtube.com/watch?v=yzAVLMdeLoU&feature=youtube_gdata_player
TEDxCairo - Omar Samra - The Long Road To Everest & Beyond,56124,https://www.youtube.com/watch?v=mkA8MNccub0&feature=youtube_gdata_player
TEDxZurich-Marco Tempest-Shows you how a high-tech sorcerer works,55806,https://www.youtube.com/watch?v=ctyyXjCfB50&feature=youtube_gdata_player
TEDxCMU -- Luis von Ahn -- Duolingo: The Next Chapter in Human Computation,55336,https://www.youtube.com/watch?v=cQl6jUjFjp4&feature=youtube_gdata_player
TEDxSantaCruz: Roger McNamee - Disruption and Engagement,53746,https://www.youtube.com/watch?v=aR6jLD1USW0&feature=youtube_gdata_player
TEDxNASA - Dennis Hong - 11/20/09,53064,https://www.youtube.com/watch?v=_gJMv9YtX8I&feature=youtube_gdata_player
TEDxBerlin 11/15/10 - Fabian Hemmert - How can we make mobile communication more emotional,52797,https://www.youtube.com/watch?v=-3NKVnRN7kY&feature=youtube_gdata_player
TEDxRiodelaPlata - Hernán Casciari - Cómo matar al intermediario,52607,https://www.youtube.com/watch?v=_VEYn3bXz34&feature=youtube_gdata_player
TEDxAmericanRiviera - Jay Freeman AKA saurik - Even software should have screws,51005,https://www.youtube.com/watch?v=ReKCp9K_Jqw&feature=youtube_gdata_player
TEDxEast - Sarah Kay-Poetess/Storyteller,50812,https://www.youtube.com/watch?v=7Iv2nZnZOrM&feature=youtube_gdata_player
TEDxBuenosAires - Manu Ginóbili - 04/08/10 (Spanish),50025,https://www.youtube.com/watch?v=QZmwbpclGn0&feature=youtube_gdata_player
TEDxZurich - Marco Tempest - The magic of truth and lies,49593,https://www.youtube.com/watch?v=e_ndlO2SMIQ&feature=youtube_gdata_player
TEDxBoston - Frank Reynolds - Changing the Face of Neuroscience,48506,https://www.youtube.com/watch?v=mtPwGZ4y428&feature=youtube_gdata_player
TEDxEdmonton - Cameron Herold - 3/13/10,48300,https://www.youtube.com/watch?v=dCar_sFfEf4&feature=youtube_gdata_player
TEDxVancouver - Neill Blomkamp - 11/21/09,47918,https://www.youtube.com/watch?v=tripD00-9zU&feature=youtube_gdata_player
TEDxOakville - Scott Stratten - Keep Going Until We Stop,47501,https://www.youtube.com/watch?v=3Cakm2nIQWo&feature=youtube_gdata_player
TEDxCairo - Wael Fakharany - The Discomfort Of Our Comfort Zone,46134,https://www.youtube.com/watch?v=SJ3nlTgL5Ro&feature=youtube_gdata_player
TEDxSeoul-YoungHa Kim-Be an Artist, right now,45846,https://www.youtube.com/watch?v=aja-8sYjNaY&feature=youtube_gdata_player
TEDxRamallah - Khaled Al Sabawi - Keeping Palestine Cool: A Different Kind of Underground Movement,45120,https://www.youtube.com/watch?v=9fD2bMavK8Y&feature=youtube_gdata_player
TEDxNASA - Jamia Simone Nash - 11/20/09,44343,https://www.youtube.com/watch?v=yYL9l0sgIa0&feature=youtube_gdata_player
TEDxPhoenixvilleSalon - John Cassidy - Kindness,44257,https://www.youtube.com/watch?v=rW28i_SBphU&feature=youtube_gdata_player
TEDxDU - Aaron Huey - 5/13/2010,43424,https://www.youtube.com/watch?v=Nv7n5jhrHGQ&feature=youtube_gdata_player
TEDxAcademy - Aristos Doxiadis,43074,https://www.youtube.com/watch?v=6HhNGU08KoE&feature=youtube_gdata_player
TEDxArabia 2011 | Ayman Jamal | Bilal & BatMan | أيمن جمال | بلال وباتمان,42640,https://www.youtube.com/watch?v=sqjPyzRgnfg&feature=youtube_gdata_player
TEDxHouston - Dr. David Eagleman,42485,https://www.youtube.com/watch?v=LENqnjZGX0A&feature=youtube_gdata_player
TEDxYYC - Kirk Sorensen - Thorium,42017,https://www.youtube.com/watch?v=N2vzotsvvkw&feature=youtube_gdata_player
TEDxAcademy - Dimitris Tsoukalas,41783,https://www.youtube.com/watch?v=yraCtUo9N6E&feature=youtube_gdata_player
TEDxBG - Steve Keil - A Play Manifesto,41475,https://www.youtube.com/watch?v=6SZFY47aIog&feature=youtube_gdata_player
TEDxBloomington - Shawn Achor - "The Happiness Advantage: Linking Positive Brains to Performance",40638,https://www.youtube.com/watch?v=GXy__kBVq1M&feature=youtube_gdata_player
TEDxYerevan - Hagop Emrazian - Promoting Learning Within 10 Minutes,39700,https://www.youtube.com/watch?v=iZSHmxeidjc&feature=youtube_gdata_player
TEDx - Ideas Impacting the World - TEDGlobal2011 Presentation,39526,https://www.youtube.com/watch?v=5XQDXAWkxAk&feature=youtube_gdata_player
TEDxUIUC - Daniel Simons - Counter-Intuition,39516,https://www.youtube.com/watch?v=eb4TM19DYDY&feature=youtube_gdata_player
TEDxTelAviv - Hedy Schleifer - The Power of Connection,39127,https://www.youtube.com/watch?v=HEaERAnIqsY&feature=youtube_gdata_player
TEDxBlue - Daniel J. Siegel, MD - 10/18/09,38227,https://www.youtube.com/watch?v=Nu7wEr8AnHw&feature=youtube_gdata_player
TEDxDF - Omar Villalobos - Es posible lo imposible (Spanish),37800,https://www.youtube.com/watch?v=UgYcQUgDBPc&feature=youtube_gdata_player
TEDxBarcelona - Florian Mück - Europa: cómo despertar un espíritu común,37778,https://www.youtube.com/watch?v=XM9CPSHVOT8&feature=youtube_gdata_player
TEDxSingapore - 113 year old Teresa Hsu - Wisdom for all ages,37523,https://www.youtube.com/watch?v=VAv9_IefGxM&feature=youtube_gdata_player
TEDxBuenosAires - Mariano Sigman - 04/08/10,37275,https://www.youtube.com/watch?v=1y8hiuBUnV8&feature=youtube_gdata_player
TEDxVienna - Alexander Oswald - Why Kenyans do it better,36923,https://www.youtube.com/watch?v=D9_6G8J6VJg&feature=youtube_gdata_player
TEDxTokyo - Marco Tempest - 05/15/10 - (English),36428,https://www.youtube.com/watch?v=cvTJzbhX98s&feature=youtube_gdata_player
TEDxJakarta - Barry Likumahuwa - Bass, Passion, and Breakthrough,35892,https://www.youtube.com/watch?v=KTu8IrHK4R0&feature=youtube_gdata_player
TEDxHampshireCollege - Jay Smooth - How I Learned to Stop Worrying and Love Discussing Race,35312,https://www.youtube.com/watch?v=MbdxeFcQtaU&feature=youtube_gdata_player
TEDxSF - Mel Robbins - F--- YOU - How To Stop Screwing Yourself Over,34399,https://www.youtube.com/watch?v=Lp7E973zozc&feature=youtube_gdata_player
TEDxParis 2011 - Pierre Rabhi - Y at-il une vie avant la mort ?,34084,https://www.youtube.com/watch?v=HyNinbbzGuE&feature=youtube_gdata_player
Yasuo SATO [ 佐藤康雄] - TEDxSeeds 2011,33930,https://www.youtube.com/watch?v=DImGwfOrvd8&feature=youtube_gdata_player
TEDxCreativeCoast - Diana Keough - Life Story,33781,https://www.youtube.com/watch?v=wialyRxq7YE&feature=youtube_gdata_player
TEDxNASA - Dr. Sue Morter - 11/20/09,33181,https://www.youtube.com/watch?v=kKqpiS9tjgQ&feature=youtube_gdata_player
TEDxCaltech - Leonard Susskind - Richard Feynman,32881,https://www.youtube.com/watch?v=hpjwotips7E&feature=youtube_gdata_player
TEDxWaterloo - Michael Nielsen - Open Science,32728,https://www.youtube.com/watch?v=DnWocYKqvhw&feature=youtube_gdata_player
TEDxSydney - Rachel Botsman - Collaborative Consumption Author Presents Compelling Case for 21C,32012,https://www.youtube.com/watch?v=zpv6aGTcCl8&feature=youtube_gdata_player
TEDxDirigo - Roger Doiron - A Subversive Plot: How to Grow a Revolution in Your Own Backyard,31551,https://www.youtube.com/watch?v=Ezuz_-eZTMI&feature=youtube_gdata_player
TEDx - One Year and Counting - Presented at TEDGlobal 2010,31280,https://www.youtube.com/watch?v=VyKO0xtkm6w&feature=youtube_gdata_player
TEDxCairo - Bassem Youssef - A "Room" on Youtube !,31244,https://www.youtube.com/watch?v=5O00LHnnpBA&feature=youtube_gdata_player
TEDxCalgary - Naheed Nenshi - Calgary 3.0,31102,https://www.youtube.com/watch?v=qNAMH2_CLfo&feature=youtube_gdata_player
TEDxObserver - Cory Doctorow,30873,https://www.youtube.com/watch?v=RAGjNe1YhMA&feature=youtube_gdata_player
TEDxDirigo - Zoe Weil - The World Becomes What You Teach,30584,https://www.youtube.com/watch?v=t5HEV96dIuY&feature=youtube_gdata_player
TEDxCardiff - Tara Busch - 04/14/10,30468,https://www.youtube.com/watch?v=g-g5CCpYeSM&feature=youtube_gdata_player
TEDxCairo - Fatma Said - The Day When The People Changed !,30453,https://www.youtube.com/watch?v=u0eo9hrkCrA&feature=youtube_gdata_player
TEDxSanJoseCA - Jeff Greason - Rocket Scientist: Making Space Pay and Having Fun Doing It,29983,https://www.youtube.com/watch?v=m8PlzDgFQMM&feature=youtube_gdata_player
TEDxBuenosAires - Jaime Lerner - 04/08/10 (Spanish),29843,https://www.youtube.com/watch?v=lXGY0X-wdjI&feature=youtube_gdata_player
TEDxBuenosAires - Miguel Brechner Frey - 04/08/10 (Spanish),29289,https://www.youtube.com/watch?v=AWOpCDBuhgs&feature=youtube_gdata_player
TEDxCopenhagen - Mikael Colville-Andersen - Why We Shouldn't Bike with a Helmet,27774,https://www.youtube.com/watch?v=07o-TASvIxY&feature=youtube_gdata_player
TEDxTokyo - Ken Mogi - 05/15/10 - (English),27762,https://www.youtube.com/watch?v=7HU05V9HDHo&feature=youtube_gdata_player
TEDxO'Porto - Sandra Fisher-Martins - The right to understand,27744,https://www.youtube.com/watch?v=Tlt47diDnHU&feature=youtube_gdata_player
TEDxTaipei - Janet Hsieh -,27672,https://www.youtube.com/watch?v=4IxNlZChPE0&feature=youtube_gdata_player
TEDxLahore - Saima Zaidi - Reading visual culture in Pakistan,27100,https://www.youtube.com/watch?v=NdeqlPrgdhw&feature=youtube_gdata_player
TEDxBuenosAires - Luis Pescetti - 04/08/10 (Spanish),26474,https://www.youtube.com/watch?v=KTpChP26scI&feature=youtube_gdata_player
TEDxDubai - Bashar Atiyat - 10/10/09 [بالعربية],26353,https://www.youtube.com/watch?v=mTTO43HVFyU&feature=youtube_gdata_player
TEDx Introduction,26275,https://www.youtube.com/watch?v=othM2dwi2bE&feature=youtube_gdata_player
TEDx - Ideas Spreading Everywhere - TED2011 Presentation,26142,https://www.youtube.com/watch?v=xo24PmD9eic&feature=youtube_gdata_player
TEDxParis 2011 - Nicolas Bedos - La semaine de merde du futur,26071,https://www.youtube.com/watch?v=Nmefsd5sT_Y&feature=youtube_gdata_player
TEDxCairo - Zap Tharwat - The Happiness,26031,https://www.youtube.com/watch?v=4Omj0prQPRI&feature=youtube_gdata_player
TEDxMaastricht - Simon Sinek - "First why and then trust",25987,https://www.youtube.com/watch?v=4VdO7LuoBzM&feature=youtube_gdata_player
TEDxBoulder - Grant Blakeman - Minimalism - For a More Full Life,25199,https://www.youtube.com/watch?v=ES_u5b1CAr4&feature=youtube_gdata_player
TEDxLaguna - Cristobal Cobo - Aprendizaje invisible: ¿Cómo aprender a pesar de la escuela?,25115,https://www.youtube.com/watch?v=9E_BH00dkJk&feature=youtube_gdata_player
TEDxBerlin - Bernard Lietaer - 11/30/09,25027,https://www.youtube.com/watch?v=nORI8r3JIyw&feature=youtube_gdata_player
TEDxVancouver - Nardwuar - Do It Yourself!,24876,https://www.youtube.com/watch?v=HkSUazeI2nM&feature=youtube_gdata_player
TEDxCMU -- Charlie Hoehn -- The New Way to Work,24818,https://www.youtube.com/watch?v=e5qUR3tpEdA&feature=youtube_gdata_player
TEDxMumbai - Dhanashree Pandit-Rai - 04/03/10,24804,https://www.youtube.com/watch?v=ZXnV5HzS7nA&feature=youtube_gdata_player
TEDxBuenosAires - Rafael Spregelburd - 04/08/10 (Spanish),24079,https://www.youtube.com/watch?v=8EEZdO0KAGo&feature=youtube_gdata_player
TEDx - Ideas Impacting the World - TEDGlobal 2011 Presentation,23972,https://www.youtube.com/watch?v=WUBjn3Su2QU&feature=youtube_gdata_player
TEDxSeoul - Jaram Lee - 11/28/09,23887,https://www.youtube.com/watch?v=D35qys8YZpo&feature=youtube_gdata_player
TEDxYonsei - Chulmin-Pyo - 01/23/10,23786,https://www.youtube.com/watch?v=5umKyVA0jC0&feature=youtube_gdata_player
TEDxFiDiWomen - Lissa Rankin - The Shocking Truth About Your Health,23739,https://www.youtube.com/watch?v=7tu9nJmr4Xs&feature=youtube_gdata_player
TEDxDubai - Joichi Ito - 10/10/09 [بالعربية],23000,https://www.youtube.com/watch?v=39cVijTd63I&feature=youtube_gdata_player
TEDxManhattanBeach - John Bennett - Why Math Instruction Is Unnecessary,22863,https://www.youtube.com/watch?v=xyowJZxrtbg&feature=youtube_gdata_player
TEDxUSC - Peter Lee Johnson - Electric Violin Performance,22851,https://www.youtube.com/watch?v=XitV7TGn1b4&feature=youtube_gdata_player
TEDxBG - Vladimir Donkov - Wilderness Photographer,22696,https://www.youtube.com/watch?v=Xq-HpT5jh2Q&feature=youtube_gdata_player
TEDxThessaloniki - Paul Lewis - Citizen Journalism,22683,https://www.youtube.com/watch?v=9APO9_yNbcg&feature=youtube_gdata_player
TEDxEast - Nancy Duarte uncovers common structure of greatest communicators 11/11/2010,22631,https://www.youtube.com/watch?v=1nYFpuc2Umk&feature=youtube_gdata_player
TEDxTokyo - Garr Reynolds - Lessons from the Bamboo - [English],22456,https://www.youtube.com/watch?v=9g8T8MsFIp0&feature=youtube_gdata_player
TEDxCairo - Khaled Abol Naga - Changing Egypt: Truly Madly Deeply !,22316,https://www.youtube.com/watch?v=NADVKnb09rI&feature=youtube_gdata_player
TEDxIB@York - Amal Ahmed Albaz - 5 before 5,22054,https://www.youtube.com/watch?v=K5JOzIlGv08&feature=youtube_gdata_player
TEDxNASA - Mike Rayburn - 11/20/09,22008,https://www.youtube.com/watch?v=TcUaMo1DxkY&feature=youtube_gdata_player
TEDxUCLA - Andrew Byrom - If h is a chair,22004,https://www.youtube.com/watch?v=RmhuWNO_VZU&feature=youtube_gdata_player
TEDx: In 7 Months...,21983,https://www.youtube.com/watch?v=zf2F0c9R4Mc&feature=youtube_gdata_player
TEDxBerlin 15/11/10 - Maha Alusi - Moments of Happiness,21956,https://www.youtube.com/watch?v=FeZL7DJLSQs&feature=youtube_gdata_player
TEDxAmsterdamWomen 2011 - Andy Torres - The Key to Successful Blogging,21900,https://www.youtube.com/watch?v=kGBQApX1c_c&feature=youtube_gdata_player
TEDxVienna - Klaus Stadlmann - The world's smallest 3D Printer,21862,https://www.youtube.com/watch?v=D2IQkKE7h9I&feature=youtube_gdata_player
TEDxConejo - Mark Robert Waldman - 03/27/10,21800,https://www.youtube.com/watch?v=yvhCLXEeSDQ&feature=youtube_gdata_player
TEDxParis - Sarah Kaminsky - 01/30/10,21337,https://www.youtube.com/watch?v=aFsgpzxuEU4&feature=youtube_gdata_player
TEDxVienna-Johannes Grenzfurthner-On how to subvert subversion,21248,https://www.youtube.com/watch?v=K2Rvh8VG3o8&feature=youtube_gdata_player
TEDxSSN - Krish Ashok - Disregard Work, Acquire Hobbies,21164,https://www.youtube.com/watch?v=UZnI_A6GSYE&feature=youtube_gdata_player
TEDxKL - Yasmin Ahmad - 6/3/09,21059,https://www.youtube.com/watch?v=0_f_3FiiTYk&feature=youtube_gdata_player
TEDxPalmaCeia - Mark Katz - Commissions,20943,https://www.youtube.com/watch?v=0hcaL4EF1Xs&feature=youtube_gdata_player
TEDxCaltech - Lyle Mays and Friends,20508,https://www.youtube.com/watch?v=x8UoV0xBsVI&feature=youtube_gdata_player
TEDxSinCity - Bruce Muzik - The BIG Secret Nobody Wants To Tell,20460,https://www.youtube.com/watch?v=lkbWIfP3mLw&feature=youtube_gdata_player
TEDxProacademy - Jaakko Halmetoja,20070,https://www.youtube.com/watch?v=EcVXxTFdygk&feature=youtube_gdata_player
TEDxDoha - Ahmed Ahmed - When it Comes to Laughter, We Are All Alike,20030,https://www.youtube.com/watch?v=Iu81NDXNaNM&feature=youtube_gdata_player
TEDxCaltech - Scott Aaronson - Physics in the 21st Century: Toiling in Feynman's Shadow,19742,https://www.youtube.com/watch?v=SczraSQE3MY&feature=youtube_gdata_player
TEDxTokyo - Gunter Pauli - 5/22/09,19710,https://www.youtube.com/watch?v=UQBp6z4j704&feature=youtube_gdata_player
TEDxCairo - Shereef Abd El Azeem - Volunteerism,19506,https://www.youtube.com/watch?v=RvFBBc7iRWg&feature=youtube_gdata_player
TEDxCMU - Jonathan Fields - Turning Fear Into Fuel,19272,https://www.youtube.com/watch?v=pkFRwhJEOos&feature=youtube_gdata_player
TEDxMidAtlantic - Joel Salatin - 11/5/09,19207,https://www.youtube.com/watch?v=-T9UaP1AsMI&feature=youtube_gdata_player
TEDxAcademy - Stelios Ramfos,19192,https://www.youtube.com/watch?v=5dMWx0AQ_sU&feature=youtube_gdata_player
TEDxReset - Erdil Yasaroglu - Espri Yolu - Journey of Jokes,19115,https://www.youtube.com/watch?v=mS0SDmud32w&feature=youtube_gdata_player
TEDxBlue - Angela Lee Duckworth, Ph.D - 10/18/09,19086,https://www.youtube.com/watch?v=qaeFnxSfSC4&feature=youtube_gdata_player
TEDxYYC - David Damberger - Learning from Failure,19005,https://www.youtube.com/watch?v=HGiHU-agsGY&feature=youtube_gdata_player
TEDxValencia - Carlos González - Alimentación Infantil Libre de Papillas,18784,https://www.youtube.com/watch?v=vKioOmhIfGU&feature=youtube_gdata_player
TEDxSydney - Daniel Johns & Josh Wakely - My Mind's Own Melody,18778,https://www.youtube.com/watch?v=W-tc1vyoeBc&feature=youtube_gdata_player
TEDxAddis- Israel Belema -Engineer and Inventor,18625,https://www.youtube.com/watch?v=jMp0GqeD5e0&feature=youtube_gdata_player
TEDxJuanDeFuca - Taylor Conroy - How to Build a School in 3 Hours,18495,https://www.youtube.com/watch?v=aC02SmuOxYI&feature=youtube_gdata_player
TEDxToronto - Drew Dudley "Leading with Lollipops",18161,https://www.youtube.com/watch?v=hVCBrkrFrBE&feature=youtube_gdata_player
TEDxParis - Vinvin - 01/30/10,18126,https://www.youtube.com/watch?v=xdROsuWCz7w&feature=youtube_gdata_player
TEDxNYED - Jeff Jarvis - 03/06/10,17957,https://www.youtube.com/watch?v=rTOLkm5hNNU&feature=youtube_gdata_player
TEDxCairo - Rana El Kaliouby - Improving Lives With Emotionally Intelligent Technology,17851,https://www.youtube.com/watch?v=Y9oVNP9zeEM&feature=youtube_gdata_player
TEDxTokyo - 茂木健一郎- 05/15/10 - (日本語),17695,https://www.youtube.com/watch?v=5CcA-ucHKQg&feature=youtube_gdata_player
TEDxSF - Nate Quarry - 4/27/10 - Fighting Back,17474,https://www.youtube.com/watch?v=kjYX4iKgT7E&feature=youtube_gdata_player
TEDxPSU - Bruce Schneier - Reconceptualizing Security,17425,https://www.youtube.com/watch?v=CGd_M_CpeDI&feature=youtube_gdata_player
TEDxCaltech - Sean Carroll - Cosmology and the Arrow of Time,17173,https://www.youtube.com/watch?v=WMaTyg8wR4Y&feature=youtube_gdata_player
TEDxBuenosAires - Inés Sanguinetti - 04/08/10,17146,https://www.youtube.com/watch?v=6yOlfdXnovg&feature=youtube_gdata_player
TEDxBuenosAires - Bea Pellizzari - 04/08/10 (Spanish),16993,https://www.youtube.com/watch?v=lBS4T3NfZbM&feature=youtube_gdata_player
TEDxTokyo -ジェイク・シマブクロ - 05/15/10 - (日本語),16974,https://www.youtube.com/watch?v=f_wlEtlsuxg&feature=youtube_gdata_player
TEDxSeoul - Dr. Kim and Jung - 11/28/09,16947,https://www.youtube.com/watch?v=un4qbATrmx8&feature=youtube_gdata_player
TEDxCMU - Chris Guillebeau - Fear and Permission,16867,https://www.youtube.com/watch?v=unxL5RRhNb0&feature=youtube_gdata_player
TEDxUIUC - Daniel Simons - Seeing The World As It Isn't,16781,https://www.youtube.com/watch?v=9Il_D3Xt9W0&feature=youtube_gdata_player
TEDxTokyo - Renée Byer - 5/22/09,16758,https://www.youtube.com/watch?v=Z3CDOS4GNdQ&feature=youtube_gdata_player
TEDxBrooklyn- Callie Curry aka Swoon,16622,https://www.youtube.com/watch?v=5298KZuW_JE&feature=youtube_gdata_player
TEDxVancouver - Nazanin Afshin-Jam - Voice for the Voiceless,16545,https://www.youtube.com/watch?v=soqtTCeczbM&feature=youtube_gdata_player
TEDxBucharest - Oana Pellea,16348,https://www.youtube.com/watch?v=OZdFErDoU3U&feature=youtube_gdata_player
TEDxVancouver - Jeet Kei Leung - Transformational Festivals,16335,https://www.youtube.com/watch?v=Q8tDpQp6m0A&feature=youtube_gdata_player
TEDxHouston 2011 - Wade Adams - Nanotechnology and Energy,16270,https://www.youtube.com/watch?v=1GFst2IQBEM&feature=youtube_gdata_player
TEDxSF - Grow a New Eye,16153,https://www.youtube.com/watch?v=T-ldzLSFxds&feature=youtube_gdata_player
TEDxPSU - Michael Mann - A Look Into Our Climate: Past To Present To Future,15894,https://www.youtube.com/watch?v=ElI-XVGHCHs&feature=youtube_gdata_player
TEDxObserver - René Redzepi,15830,https://www.youtube.com/watch?v=1KkWF5E0Wlg&feature=youtube_gdata_player
TEDxUIUC - Sherry Turkle - Alone Together,15711,https://www.youtube.com/watch?v=MtLVCpZIiNs&feature=youtube_gdata_player
TEDxCopenhagen - Kristian von Bengtson - Danes in space,15617,https://www.youtube.com/watch?v=ua9oGxNNGd0&feature=youtube_gdata_player
TEDxParis - Guy-Philippe Goldstein - 01/30/10,15579,https://www.youtube.com/watch?v=ODnt89o7hwU&feature=youtube_gdata_player
TEDxAtlanta - Sally Hogshead - How to Fascinate,15426,https://www.youtube.com/watch?v=nG0WiP5ux1Q&feature=youtube_gdata_player
TEDxRheinNeckar - Gunter Dueck - Bildung und Mensch im digitalen Zeitalter,15377,https://www.youtube.com/watch?v=Optk-gYgFo8&feature=youtube_gdata_player
TEDxBuenosAires - Luis Moreno Ocampo - 04/08/10,15372,https://www.youtube.com/watch?v=-H8iLYdn21Y&feature=youtube_gdata_player
TEDxBuenosAires - Alberto Kornblihtt - 04/08/10 (Spanish),15351,https://www.youtube.com/watch?v=fnG4I3hBJKY&feature=youtube_gdata_player
Highlights from TEDx 2009 Events,15285,https://www.youtube.com/watch?v=GXEbqKaFf6A&feature=youtube_gdata_player
TEDxIslay - Wayne Betts Jr - Deaf Lens,15259,https://www.youtube.com/watch?v=ocbyS9-3jjM&feature=youtube_gdata_player
TEDxLahore - Mudassir Zia - Vision to do, dare and dream,15242,https://www.youtube.com/watch?v=AHSm8sIopKw&feature=youtube_gdata_player
TEDxBOULDER - Leslie Dodson - Researching Or Reporting: Revelations From The Field,15224,https://www.youtube.com/watch?v=YuYyq_7KhjA&feature=youtube_gdata_player
TEDxManhattanBeach - Haley Rushing - Purpose Driven Revitalization,15219,https://www.youtube.com/watch?v=6ogzQeg5uRk&feature=youtube_gdata_player
TEDxKC - Michael Wesch - From Knowledgeable to Knowledge-Able,15149,https://www.youtube.com/watch?v=LeaAHv4UTI8&feature=youtube_gdata_player
TEDxKrakow - Srdja Popovic - A bad year for bad guys,14976,https://www.youtube.com/watch?v=Z3Cd-oEvEog&feature=youtube_gdata_player
TEDxTaipei - Feng-Yi Sheu - Dare to be Different. ( 許芳宜- 不怕和世界不一樣 ),14957,https://www.youtube.com/watch?v=B5NWJsst_2o&feature=youtube_gdata_player
TEDxEastHampton - Joel Hoffman - Interpreting Language,14885,https://www.youtube.com/watch?v=ek_q0qvfBqE&feature=youtube_gdata_player
TEDxArabia - 2 Dec 2010 - Introduction interviews - What Is Innovation ?,14834,https://www.youtube.com/watch?v=0Ciy8sSn4fo&feature=youtube_gdata_player
TEDxPennQuarter - David Armano - Reinventing Social Media,14727,https://www.youtube.com/watch?v=onaapqbCXQ8&feature=youtube_gdata_player
TEDxToronto - Dave Meslin "Redefining Apathy",14693,https://www.youtube.com/watch?v=LuHNVYW4tW0&feature=youtube_gdata_player
TEDxParis 2011 - Jacky Dupéty - Le bois raméal fragmenté, une lecture naturelle du vivant,14662,https://www.youtube.com/watch?v=qSRIX8zLy64&feature=youtube_gdata_player
TEDxPennQuarter - Christopher McDougall,14616,https://www.youtube.com/watch?v=w3XTHevPXDY&feature=youtube_gdata_player
TEDxConcordia - Yan Ohayon - The Impact of Algorithmic Trading,14532,https://www.youtube.com/watch?v=4dEzNMx94s0&feature=youtube_gdata_player
TEDxTokyo - Rome Kanda - 05/15/10 - (English),14410,https://www.youtube.com/watch?v=LRBdMhVG_Co&feature=youtube_gdata_player
TEDxNYED - Alan November - 03/05/2011,14393,https://www.youtube.com/watch?v=ebJHzpEy4bE&feature=youtube_gdata_player
TEDxBerlin - Raul Krauthausen- Wheelmap.org,14181,https://www.youtube.com/watch?v=I13yL8ygwhk&feature=youtube_gdata_player
TEDxTokyo - Dr. Yoshiyuki Sankai - 05/10/15 - English,14126,https://www.youtube.com/watch?v=bGgTK8IDVjA&feature=youtube_gdata_player
TEDxSeoul-Geon Hyeok Go-Sustainable DoReMi,14121,https://www.youtube.com/watch?v=aWPB0xeM8UA&feature=youtube_gdata_player
TEDxMidAtlantic - Roland Griffiths - 11/5/09,14076,https://www.youtube.com/watch?v=LKm_mnbN9JY&feature=youtube_gdata_player
TEDxAmsterdam - Wim Hof - 11/30/10,13969,https://www.youtube.com/watch?v=L9Cgaa8U4eY&feature=youtube_gdata_player
TEDxBoston - Benjamin Zander and the YOA - 7/28/09,13873,https://www.youtube.com/watch?v=wGWzmst0R7E&feature=youtube_gdata_player
TEDxSFED - George Watsky,13838,https://www.youtube.com/watch?v=cUZunf6mV_8&feature=youtube_gdata_player
TEDxUbud - Tah Riq Amawi - Taking a Leap: From Desktop to Rooftop,13734,https://www.youtube.com/watch?v=ir3m6y7JXF0&feature=youtube_gdata_player
TEDxCairo - Sahar El Mougy - About The Magic That Is Still Out There,13650,https://www.youtube.com/watch?v=6pIDlY2CkQ8&feature=youtube_gdata_player
TEDxKarachi - Asad Rezzvi - Motivating People into Action,13609,https://www.youtube.com/watch?v=bjoWSx5QeK8&feature=youtube_gdata_player
TEDxFiDiWomen - Gabrielle Bernstein - How To Be A Miracle Worker,13562,https://www.youtube.com/watch?v=TT6qWghHkFI&feature=youtube_gdata_player
TEDxJakarta - Ridwan Kamil - Creativity and Design for Social Change in Cities,13478,https://www.youtube.com/watch?v=hDw_Tq1anKU&feature=youtube_gdata_player
TEDxWoodsHole - Dan Ariely - Temptations and Self-Control,13444,https://www.youtube.com/watch?v=xX-iXR_0uEU&feature=youtube_gdata_player
TEDxNYED - Will Richardson - 03/05/2011,13413,https://www.youtube.com/watch?v=Ni75vIE4vdk&feature=youtube_gdata_player
TEDxAmazonia - Zé Cláudio Ribeiro | He believes that killing trees is murder - Nov.2011,13334,https://www.youtube.com/watch?v=XO2pwnrji8I&feature=youtube_gdata_player
TEDxTC - Peter Benson - Sparks: How Youth Thrive.,13122,https://www.youtube.com/watch?v=TqzUHcW58Us&feature=youtube_gdata_player
TEDxLahore - Zubair Bhatti - The incredible "Jhang model" of governance,13117,https://www.youtube.com/watch?v=ZiB5-JGNArM&feature=youtube_gdata_player
TEDxDubai - Jamil Abu Wardeh - 10/10/09 [بالعربية],13104,https://www.youtube.com/watch?v=7uPLJIGOXEw&feature=youtube_gdata_player
TEDxTokyo - Hiroshi Ishii - The Last Farewell - [English],13051,https://www.youtube.com/watch?v=jSMSjaZy5hY&feature=youtube_gdata_player
TEDxLjubljana - Aleksander Zadel - In odgovoren je ...,13009,https://www.youtube.com/watch?v=ZbIP5wflxSo&feature=youtube_gdata_player
TEDxSudeste - Rodrigo Pimentel - Segurança pública tem saída,12972,https://www.youtube.com/watch?v=8xyyD-b9awE&feature=youtube_gdata_player
TEDxManhattan - Ken Cook - Turning the Farm Bill into the Food Bill,12947,https://www.youtube.com/watch?v=Z6T37m4r3yo&feature=youtube_gdata_player
TEDxNYED - Lawrence Lessig - 03/06/10,12881,https://www.youtube.com/watch?v=FhTUzNKpfio&feature=youtube_gdata_player
TEDxLisboa - Natalia Juskiewicz - Um Violino no Fado,12854,https://www.youtube.com/watch?v=xjzVM7e5bYc&feature=youtube_gdata_player
TEDxAustin - Ruby Jane Smith - 02/20/10,12702,https://www.youtube.com/watch?v=fBYQeOlv0Dc&feature=youtube_gdata_player
TEDxMaastricht - Tim Hurson - "The shock of the possible",12674,https://www.youtube.com/watch?v=62PgFb2cXSg&feature=youtube_gdata_player
TEDxTaipei 2011 - Ming-cheng Huang (黃明正),12581,https://www.youtube.com/watch?v=LkojZhupzWA&feature=youtube_gdata_player
TEDxAthens - Kostas Grammatis - A Human Right,12376,https://www.youtube.com/watch?v=ZT3NBbD_ml8&feature=youtube_gdata_player
TEDxBoston - George Whitesides - 7/28/09,12371,https://www.youtube.com/watch?v=mYE3XZUjxnw&feature=youtube_gdata_player
TEDxDubai - Khulood Al Atiyat - 10/10/09 [بالعربية],12356,https://www.youtube.com/watch?v=XguYjD0jfMw&feature=youtube_gdata_player
TEDxParis 2011 - Jean-François Noubel - Après l'argent,12292,https://www.youtube.com/watch?v=PuZgkL5BEBk&feature=youtube_gdata_player
TEDxObserver - Cédric Villani,12287,https://www.youtube.com/watch?v=U3kKjGKp9rA&feature=youtube_gdata_player
TEDxDanubia 2011 - Herman Gábor - GMT+2,12256,https://www.youtube.com/watch?v=ZLyPhexkO3w&feature=youtube_gdata_player
TEDxParis - Joël de Rosnay - 01/30/10,12241,https://www.youtube.com/watch?v=oIixUDub1CM&feature=youtube_gdata_player
TEDxSRM - Rahul K Easwar - India is My Religion,12237,https://www.youtube.com/watch?v=0vaDUOWqEAw&feature=youtube_gdata_player
TEDxRosario - Estanislao Bachrach - Como se nos ocurren las ideas,12027,https://www.youtube.com/watch?v=21rwo342nqY&feature=youtube_gdata_player
TEDxSydney - Missy Higgins - Melbourne Singer Songwriter Charms with 3 Great Songs,12006,https://www.youtube.com/watch?v=lh4y_HiKqhM&feature=youtube_gdata_player
TEDxGrassValley - Chameli Ardagh - The Fierce face of the Feminine,12005,https://www.youtube.com/watch?v=dcDCXzX_HQA&feature=youtube_gdata_player
TEDxRamallah Munir Fasheh منير فاشه Occupation of knowledge الاحتلال المعرفي,11958,https://www.youtube.com/watch?v=D0MVsJhTdSQ&feature=youtube_gdata_player
TEDxCaltech - Stephen Hawking, John Preskill, Rives, Kip Thorne - Finding Things Out,11930,https://www.youtube.com/watch?v=UzMQpZe-j4M&feature=youtube_gdata_player
TEDxSeoul - Soohwan Goo - A Life of love,11880,https://www.youtube.com/watch?v=G3mz9eWN-II&feature=youtube_gdata_player
TEDxKwangwoon - 황성재 - My life & To be the Only One - 03/27/10 - Korean Subtitle,11841,https://www.youtube.com/watch?v=sp1MA8jpNe8&feature=youtube_gdata_player
TEDxDubai - Leo Laporte - 10/10/09 [بالعربية],11837,https://www.youtube.com/watch?v=oR7r2ZpxBDQ&feature=youtube_gdata_player
TEDxBuenosAires - Marcos Salt - 04/08/10,11823,https://www.youtube.com/watch?v=7xzbi9DHT9M&feature=youtube_gdata_player
TEDxSudeste - Andre Trigueiro - Repensar o Consumo,11812,https://www.youtube.com/watch?v=_t223swPVlA&feature=youtube_gdata_player
TEDxSacramento - Scott Brusaw - The Promise of Solar Roadways,11805,https://www.youtube.com/watch?v=nvWTaqUvsfA&feature=youtube_gdata_player
TEDxCairo - Ibrahim Karim - Why Is The Cow Smiling?!,11747,https://www.youtube.com/watch?v=cztTPdJKa34&feature=youtube_gdata_player
TEDxVancouver - Jack Horner - The Shape-Shifting Skulls of Dinosaurs,11674,https://www.youtube.com/watch?v=xYbMXzBwpIo&feature=youtube_gdata_player
TEDxDubai - Ian Gilbert - 10/10/09 [بالعربية],11643,https://www.youtube.com/watch?v=Cno-5aNyWU4&feature=youtube_gdata_player
TEDxSydney - Mr.Percival - Darren Percival's Vocal Artistry Has the Audience Enthralled,11482,https://www.youtube.com/watch?v=Lu-8AQTcY54&feature=youtube_gdata_player
TEDxEast - Bjarke Ingels - Hedonistic Sustainability,11461,https://www.youtube.com/watch?v=ogXT_CI7KRU&feature=youtube_gdata_player
TEDxLahore - Zeeshan Usmani - Countering terror with technology,11455,https://www.youtube.com/watch?v=rLng7tBXa1U&feature=youtube_gdata_player
TedxNashville - Jeremy Cowart - A Picture is Worth,11451,https://www.youtube.com/watch?v=79fSnhm8IIc&feature=youtube_gdata_player
TEDxUSP - Marcelo Tas - Da USP ao CQC,11403,https://www.youtube.com/watch?v=J3V-IMEFm1c&feature=youtube_gdata_player
TEDxTokyo -Black - A Yo-Yo Story - [English],11368,https://www.youtube.com/watch?v=as_UuzbcGGQ&feature=youtube_gdata_player
TEDxThessaloniki - Onic V. Palandjian - My passport to εὐδαιμονία (happiness +),11232,https://www.youtube.com/watch?v=CJ8siGPPHoI&feature=youtube_gdata_player
TEDxCaltech - Michelle Feynman and Christopher Sykes - Fun to Imagine,11224,https://www.youtube.com/watch?v=dQai9QikTBI&feature=youtube_gdata_player
TEDxParis - Miguel Benasayag - 01/30/10,11147,https://www.youtube.com/watch?v=w6S1nm2cKIY&feature=youtube_gdata_player
TEDxSeoul-Myung-Sook Seo-Jeju Olleh,11101,https://www.youtube.com/watch?v=lGU_mqIdCAE&feature=youtube_gdata_player
TEDxRamallah - Julia Bacha - One Story, One Film, Many Changes.,11042,https://www.youtube.com/watch?v=d40Aht_9cxY&feature=youtube_gdata_player
TEDxConejo - Reza Aslan - Unity in Diversity,11040,https://www.youtube.com/watch?v=VgLAzwgizdk&feature=youtube_gdata_player
TEDxUSP - Agnaldo Farias - Entre Homero e Platão,10988,https://www.youtube.com/watch?v=JQcfrgU_kqY&feature=youtube_gdata_player
TEDxAmericanRiviera - Chris Orwig - The poetics of pictures,10930,https://www.youtube.com/watch?v=rsUXSRuV61o&feature=youtube_gdata_player
TEDxTransmedia 2011 - Jem Bendell - The Money Myth,10928,https://www.youtube.com/watch?v=X5uGLbV5zVo&feature=youtube_gdata_player
TEDxMumbai - Lakshmi Tripathi - 04/03/10,10920,https://www.youtube.com/watch?v=dhQTBRQlapw&feature=youtube_gdata_player
TEDxBerkeley - Fred Dust - 04/03/10,10876,https://www.youtube.com/watch?v=YC9l2xBRWo0&feature=youtube_gdata_player
TEDxMonterey - Lee Lorenzen - Rock Candy Revolution,10838,https://www.youtube.com/watch?v=jFrPp8r_Lm4&feature=youtube_gdata_player
TEDxParis - Soro Solo - 01/30/10,10815,https://www.youtube.com/watch?v=gRoJuLHmYBQ&feature=youtube_gdata_player
TEDxCaltech - Danny Hillis - Reminiscing about Richard Feynman,10718,https://www.youtube.com/watch?v=8CKW4A6jnJA&feature=youtube_gdata_player
TEDxPuraVida - Michael Rojkind - Riesgo de Contagio (Spanish),10687,https://www.youtube.com/watch?v=YKJu2B9qcGg&feature=youtube_gdata_player
TEDxTokyo - Morinosuke Kawaguchi - 05/15/10 (English),10687,https://www.youtube.com/watch?v=GTguf8ZlAyc&feature=youtube_gdata_player
TEDxSHEFFIELD - TOM SCOTT - Looking at social media in a very different way,10601,https://www.youtube.com/watch?v=JE3azAS2e9k&feature=youtube_gdata_player
TEDxCMU -- Jacob Cass -- Building a Personal Brand,10507,https://www.youtube.com/watch?v=qeHtvuTcy70&feature=youtube_gdata_player
TEDxPugetSound - David Whyte - Life at the Frontier: The Conversational Nature of Reality,10472,https://www.youtube.com/watch?v=5Ss1HuA1hIk&feature=youtube_gdata_player
TEDxKarachi - Asad Umar - Re-energizing Pakistans Energy Crisis with Thar Coal,10468,https://www.youtube.com/watch?v=-4wnHtM-y7M&feature=youtube_gdata_player
TEDxConcordiaUPortland - Jefferson Smith - Priceless politics: The secret to making democracy work,10443,https://www.youtube.com/watch?v=kYIpDmuMFpw&feature=youtube_gdata_player
TEDxTokyo -Tetsuya Mizuguchi - Positive Power of Games - [English],10432,https://www.youtube.com/watch?v=79iXviZEWow&feature=youtube_gdata_player
TEDxParis - Fabrice Grinda - 01/30/10,10420,https://www.youtube.com/watch?v=BJK3_vpfoQc&feature=youtube_gdata_player
TEDxBuenosAires - Matías Zaldarriaga - 04/08/10,10378,https://www.youtube.com/watch?v=fPk9WKllCbE&feature=youtube_gdata_player
TEDxNYED - Heidi Hayes Jacobs - 03/05/2011,10363,https://www.youtube.com/watch?v=XsUgj9_ltN8&feature=youtube_gdata_player
TEDxSF - Jaron Lanier - You Are Not a Gadget,10358,https://www.youtube.com/watch?v=IwbGumZ-FYg&feature=youtube_gdata_player
TEDxCaltech - Jordan Theriot - The Pleasure of Finding Things Out,10331,https://www.youtube.com/watch?v=abXzg3QPp_Y&feature=youtube_gdata_player
TEDxSantaCruz: Kyle Thiermann - Surfing For Change,10311,https://www.youtube.com/watch?v=EQIt2JUF-sg&feature=youtube_gdata_player
TEDxKarachi 2011 - Raja Sabri Khan - Building Drones in Pakistan,10297,https://www.youtube.com/watch?v=v__tRUfKAek&feature=youtube_gdata_player
TEDxMaastricht - Bas Bloem - "From God to Guide",10287,https://www.youtube.com/watch?v=LnDWt10Maf8&feature=youtube_gdata_player
TEDxBOULDER - Phil Plait - An Asteroid Impact Can Ruin Your Whole Day. And Your Species,10275,https://www.youtube.com/watch?v=OM4tL6AM_bo&feature=youtube_gdata_player
TEDxNYED - Chris Lehmann - 03/06/10,10251,https://www.youtube.com/watch?v=6FEMCyHYTyQ&feature=youtube_gdata_player
TEDxBoston - Lynwood Walker - Digital Fabrication of Homes,10216,https://www.youtube.com/watch?v=bws0oU1zKzk&feature=youtube_gdata_player
TEDxMidAtlantic 2009 - Ana Vidovic,10198,https://www.youtube.com/watch?v=2qER4268y84&feature=youtube_gdata_player
TEDxBuenosAires - Gabriel Gellon - 04/08/10 (Spanish),10168,https://www.youtube.com/watch?v=oLfO34LmEJg&feature=youtube_gdata_player
TEDxDubai - Mohammed Gawdat - 10/10/09 [بالعربية],10146,https://www.youtube.com/watch?v=Zlaq2acFCVM&feature=youtube_gdata_player
TEDxParis 2011 : Bernard Werber - L'arbre des possibles,10136,https://www.youtube.com/watch?v=8M-dpdeg6hQ&feature=youtube_gdata_player
TEDxMileHigh - Robyn O'Brien - Patriotism on a Plate,10101,https://www.youtube.com/watch?v=fWXrRftyOMY&feature=youtube_gdata_player
TEDxRaleigh- Fred Lybrand- Making Textiles Sexy,10074,https://www.youtube.com/watch?v=CaY0g-TKGY8&feature=youtube_gdata_player
TEDxMidAtlantic - Marcus Ranum - 11/5/09,10066,https://www.youtube.com/watch?v=o59mQhBiUo4&feature=youtube_gdata_player
TEDxAlamo - David Eagleman, PhD - 10/29/09,10023,https://www.youtube.com/watch?v=wpSBdA0Dc14&feature=youtube_gdata_player
TEDxTC - William Gurstelle - The Art of Living Dangerously,9946,https://www.youtube.com/watch?v=YC8gY0ZiwLg&feature=youtube_gdata_player
TEDxNextGenerationAsheville - Estella Cumberford - "Walking A Mile In My Shoes",9944,https://www.youtube.com/watch?v=XCtKdsI-GlU&feature=youtube_gdata_player
TEDxDF - Gaby Vargas - ¿Qué es el verdadero bienestar?,9933,https://www.youtube.com/watch?v=lrjSM53L15E&feature=youtube_gdata_player
TEDxAtlanta - India.Arie & Idan Raichel - Open Door,9919,https://www.youtube.com/watch?v=zWbj3Q6sEMw&feature=youtube_gdata_player
TEDxCairo - Ibrahim El Batout - Finding Plenty In Nothingness,9850,https://www.youtube.com/watch?v=t3eeHo18fVE&feature=youtube_gdata_player
TEDxBrussels - Jacques Vallée - A Theory of Everything (else)...,9827,https://www.youtube.com/watch?v=S9pR0gfil_0&feature=youtube_gdata_player
TEDxParis 2011 - Etienne Klein - Peut-on penser l'origine de l'Univers ?,9734,https://www.youtube.com/watch?v=ljBrtM6VoKA&feature=youtube_gdata_player
TEDxTokyo - Dr. Hiroshi Tasaka - 05/15/10 - (English),9676,https://www.youtube.com/watch?v=YBW2b6r9ryo&feature=youtube_gdata_player
TEDxPhilly - Chris Lehmann - Education is broken,9650,https://www.youtube.com/watch?v=tS2IPfWZQM4&feature=youtube_gdata_player
TEDxPrague - Tomáš Hajzler - Konečně v penzi. Už můžu dělat, co mě baví.,9640,https://www.youtube.com/watch?v=CaEA91_dl7Q&feature=youtube_gdata_player
TEDxRheinMain - Prof. Dr. Thomas Metzinger - The Ego Tunnel,9635,https://www.youtube.com/watch?v=ZFjY1fAcESs&feature=youtube_gdata_player
TEDxSMU - Baba Brinkman - Rap Guide to Evolution,9623,https://www.youtube.com/watch?v=DB_kVIoovJI&feature=youtube_gdata_player
TEDxNYED - Mike Wesch - 03/06/10,9616,https://www.youtube.com/watch?v=DwyCAtyNYHw&feature=youtube_gdata_player
TEDxSeoul - Hyesin Jeong - We all need a mother,9596,https://www.youtube.com/watch?v=W_yDzIOPD0s&feature=youtube_gdata_player
TEDxAcademy - Elektra Koutra - 08/12/2010,9586,https://www.youtube.com/watch?v=lfsKfK4jHEs&feature=youtube_gdata_player
TEDxAlbany - Casey & Corey Wright - Winning With One Hand Behind Your Back,9582,https://www.youtube.com/watch?v=AHMg-sogCbc&feature=youtube_gdata_player
TEDxBoulder - Thad Roberts - Visualizing Eleven Dimensions,9570,https://www.youtube.com/watch?v=aSz5BjExs9o&feature=youtube_gdata_player
TEDxAmsterdam - Karsu Donmez - 11/20/09,9545,https://www.youtube.com/watch?v=8gHrmiBoJnM&feature=youtube_gdata_player
TEDxToronto - D'bi Young - 9/10/09,9540,https://www.youtube.com/watch?v=16_YaQMu20o&feature=youtube_gdata_player
TedxVienna - Table Connect - A Dream Come Touch,9538,https://www.youtube.com/watch?v=POJhLQwzV5A&feature=youtube_gdata_player
TedxVienna - Leyla Haidarian - Beyond King of the Mountain,9535,https://www.youtube.com/watch?v=XlNE9s9oGNI&feature=youtube_gdata_player
TEDxTC - Jonathan Foley - The Other Inconvenient Truth,9471,https://www.youtube.com/watch?v=uJhgGbRA6Hk&feature=youtube_gdata_player
TEDxOrangeCoast - Daniel Amen - Change Your Brain, Change Your Life,9440,https://www.youtube.com/watch?v=MLKj1puoWCg&feature=youtube_gdata_player
TEDxLisboa - João Nogueira dos Santos - "Adesão massiva aos partidos políticos...",9407,https://www.youtube.com/watch?v=6KOcrfmRHPQ&feature=youtube_gdata_player
Jun Watanabe 渡辺淳- TEDxSeeds 2010,9319,https://www.youtube.com/watch?v=sGbFH5Sr4xw&feature=youtube_gdata_player
TEDxNYED - Henry Jenkins - 03/06/10,9279,https://www.youtube.com/watch?v=AFCLKa0XRlw&feature=youtube_gdata_player
TEDxWarwick - Charlie Price - Aquaponics - Getting More out of Less,9259,https://www.youtube.com/watch?v=7nIL9hWW3-Q&feature=youtube_gdata_player
TEDxAmsterdam - Wubbo Ockels - 11/20/09,9224,https://www.youtube.com/watch?v=eaV-GeAPSlE&feature=youtube_gdata_player
TEDxMontevideo - Maximiliano de Muro - Emprendedores uruguayos en el exterior,9183,https://www.youtube.com/watch?v=ckZEBTBJb3Y&feature=youtube_gdata_player
TEDxShekhavati - Bhawri Devi & Mishri Devi - The Illiterate Entrepreneurs,9181,https://www.youtube.com/watch?v=XgRaDtNv3wg&feature=youtube_gdata_player
TEDxIslay - Marvin Miller - Building an ASL Community,9156,https://www.youtube.com/watch?v=WAmnGqjSB4M&feature=youtube_gdata_player
TEDxBuenosAires - Marcelo Moguilevsky - 04/08/10,9122,https://www.youtube.com/watch?v=9S2s9g5iMVQ&feature=youtube_gdata_player
TEDxMIA - Brad Meltzer - How To Write Your Own Obituary,9100,https://www.youtube.com/watch?v=zgiixRwn6xU&feature=youtube_gdata_player
TEDxSudeste - Pedro Franceschi - Curiosidade, pouca idade e vontade que vencem barreiras,9083,https://www.youtube.com/watch?v=sh9C6NeNvGI&feature=youtube_gdata_player
TEDxPuraVida - Hernán Jiménez - La señal de vaca en nuestra red vial,9066,https://www.youtube.com/watch?v=G0V-USUmw3c&feature=youtube_gdata_player
TEDxTaipei - Shiuan (Xuan) Liu - Music: NEW Applause ( 劉軒- 新滿堂采 ),9057,https://www.youtube.com/watch?v=UEGL_ytmRI8&feature=youtube_gdata_player
TEDxParis 2011 - Etienne Parizot - Voir en 4D,9039,https://www.youtube.com/watch?v=z3kH8P_j1dA&feature=youtube_gdata_player
TEDxEast - Tyler Cowen - The Great Stagnation,9036,https://www.youtube.com/watch?v=_93CXTt2K7c&feature=youtube_gdata_player
TEDxGreenville - Max Strom - There is No App for Happiness,9003,https://www.youtube.com/watch?v=YMAyVdOOgQ8&feature=youtube_gdata_player
TEDxRheinNeckar - Vera F Birkenbihl - Warum Unterricht an deutschen Schulen nicht funktionieren KANN,8971,https://www.youtube.com/watch?v=RYd2nMXhLbA&feature=youtube_gdata_player
TEDxDesMoines - Angela Maiers - You Matter,8929,https://www.youtube.com/watch?v=7FHdHUzRnms&feature=youtube_gdata_player
TEDxDubai - Mohammed Harib - 10/10/09 [بالعربية],8927,https://www.youtube.com/watch?v=Q8nkEFsCyLM&feature=youtube_gdata_player
TEDxDF - Alfonso Ruíz Soto - Una notable ausencia: Tú,8902,https://www.youtube.com/watch?v=uvy_iUEATOw&feature=youtube_gdata_player
TEDxDaejeon - Song Soo-yong - Winning the world with the 'DID' mindset,8870,https://www.youtube.com/watch?v=2B1iXo1c1Tk&feature=youtube_gdata_player
TEDxPresidio - Nikhil Arora and Alejandro Velez,8869,https://www.youtube.com/watch?v=nboaE3O8zE8&feature=youtube_gdata_player
TEDxFlint - Peter Bregman - Living With Your Hands Off Your Ears,8856,https://www.youtube.com/watch?v=CuPfbTAVBP4&feature=youtube_gdata_player
TEDxSanDiego - Simon Sinek - Restoring the Human in Humanity,8855,https://www.youtube.com/watch?v=LeAkYuMDVGY&feature=youtube_gdata_player
TEDxSeoul - Doojin Hwang - 11/28/09,8790,https://www.youtube.com/watch?v=SP67ty4SXQA&feature=youtube_gdata_player
TEDxSinCity - Sam Chaltain - The Freedom to Learn,8788,https://www.youtube.com/watch?v=R6-VRO8G5LE&feature=youtube_gdata_player
TEDxOrangeCoast - Rick Warren - The 8 Nations of Innovation,8784,https://www.youtube.com/watch?v=xPqNtOrTdlU&feature=youtube_gdata_player
TEDxSinCity - Bryan Franklin - The Most Dangerous Question On Earth,8773,https://www.youtube.com/watch?v=tClHDEoje6Y&feature=youtube_gdata_player
TEDxBloomington -- Charlie Todd -- "Causing a Scene with Improv Everywhere",8702,https://www.youtube.com/watch?v=Xl6wxnnSStI&feature=youtube_gdata_player
TEDxAldeburgh - Akala - Hip-Hop & Shakespeare?,8683,https://www.youtube.com/watch?v=DSbtkLA3GrY&feature=youtube_gdata_player
TEDxTallinn - Alar Tamming - 11/20/09,8668,https://www.youtube.com/watch?v=xBWiD4zxuyk&feature=youtube_gdata_player
TEDxEast - Sheena Iyengar 05/07/10,8652,https://www.youtube.com/watch?v=fejditZYSi4&feature=youtube_gdata_player
TEDxAcademy - Father Antonios Papanikolaou,8640,https://www.youtube.com/watch?v=HrQZ8evZ5Wk&feature=youtube_gdata_player
TEDxParis 2011 - rafi Haladjian - L'Internet des objets,8628,https://www.youtube.com/watch?v=T68CLqAIAdg&feature=youtube_gdata_player
TEDxHouston 2011 - Chris Seay - Pastor at Ecclesia,8614,https://www.youtube.com/watch?v=GGpErdGX368&feature=youtube_gdata_player
TEDxDelhi - Kalpesh bhatt,8587,https://www.youtube.com/watch?v=m5YG7TVGqWk&feature=youtube_gdata_player
TEDxChCh - John Marshall Roberts - The Global Urgency of Everyday Empathy,8552,https://www.youtube.com/watch?v=QG11gmv0p9s&feature=youtube_gdata_player
TEDxNajd - Ehssan Aljohani - Tawasi,8533,https://www.youtube.com/watch?v=sgNtYWw7C8I&feature=youtube_gdata_player
TEDxBG - Martin Angelov - 1/9/10,8526,https://www.youtube.com/watch?v=VQOzTszyKR4&feature=youtube_gdata_player
TEDxRainier - Dr. Patricia Kuhl,8410,https://www.youtube.com/watch?v=qRRiWg6wYXw&feature=youtube_gdata_player
TEDxSalem - Gnani Sankaran - Ethics an inseparable part of Life,8402,https://www.youtube.com/watch?v=H9MnKqQ1hNM&feature=youtube_gdata_player
TEDxCairo - Ali Faramawy - Top Ten (Belmasry),8324,https://www.youtube.com/watch?v=37G3Gj0o0tY&feature=youtube_gdata_player
TEDxNYED - David Wiley - 03/06/10,8311,https://www.youtube.com/watch?v=Rb0syrgsH6M&feature=youtube_gdata_player
TEDx1000Lakes - Chuck Marohn - The important difference between a road and a street,8305,https://www.youtube.com/watch?v=6XRjatW_N9M&feature=youtube_gdata_player
TEDxBuenosAires - José Cibelli - 04/08/10,8278,https://www.youtube.com/watch?v=uNymCk82yQ4&feature=youtube_gdata_player
TEDxJakarta - Ade Rai - Towards A Strong And Healthy Indonesia,8251,https://www.youtube.com/watch?v=R3vgnE34_MI&feature=youtube_gdata_player
TEDxMadrid - Ibán Yarza - El momento del pan,8246,https://www.youtube.com/watch?v=LIb2acrvvxc&feature=youtube_gdata_player
TEDxIsfeld Eoin Finn Hammock Enlightenment,8241,https://www.youtube.com/watch?v=EsIZ69msvOQ&feature=youtube_gdata_player
TEDxJakarta - Irfan Amalee - Incorporating Children In The Peace Solution,8227,https://www.youtube.com/watch?v=M5r-ZGJ90Oo&feature=youtube_gdata_player
TEDxDubai - Al Awadhi Brothers - 10/10/09 [بالعربية],8221,https://www.youtube.com/watch?v=Prf7pTINvbY&feature=youtube_gdata_player
TEDxASB - DevDutt Pattanaik - 4/21/10,8194,https://www.youtube.com/watch?v=npwfLdI709o&feature=youtube_gdata_player
TEDxTokyo - Ginger Ana Griep - Ruiz of Cirque du Soleil - 05/15/10,8181,https://www.youtube.com/watch?v=qg8nehovAow&feature=youtube_gdata_player
TEDxParis - François Taddei - 01/30/10,8172,https://www.youtube.com/watch?v=60_xXe5IAkI&feature=youtube_gdata_player
TEDxBloomington -- Jessica Quirk -- "Look Good, Feel Good: The Case for Playing Dress Up",8153,https://www.youtube.com/watch?v=m6UHT-b6oRg&feature=youtube_gdata_player
TEDxCairo - Mina Shenoda - An Egyptian Tale !,8141,https://www.youtube.com/watch?v=EfujxeuWhUY&feature=youtube_gdata_player
TEDxRamallah - Suad Amiry - My work My Hobby. Simply look inside you never at others.,8134,https://www.youtube.com/watch?v=bk7joCi-gXs&feature=youtube_gdata_player
TEDxMyeongDong - Sungjin Lee - 10/28/09,8111,https://www.youtube.com/watch?v=rRHHPoJ6Sjc&feature=youtube_gdata_player
TEDxHampshireCollege - Chuck Collins -- Taxing the Wealthy,8105,https://www.youtube.com/watch?v=1sgaDbg2RLE&feature=youtube_gdata_player
TEDxDubai - Masarat Daud - 10/10/09 [بالعربية],8103,https://www.youtube.com/watch?v=VSXh5jsSTfE&feature=youtube_gdata_player
TEDxSaoPaulo - Osvaldo Stella on how the Amazon changed his life,8092,https://www.youtube.com/watch?v=TCWKUnQO5FU&feature=youtube_gdata_player
TEDxObserver - Goldie,8081,https://www.youtube.com/watch?v=0CKqUwVVe5Y&feature=youtube_gdata_player
TEDxEast - Bruce Feiler - 05/07/10,8038,https://www.youtube.com/watch?v=QuPqx3PIaGQ&feature=youtube_gdata_player
TEDxRiodelaPlata TEDxChange - Claudio Castro - Jóvenes construyendo una Latinoamérica sin pobreza,8005,https://www.youtube.com/watch?v=YuF43sUBkc8&feature=youtube_gdata_player
TEDxCaltech - J. Craig Venter - Future Biology,8000,https://www.youtube.com/watch?v=HdgfzdlgUHw&feature=youtube_gdata_player
TEDxWoodsHole - Chris Neill - Arctic Thrills,7954,https://www.youtube.com/watch?v=IfO7LP5zQx4&feature=youtube_gdata_player
TEDxRosario - Rodrigo del Pino - Una nueva visión del mundo,7926,https://www.youtube.com/watch?v=cml3WsWQVw4&feature=youtube_gdata_player
TEDxAmsterdam - Hans Aarsman -11/20/09,7857,https://www.youtube.com/watch?v=7l-I82-Q0y0&feature=youtube_gdata_player
TEDxCluj - Constantin Asavoaie - Be strong! Never Give up dreaming with eyes wide open,7817,https://www.youtube.com/watch?v=mQsreeKwmDk&feature=youtube_gdata_player
TEDxTokyo - Yuichi Mori - Soil-free Agriculture - [English],7806,https://www.youtube.com/watch?v=XWUt6hT_8Lo&feature=youtube_gdata_player
TEDxAA-Martin G.-Why creating supportive habits is the quickest way to achieve your goals,7786,https://www.youtube.com/watch?v=ThjFnvEENRw&feature=youtube_gdata_player
TEDxHampshireCollege - Jim Ferrell - Resolving the Heart of Conflict,7785,https://www.youtube.com/watch?v=YyhOT3jCcR4&feature=youtube_gdata_player
TEDxDubai - Dubai Abulhoul - 10/10/09 [بالعربية],7765,https://www.youtube.com/watch?v=PCMU_RlVVa4&feature=youtube_gdata_player
TEDxEuston - Hannah Pool - Discovering myself while discovering Erithrea,7702,https://www.youtube.com/watch?v=KntAlUScrzw&feature=youtube_gdata_player
TEDxArabia 2011 Mohamed Faris | Can Religion Teach Us Productivity? محمد فارس,7689,https://www.youtube.com/watch?v=73AAFXe7OoI&feature=youtube_gdata_player
TEDxBratislava - Bijan KHADEM-MISSAGH -- Music as a key to understanding reality,7689,https://www.youtube.com/watch?v=AXqMo-ICeHs&feature=youtube_gdata_player
TEDxSudeste - Viviane Mosé - O valor da mudança,7671,https://www.youtube.com/watch?v=5YWF7I4-Et8&feature=youtube_gdata_player
TEDxDF - Cuauhtli Arau Méndez - Onto Creatividad (Spanish),7646,https://www.youtube.com/watch?v=PfCCcjXzpuE&feature=youtube_gdata_player
TEDxBuenosAires 2011 - Agustín Pichot - Diferencias y Objetivo Común,7632,https://www.youtube.com/watch?v=I5yRBHV97VY&feature=youtube_gdata_player
TEDxNJLibraries - Sam Daley-Harris - Poverty, Purpose, Pitfalls, and Redemption,7625,https://www.youtube.com/watch?v=t_LLCUQlB5E&feature=youtube_gdata_player
TEDxJohannesburg - Iain Thomas - 11/15/09,7612,https://www.youtube.com/watch?v=9BlxGE08ABI&feature=youtube_gdata_player
TEDxWarwick - Noam Kostucki - Making Money From Doing Good,7609,https://www.youtube.com/watch?v=2gRaHyHJjrg&feature=youtube_gdata_player
TEDxLaJolla - Claire Wineland - It's Just a Disease,7561,https://www.youtube.com/watch?v=5-NSsMIUMHI&feature=youtube_gdata_player
TEDxSydney - Richard Gill - The Value of Music Education,7544,https://www.youtube.com/watch?v=HeRus3NVbwE&feature=youtube_gdata_player
TEDxTokyo - Kanae Doi - 05/15/10 - (English),7542,https://www.youtube.com/watch?v=o4asmd08Ir8&feature=youtube_gdata_player
TEDxDubai - Paul Bennett - 10/10/09 [بالعربية],7523,https://www.youtube.com/watch?v=UM3vQefqRgs&feature=youtube_gdata_player
TEDxBrooklyn - Barbara Bush,7522,https://www.youtube.com/watch?v=KWIB958azOs&feature=youtube_gdata_player
TEDxFSU - Sally Karioth - Compassion Energy as a Way to Find Joy in What You Do,7513,https://www.youtube.com/watch?v=KZenjH4qaFE&feature=youtube_gdata_player
TEDxLahore - Aamir Khan - Using cellphones to improve healthcare delivery,7504,https://www.youtube.com/watch?v=vDoJ2S-Z0pY&feature=youtube_gdata_player
TEDxLjubljana - A-Kamela - A capella,7481,https://www.youtube.com/watch?v=kd8gPAoTEv0&feature=youtube_gdata_player
TEDxCanberra - Thomas Pogge - Reimagining pharmaceutical innovation,7442,https://www.youtube.com/watch?v=rTMqGbTNkNg&feature=youtube_gdata_player
TEDxSanJoseCA - Chris Waugh - Can we Use Design to Make Life More Interesting?,7441,https://www.youtube.com/watch?v=rvqcS6-7tNc&feature=youtube_gdata_player
TEDxPSU - Jason O - Sir Loops A Lot,7441,https://www.youtube.com/watch?v=h8InCd5fx6o&feature=youtube_gdata_player
TEDxBologna - Sergio Focardi - L'E-cat e la fusione nucleare fredda con il Nichel e l'Idrogeno,7413,https://www.youtube.com/watch?v=eGmgTo2Kw1U&feature=youtube_gdata_player
TEDxLahore - Asher Hasan - Of burgers and bun kababs,7398,https://www.youtube.com/watch?v=7oqrjqsO6IU&feature=youtube_gdata_player
TEDxWaterloo - Amy Krouse Rosenthal - 7 Notes on Life,7389,https://www.youtube.com/watch?v=hxWgIccldh4&feature=youtube_gdata_player
TEDxYouth@Khartoum,Wafa Elamin: Positive thinking, Nov.26.11,7375,https://www.youtube.com/watch?v=V_FOfHwH-WU&feature=youtube_gdata_player
TEDxMaastricht - Daniel Kraft - "What's next in healthcare?",7350,https://www.youtube.com/watch?v=OhdUivs72zE&feature=youtube_gdata_player
TEDxSiliconValley - Leila Chirayath Janah - 12/12/09,7349,https://www.youtube.com/watch?v=1Ce9EfF2lHE&feature=youtube_gdata_player
TEDxPhilly - Stephen Powers - Urban love letters,7343,https://www.youtube.com/watch?v=e9bkEOGVO0k&feature=youtube_gdata_player
TEDxTokyo 奥山清行150510 日本語,7342,https://www.youtube.com/watch?v=xka0qk8SZFA&feature=youtube_gdata_player
TEDxBoston - César A. Hidalgo - Global Product Space,7332,https://www.youtube.com/watch?v=GRp382ynu-Q&feature=youtube_gdata_player
TEDxWindyCity -- Homaro Cantu & Ben Roche -- The Future of Food,7252,https://www.youtube.com/watch?v=Qk52YkSV8PE&feature=youtube_gdata_player
TEDxAustin - Rip Esselstyn - 02/20/10,7249,https://www.youtube.com/watch?v=TbXlzzp3guE&feature=youtube_gdata_player
TEDxTokyo - Kentaro Toyama - 05/15/10 - (English),7247,https://www.youtube.com/watch?v=cxutDM2r534&feature=youtube_gdata_player
TEDxConcordia - Tara Hunt - The Unclear Path,7241,https://www.youtube.com/watch?v=zykK0oUS8aw&feature=youtube_gdata_player
TEDxSinCity - Alex Allman - Sex, Marketing, and the Politics of Peace,7227,https://www.youtube.com/watch?v=jVphc3IFCpI&feature=youtube_gdata_player
TEDxWarwick - Sir Roger Penrose - Space-Time Geometry and a New Cosmology,7214,https://www.youtube.com/watch?v=oBkOYQ02chs&feature=youtube_gdata_player
TEDxCairo - Tarek Naga - Of Phantom Limbs: Sycamores, Towers ... And The Return Of Prodigal Son,7184,https://www.youtube.com/watch?v=U9XVaoqYRpA&feature=youtube_gdata_player
TEDxBrownUniversity - Willoughby Britton - Why A Neuroscientist Would Study Meditation,7182,https://www.youtube.com/watch?v=TR8TjCncvIw&feature=youtube_gdata_player
TEDxCairo - Rami Serry - Racing Towards A Dream,7147,https://www.youtube.com/watch?v=_3-wEVNHENg&feature=youtube_gdata_player
TEDxBarcelona - Alfons Cornella - Los problemas que afrontará la siguiente generación,7139,https://www.youtube.com/watch?v=PHCh-2plWmU&feature=youtube_gdata_player
TEDxVancouver - Yael Cohen - Using the F-word to battle,7133,https://www.youtube.com/watch?v=3_NwZa867mM&feature=youtube_gdata_player
TEDxJakarta - Anies Baswedan - Lighting Up Indonesia's Future,7119,https://www.youtube.com/watch?v=LBgWsBkjsXQ&feature=youtube_gdata_player
TEDxSanMigueldeAllende - Mark Vicente - BRAVE LOVE,7108,https://www.youtube.com/watch?v=4IvndycgZbc&feature=youtube_gdata_player
TEDxAcademy - Elias Papaioannou - Civic Capital(ism),7101,https://www.youtube.com/watch?v=S5nth5jlCP0&feature=youtube_gdata_player
TEDxCanarias - Valentin Martinez-Pillet - A new vision of the Sun (Spanish),7095,https://www.youtube.com/watch?v=cCxuAC4pTes&feature=youtube_gdata_player
TEDxPerm - Tatiana Chernigovskaya - 9/11/09,7086,https://www.youtube.com/watch?v=lHupOGrBKXM&feature=youtube_gdata_player
TEDxBloomington -- Marc and Sara Schiller -- "Gaming The Streets: Uncommissioned Art",7078,https://www.youtube.com/watch?v=NZcbOyKxW2M&feature=youtube_gdata_player
TEDxByronBay - Jennie Armato - Collaboration Cirlces Empower Entrepreneurs in the New Economy,7024,https://www.youtube.com/watch?v=sJgKAQvk9Ec&feature=youtube_gdata_player
TEDxMumbai - Anupam Kher - 04/03/10,7019,https://www.youtube.com/watch?v=cJkKJHh0wAQ&feature=youtube_gdata_player
TEDxRosario - Alejandro Rozitchner - Premisas para la felicidad,6993,https://www.youtube.com/watch?v=q7pQxF8ELsI&feature=youtube_gdata_player
TEDxCaltech - Zvi Bern - Feynman Diagrams: Past, Present, Future,6973,https://www.youtube.com/watch?v=3SYW6eZFHwU&feature=youtube_gdata_player
TEDxBoston - Chad Stokes - Calling All Crows,6957,https://www.youtube.com/watch?v=rdIExHw-A3w&feature=youtube_gdata_player
TEDxAmsterdam - Trailer - Challenge 'Ideas Worth Doing',6950,https://www.youtube.com/watch?v=vFDEJvPiVBQ&feature=youtube_gdata_player
TEDxDubai - Samar Jodha - 10/10/09 [بالعربية],6944,https://www.youtube.com/watch?v=6Y2AP2Sr1wo&feature=youtube_gdata_player
TEDxMileHigh - Paul Polak - The Future Corporation,6935,https://www.youtube.com/watch?v=ezVxt7TkyeM&feature=youtube_gdata_player
TEDxUSP - Luis Carlos Menezes - Aprender com o Imponderável,6934,https://www.youtube.com/watch?v=Lbp0tqgQR-s&feature=youtube_gdata_player
TEDxChCh - Grant Ryan - Some Odd Things About Bold New Ideas,6888,https://www.youtube.com/watch?v=lPfFyXHGgro&feature=youtube_gdata_player
TEDxTokyo - 神田瀧夢- 05/15/10 - (日本語),6884,https://www.youtube.com/watch?v=WXoCxrKkqDk&feature=youtube_gdata_player
TEDxFiDiWomen - Regena Thomashauer - The Pleasure Revolution,6875,https://www.youtube.com/watch?v=CU9RAGiRdSE&feature=youtube_gdata_player
TEDxBuenosAires - Axel Krygier - 04/08/10,6842,https://www.youtube.com/watch?v=dK_RtC1aLHU&feature=youtube_gdata_player
TEDxRiodelaPlata - Diego Golombek - El tiempo del lado de adentro,6829,https://www.youtube.com/watch?v=DHTZ47SQ76Y&feature=youtube_gdata_player
TEDxWWF - Jane Fulton-Suri: What Nature Can Teach Us About Design,6827,https://www.youtube.com/watch?v=aA2JoLS7_3g&feature=youtube_gdata_player
TEDxCanarias - BenitoCabrera - Creating from the islands,6818,https://www.youtube.com/watch?v=zs1Ykcci5Kw&feature=youtube_gdata_player
TEDx Helsinki II - Jufo Peltomaa - Singulariteetin vaikutus Euroopan talousalueeseen,6808,https://www.youtube.com/watch?v=HMf8PT-I0l0&feature=youtube_gdata_player
TEDxCairo - Ahmed Darwish - Opportunity Beyond Challenge!,6799,https://www.youtube.com/watch?v=2KkDYGX39XA&feature=youtube_gdata_player
TEDxDelhi - Anuj Sharma - Button Masala,6787,https://www.youtube.com/watch?v=Y5k0qr8UWkA&feature=youtube_gdata_player
TEDxVancouver - Terry McBride - 11/21/09,6752,https://www.youtube.com/watch?v=SQOWNU5-nNs&feature=youtube_gdata_player
TEDxSanJoaquin - Hamza Siddiqui - The American Muslim,6736,https://www.youtube.com/watch?v=cIDrhKXKORc&feature=youtube_gdata_player
TEDxRainier - Pramila Jayapal,6729,https://www.youtube.com/watch?v=aHlubzHbNVk&feature=youtube_gdata_player
TEDxDubai - Thomas Lundgren - 10/10/09 [بالعربية],6727,https://www.youtube.com/watch?v=IpDvp0hYUX8&feature=youtube_gdata_player
TEDxToronto - Tom Rand - 9/10/09,6711,https://www.youtube.com/watch?v=Udz0lHGNzxc&feature=youtube_gdata_player
TEDxCaltech - Tony Hey - Feynman and Computation,6688,https://www.youtube.com/watch?v=9miKIWIYi4w&feature=youtube_gdata_player
TEDxLaguna - Rogelio Ramos - ¿Soy normal?,6683,https://www.youtube.com/watch?v=JdI8fMPLS5Y&feature=youtube_gdata_player
TEDxDF - Andrés Aguilar Larrondo - Teoría del zape,6680,https://www.youtube.com/watch?v=lo8qUTa1bRk&feature=youtube_gdata_player
TEDxTaipei - Alice Wang - Designer or Dream-maker? (王艾莉- 設計師?還是夢想家?),6672,https://www.youtube.com/watch?v=-z5c1bMKkXA&feature=youtube_gdata_player
TEDxDF - Daniel Granatta - Digital Invaders (Spanish),6664,https://www.youtube.com/watch?v=XvyQopQTGpk&feature=youtube_gdata_player
TEDxAtlanta - Armin Vit - Think Stupid,6631,https://www.youtube.com/watch?v=Sn9thCsDCHM&feature=youtube_gdata_player
TEDxTeen - Jeni Stepanek - 03/27/10,6623,https://www.youtube.com/watch?v=ru2Wq-6TUzI&feature=youtube_gdata_player
TEDxEast - Rachel Sterne - 11/06/09,6609,https://www.youtube.com/watch?v=RPJfFCnZjWk&feature=youtube_gdata_player
TEDxASB - Scott McLeod - 2/25/10,6598,https://www.youtube.com/watch?v=-yA6oTU1emM&feature=youtube_gdata_player
TEDxOntarioEd - Tim Ludwig - 04/09/10,6598,https://www.youtube.com/watch?v=26be01Z4TJ0&feature=youtube_gdata_player
TEDxPrague - Ondrej Šteffl - Je škola budoucnost vzdělávání?,6587,https://www.youtube.com/watch?v=jt8mAdg-PIM&feature=youtube_gdata_player
TEDxPuraVida - Oscar Arias - Oportunidades perdidas:el gasto militar en Latinoamérica (Spanish),6585,https://www.youtube.com/watch?v=z1V7_OR5w98&feature=youtube_gdata_player
TEDxMillCity - Philip Enquist - Imagine There Are No Borders,6568,https://www.youtube.com/watch?v=Wn5R5uHVRO4&feature=youtube_gdata_player
TEDxSeoul-Sang Min Whang-Coolguy and Nobobody,6550,https://www.youtube.com/watch?v=NahQP4v2QG0&feature=youtube_gdata_player
TEDxTaipei - David Tao - Unlearn to Learn ( 陶喆- 放下才能獲得更多),6531,https://www.youtube.com/watch?v=iHySqI2UzVI&feature=youtube_gdata_player
TEDxTokyo - 石井裕教授- The Last Farewell - [日本語],6521,https://www.youtube.com/watch?v=Pu44DvxaXOg&feature=youtube_gdata_player
TEDxTokyo - Maro - まろ - Balanced Juggling,6510,https://www.youtube.com/watch?v=krheZjYWpW8&feature=youtube_gdata_player
TEDxMaastricht - Fred Lee - "Patient Satisfaction or Patient Experience ?",6491,https://www.youtube.com/watch?v=tylvc9dY400&feature=youtube_gdata_player
TEDx Brussels - Conrad Wolfram - 11/23/09,6490,https://www.youtube.com/watch?v=TsvPE1EqwQ8&feature=youtube_gdata_player
TEDxUniPittsburgh - Jesse Schell - The Future is Beautiful,6446,https://www.youtube.com/watch?v=0tg55pdNMxw&feature=youtube_gdata_player
TEDxBlackRockCity - Shiva Rea - Tending the Sacred Fire,6442,https://www.youtube.com/watch?v=i31gGh9KcAo&feature=youtube_gdata_player
TEDxSoMa - Damon Horowitz - 1/22/10,6441,https://www.youtube.com/watch?v=1YdE-D_lSgI&feature=youtube_gdata_player
TEDxAshokaU - Edgar Cahn - 2/19/10,6406,https://www.youtube.com/watch?v=COn7Fc5ZurQ&feature=youtube_gdata_player
TEDxNASA - Jana Stanfield "If I Were Brave" - 11/20/09,6371,https://www.youtube.com/watch?v=ipy9bW-P8dE&feature=youtube_gdata_player
TEDxLahore - Tariq Rahman - Who's afraid of Urdish and Urdi?,6359,https://www.youtube.com/watch?v=fl4xppek2gY&feature=youtube_gdata_player
TEDxRedmond - Simone Porter - Malaguena and Zapateado by Sarasate; Definition of the Prodigy,6338,https://www.youtube.com/watch?v=LRuIgxpavPU&feature=youtube_gdata_player
TEDxBuenosAires - Mercedes Salado Puerto - 04/08/10,6325,https://www.youtube.com/watch?v=ua3vovMLvtQ&feature=youtube_gdata_player
TEDxPrague - Jana Nováčková - Jak se z touhy učit se stane sběratelství známek,6317,https://www.youtube.com/watch?v=7cnxm-OatVs&feature=youtube_gdata_player
TEDxNASA - Maggie Stiefvater - How Bad Teens Become Famous People,6310,https://www.youtube.com/watch?v=gIJPg3wfJ1c&feature=youtube_gdata_player
TEDxTampaBay Vineet Singal Miraculous Struggles,6305,https://www.youtube.com/watch?v=rFEqoNp7eus&feature=youtube_gdata_player
TEDxCaltech - Charlie Marcus - Nanoelectronics and Quantum Computation,6300,https://www.youtube.com/watch?v=5Uh6b3CDRaA&feature=youtube_gdata_player
TEDxIB @ York - Mike Jutan - The power of enthusiasm,6297,https://www.youtube.com/watch?v=4I5J4P0XaPA&feature=youtube_gdata_player
TEDxBrno - Adam Gebrian - Bourání klišé,6283,https://www.youtube.com/watch?v=kD0mxXDEa4s&feature=youtube_gdata_player
TEDxTokyo - 土井香苗- 05/15/10 - (日本語),6258,https://www.youtube.com/watch?v=AR-XXvuSXFs&feature=youtube_gdata_player
TEDxParis 2011 - Vinvin - Introduction,6252,https://www.youtube.com/watch?v=rnLsSexj608&feature=youtube_gdata_player
TEDxEastsidePrep - Dr. Tae - Can Skateboarding Save Our Schools?,6251,https://www.youtube.com/watch?v=lHfo17ikSpY&feature=youtube_gdata_player
TEDxSanAntonio - Eythor Bender - eLEGS Merging Technology & the Human Body,6248,https://www.youtube.com/watch?v=3Tj-zku4Ttw&feature=youtube_gdata_player
TEDxBasqueCountry - Bernard Mariette - Faire de l'argent en faisant du bien,6247,https://www.youtube.com/watch?v=tudh646ixSI&feature=youtube_gdata_player
TEDxTokyo - Kiyoyuki 'Ken' Okuyama - 05/15/10 - (English),6246,https://www.youtube.com/watch?v=av4ul77M4CI&feature=youtube_gdata_player
TEDxAsheville - Drew Jones - 8/30/09,6214,https://www.youtube.com/watch?v=CTS9RY1z_i8&feature=youtube_gdata_player
TEDxUIMP - Juan Freire - Ecosistemas de aprendizaje y tecnologías sociales,6198,https://www.youtube.com/watch?v=w7QOERmeG9s&feature=youtube_gdata_player
TEDxAmsterdam - Robbert Dijkgraaf - 11/20/09,6178,https://www.youtube.com/watch?v=-D6WmIlsznM&feature=youtube_gdata_player
TEDxToronto - Gavin Sheppard - 9/10/09,6165,https://www.youtube.com/watch?v=hldeg3PlkHw&feature=youtube_gdata_player
TEDx HolyLand - Safa Abu Rabia,6161,https://www.youtube.com/watch?v=kiYkPDFP-D4&feature=youtube_gdata_player
TEDxJakarta - Rene Suhardono - Passion, Purpose, Value,6144,https://www.youtube.com/watch?v=Z5B72kGhHGI&feature=youtube_gdata_player
TEDxAFS-Justin Solonynka Big Numbers,6143,https://www.youtube.com/watch?v=8E-jZByDwJw&feature=youtube_gdata_player
TEDxCaltech - Adam Cochran - The Electronic "Feynman Lectures on Physics",6133,https://www.youtube.com/watch?v=yqRp9tyDLvw&feature=youtube_gdata_player
TEDxKids @SMU - Baba Brinkman - Rap Guide to Evolution,6133,https://www.youtube.com/watch?v=I96--PeT-kk&feature=youtube_gdata_player
TEDxDubai - Qais Sedki - 10/10/09 [بالعربية],6108,https://www.youtube.com/watch?v=mFLmM-tphvc&feature=youtube_gdata_player
TEDxWindyCity -- Dickson Despommier -- The Vertical Farm,6103,https://www.youtube.com/watch?v=XIdP00u2KRA&feature=youtube_gdata_player
TEDxBratislava - Ján Šlinský - Revolutionary organic vegetable farming,6102,https://www.youtube.com/watch?v=ZwP3A6z4sFc&feature=youtube_gdata_player
TEDxPerm - Sergey Kapitsa - Russian science after the "Big Bang",6074,https://www.youtube.com/watch?v=qrZ8luGyItc&feature=youtube_gdata_player
TEDxSRM - S Gurumurthy - What Today's Youth Can Do,6063,https://www.youtube.com/watch?v=KMm_v-c5xNI&feature=youtube_gdata_player
TEDxAthens - Christos Ioannidis - Schoolwave Festival,6052,https://www.youtube.com/watch?v=3bLzIN_WSQI&feature=youtube_gdata_player
TEDxFirenze - Lorenzo Jovanotti Cherubini - L'ottimismo come forma di lotta,6034,https://www.youtube.com/watch?v=0W70y3Bikpw&feature=youtube_gdata_player
TEDxNYED - George Siemens - 03/06/10,6031,https://www.youtube.com/watch?v=4BH-uLO6ovI&feature=youtube_gdata_player
TEDxAsheville - Eustace Conway - Traditional Lifestyles of the 21st Century,6016,https://www.youtube.com/watch?v=qyEIr_W-x7c&feature=youtube_gdata_player
TEDxParis 2011 - Jean-Louis Servan-Schreiber - Les quatre paradoxes de la vitesse,6012,https://www.youtube.com/watch?v=QavoKsuQXaQ&feature=youtube_gdata_player
TEDxTaipei 2011 - Dr. Hong-yuan Lee (李鴻源),6001,https://www.youtube.com/watch?v=-c_iwk1pca0&feature=youtube_gdata_player
TEDxGreatPacificGarbagePatch - Beth Terry - Living Plastic Free,5994,https://www.youtube.com/watch?v=3JXWRVrFiKs&feature=youtube_gdata_player
TEDxBerlin - Erik Spiekermann - 11/30/09,5971,https://www.youtube.com/watch?v=dAljDx_lSQ4&feature=youtube_gdata_player
TEDxCairo - Amr Salama - How to advertise a revolution.,5941,https://www.youtube.com/watch?v=Pf61hAV9QPY&feature=youtube_gdata_player
TEDxAcademy - Yanis Varoufakis - A Modest Proposal for Transforming Europe,5939,https://www.youtube.com/watch?v=CRRWaEPRlb4&feature=youtube_gdata_player
TEDxTC - Art Rolnick - Economic Case for Early Childhood Development,5920,https://www.youtube.com/watch?v=M02Z1vAuwBs&feature=youtube_gdata_player
TEDxBlue - Chris Wink - 10/18/09,5914,https://www.youtube.com/watch?v=qw3JqHYNB2I&feature=youtube_gdata_player
TEDxArabia talk -Yaser Bakr - Creativity by Nintendo,5913,https://www.youtube.com/watch?v=2s_8DdwPV4A&feature=youtube_gdata_player
TEDx Paris Universités - Hapsatou Sy - Becoming entrepreneur of one's own life,5912,https://www.youtube.com/watch?v=61n4Aoxr4do&feature=youtube_gdata_player
TEDxDenverEd- Brian Crosby- Back to the Future,5898,https://www.youtube.com/watch?v=olUn4Si22Sg&feature=youtube_gdata_player
TEDx Brussels 2010 - Stuart Hameroff - Do we have a quantum Soul?,5896,https://www.youtube.com/watch?v=iIyEjh6ef_8&feature=youtube_gdata_player
TEDxASB - Helen Barrett - 2/25/10,5891,https://www.youtube.com/watch?v=ckcSegrwjkA&feature=youtube_gdata_player
TEDxSF - Bill Thomas - Elderhood Rising: The Dawn of a New World Age,5854,https://www.youtube.com/watch?v=ijbgcX3vIWs&feature=youtube_gdata_player
TEDxAmsterdam 2010 - Bart Koolen - 11/30/10,5846,https://www.youtube.com/watch?v=FiV5oheiWck&feature=youtube_gdata_player
TEDxOrangeCoast - Matthew Peterson - Teaching Without Words,5837,https://www.youtube.com/watch?v=2VLje8QRrwg&feature=youtube_gdata_player
TEDxPhnomPenh - Colin Wright - Extreme Lifestyle Experiments,5836,https://www.youtube.com/watch?v=W6cAR2eQHUU&feature=youtube_gdata_player
TEDx Brussels 2010 - Sebastian Thrun - Rethinking the Automobile,5829,https://www.youtube.com/watch?v=r_T-X4N7hVQ&feature=youtube_gdata_player
TEDxWarwick - Tim Harford - Management Lessons from the War in Iraq,5821,https://www.youtube.com/watch?v=iiny7Ly6vhQ&feature=youtube_gdata_player
TEDxDelhi - Rabbi Shergill,5816,https://www.youtube.com/watch?v=qeHS4PAm75I&feature=youtube_gdata_player
TEDxTokyo - Hitoshi Murayama - 05/15/10 - (English),5809,https://www.youtube.com/watch?v=FMsT-9L5I2g&feature=youtube_gdata_player
TEDxBerkeley - Bradley Voytek - 04/03/10,5793,https://www.youtube.com/watch?v=ki24i6NPic0&feature=youtube_gdata_player
TEDxMidAtlantic 2010 - Charles Limb - 11/5/10,5774,https://www.youtube.com/watch?v=BomNG5N_E_0&feature=youtube_gdata_player
TEDxRheinMain - Prof. Dr. Gunter Dueck - Building your identity (German),5774,https://www.youtube.com/watch?v=ANM2rmz4pmU&feature=youtube_gdata_player
TEDxEastsidePrep - Shawn Cornally - The Future of Education Without Coercion,5765,https://www.youtube.com/watch?v=gPeKdXhGcZQ&feature=youtube_gdata_player
TEDxEast - 05/07/10-Psyop,5761,https://www.youtube.com/watch?v=Qu5S3Q7knmA&feature=youtube_gdata_player
TEDxBlue - David Rock - 10/18/09,5760,https://www.youtube.com/watch?v=VaTox-FuFx8&feature=youtube_gdata_player
TEDxCanarias - Vicente Mora - How to Raise Money for Talent,5752,https://www.youtube.com/watch?v=etj0T5XIg08&feature=youtube_gdata_player
TEDxPerm - Sergey Kapitsa - 9/11/09,5716,https://www.youtube.com/watch?v=DYBxEQIxwBk&feature=youtube_gdata_player
TEDxAmsterdam - Mabel van Oranje - 11/20/09,5689,https://www.youtube.com/watch?v=O677n7U9ZNU&feature=youtube_gdata_player
TEDxPearlRiver - Jill Robinson - Welfare of Animals,5688,https://www.youtube.com/watch?v=ckn2c6WaUwY&feature=youtube_gdata_player
TEDxSeoul - SanHa Kim - Gibbons, long-armed apes,5688,https://www.youtube.com/watch?v=Mwo47MAsMtE&feature=youtube_gdata_player
TEDxToronto - Peter MacLeod - 9/10/09,5671,https://www.youtube.com/watch?v=f4kAe4GjCz4&feature=youtube_gdata_player
TEDxBologna - Clarbruno Vedruccio - La Tecnologia di Star Trek alla portata di tutti,5659,https://www.youtube.com/watch?v=g3R8quKp9Fo&feature=youtube_gdata_player
TEDxPSU - Jordan "DJ Earworm" Roseman - Music from the Crowd,5633,https://www.youtube.com/watch?v=fMURALKbtjc&feature=youtube_gdata_player
TEDxKarachi - Roshaneh Zafar - Kashf Foundation,5626,https://www.youtube.com/watch?v=0Jsum_1oZNA&feature=youtube_gdata_player
TEDxIslay - Linda Bove: Why We Need Deaf Actors in Deaf Roles,5612,https://www.youtube.com/watch?v=eZRWhZFb3cM&feature=youtube_gdata_player
TEDxBG - Yana Buhrer Tavanier - The Forgotten People of Bulgaria,5606,https://www.youtube.com/watch?v=dxKFQoisP9I&feature=youtube_gdata_player
TEDxWarwick - Mustafa Akyol - Islam and Liberty,5600,https://www.youtube.com/watch?v=Gk6-TWX-jk0&feature=youtube_gdata_player
TEDxRioDelaPlata TEDxChange - Zulma Ortiz - De números y personas,5594,https://www.youtube.com/watch?v=kJiK36Fozn4&feature=youtube_gdata_player
TEDxAmericanRiviera - Chris Orwig - Finding the Magnificent in the Mundane,5575,https://www.youtube.com/watch?v=78ARBe2JCXw&feature=youtube_gdata_player
TEDxKrakow-John Scherer-Quit Your Job and Find Your Work,5559,https://www.youtube.com/watch?v=nXu7dDSflf8&feature=youtube_gdata_player
TEDxAmsterdam 2011 - William Verstraeten,5546,https://www.youtube.com/watch?v=RftsfObDi9I&feature=youtube_gdata_player
TEDxBoston - Christina Xu - The Importance of Being Awesome,5537,https://www.youtube.com/watch?v=WThSnniic2s&feature=youtube_gdata_player
TEDxVienna - Herbert Nitsch - Breathless,5537,https://www.youtube.com/watch?v=INqG2YtgU08&feature=youtube_gdata_player
TedxVienna - Johannes Grenzfurthner - Sierra Zulu,5533,https://www.youtube.com/watch?v=LVXLphC6dOU&feature=youtube_gdata_player
TEDxSeoul - Chang W Kim - 11/28/09,5524,https://www.youtube.com/watch?v=Peg5eXRNOnw&feature=youtube_gdata_player
TEDxKyiv - Tetyana Montyan - Property Formalization,5521,https://www.youtube.com/watch?v=OUlNlkw9hbg&feature=youtube_gdata_player
TEDxSF - Scott Hess - Millennials: Who They Are & Why We Hate Them,5466,https://www.youtube.com/watch?v=P-enHH-r_FM&feature=youtube_gdata_player
TEDxCordoba - Francisco Occhiuzzi - La broncemia, una enfermedad de la medicina moderna,5460,https://www.youtube.com/watch?v=gNt5hLLZDmc&feature=youtube_gdata_player
TEDxSudeste - Gil Giardelli - Uma nova Humanidade,5459,https://www.youtube.com/watch?v=PQyKcuixie4&feature=youtube_gdata_player
TEDxRosario - GAby Menta - Familia 2.0,5454,https://www.youtube.com/watch?v=r8BtOC3EmOg&feature=youtube_gdata_player
TEDxArabia 2011 Bader Saleh Eysh Elly Internet بدر صالح | إيش اللي,5443,https://www.youtube.com/watch?v=21PXnaP-cT0&feature=youtube_gdata_player
TEDxWarwick - Noam Chomsky - The Global Shift in Power in Politics,5433,https://www.youtube.com/watch?v=-3Wta_sonGs&feature=youtube_gdata_player
TEDxDoha - Taika Waititi - The Art of Creativity,5433,https://www.youtube.com/watch?v=pL71KhNmnls&feature=youtube_gdata_player
TEDxWarsaw - Noam Kostucki - 3/5/10,5427,https://www.youtube.com/watch?v=VJWLn90XqVQ&feature=youtube_gdata_player
TEDxCairo - Seif Abou Zaid - Experential Learning As A Vehicle For Challenge,5413,https://www.youtube.com/watch?v=rPvr8kdNQiI&feature=youtube_gdata_player
TEDxSF - Meklit Hadero - 11/17/09,5413,https://www.youtube.com/watch?v=V0nysgEaJTA&feature=youtube_gdata_player
TEDxCaltech - Sanjoy Mahajan - Rote Learning Fragments the World,5389,https://www.youtube.com/watch?v=4CdbBHzw8yQ&feature=youtube_gdata_player
TEDxMarDelPlata - Alfredo Barragán-El desafío a los imposibles.,5388,https://www.youtube.com/watch?v=aMgxVsyBnf4&feature=youtube_gdata_player
TEDxCanberra - Ash Donaldson - Cognitive dissonance,5366,https://www.youtube.com/watch?v=NqONzcNbzh8&feature=youtube_gdata_player
TEDxMaastricht - Dave deBronkart - aka e-Patient Dave: "Let patients help!",5355,https://www.youtube.com/watch?v=2vejkD0Rl3o&feature=youtube_gdata_player
TEDxParis - Gildas Bonnel - 01/30/10,5343,https://www.youtube.com/watch?v=__xZx5k7LnM&feature=youtube_gdata_player
TEDxAustin - Steven Tomlinson - 02/20/10,5340,https://www.youtube.com/watch?v=GhthpuS_7mM&feature=youtube_gdata_player
TEDxSeoul - Hyeju Park - How to sing well,5328,https://www.youtube.com/watch?v=wB9PImNX4T0&feature=youtube_gdata_player
TEDxSydney - Bobby Singh with Damini Darbar - Fabulous Indian Tabla and Tanpur. Classical & Modern.,5307,https://www.youtube.com/watch?v=9tyb1ykLktE&feature=youtube_gdata_player
TEDxCMU -- Mickey McManus -- Information Liquidity,5295,https://www.youtube.com/watch?v=hFgltc6xi00&feature=youtube_gdata_player
TEDxKC - Francis Cholle - The Intuitive Intelligence Movement,5253,https://www.youtube.com/watch?v=6pdmfhiV-OU&feature=youtube_gdata_player
TEDxParis 2011 - Djazia Satour,5251,https://www.youtube.com/watch?v=Gwg9ntSvtr8&feature=youtube_gdata_player
TEDxAmsterdam - Bjarke Ingels - 11/20/09,5243,https://www.youtube.com/watch?v=8fIeg8Q2ZLU&feature=youtube_gdata_player
TEDxRotterdam - Mikko Hypponen - safe internet will lead the future,5238,https://www.youtube.com/watch?v=WQgeUHlTThc&feature=youtube_gdata_player
TEDxTokyo - 田坂広志博士- 05/15/10 - (日本語),5232,https://www.youtube.com/watch?v=_t5iDhdDOtk&feature=youtube_gdata_player
TEDxCairo - Amr Ramadan -Thinking Big Doesn't Bite A Lot !,5226,https://www.youtube.com/watch?v=WS7ef79toR0&feature=youtube_gdata_player
TEDxHouston - Dan Phillips,5217,https://www.youtube.com/watch?v=bcuB0_W4Dt4&feature=youtube_gdata_player
TEDxSeoul-Kyung-Mook Kim-multiple identity diaspora,5205,https://www.youtube.com/watch?v=gwg56V-GEMQ&feature=youtube_gdata_player
TEDxPune - Nehha Bhatnagar - Dance to Dignity,5204,https://www.youtube.com/watch?v=U0XCj73i57o&feature=youtube_gdata_player
TEDxReset 2011 - Aziz Kedi - Success? What if we understimate defeat?,5200,https://www.youtube.com/watch?v=R8K3vZ_9wt0&feature=youtube_gdata_player
TEDxAcademy - Kostas Mallios,5196,https://www.youtube.com/watch?v=1JU8Le6YUXo&feature=youtube_gdata_player
TEDxSiliconValley - Peter Thiel - 12/12/09,5176,https://www.youtube.com/watch?v=HOB7nezuQ7g&feature=youtube_gdata_player
TEDxAveiro - Pedro Ribeiro - We will see when the day comes...,5173,https://www.youtube.com/watch?v=TXZ08EL_onc&feature=youtube_gdata_player
TEDx Arabia talk Bander AlMutlaq - TEDx Program intro - Global Innovation Index & Youth Year,5160,https://www.youtube.com/watch?v=nqkPDm43SS0&feature=youtube_gdata_player
TEDxBuenosAires - Constanza Ceruti - 04/08/10,5152,https://www.youtube.com/watch?v=l9283Z0bmjM&feature=youtube_gdata_player
TEDxTokyo - Noriko Kawamura 河村典子- 05/15/10,5147,https://www.youtube.com/watch?v=iIf4Cz04V8I&feature=youtube_gdata_player
TEDxRiodelaPlata - Luis von Ahn - Utilizando el poder de millones de mentes humanas,5137,https://www.youtube.com/watch?v=x1ShVyBm8GU&feature=youtube_gdata_player
TEDxPennQuarter - Rohit Bhargava - Reinventing Marketing,5131,https://www.youtube.com/watch?v=jTnPthxDkqw&feature=youtube_gdata_player
TEDxKarachi 2011 - Fasi Zaka - Where Panic Dosen't Strike,5115,https://www.youtube.com/watch?v=bLgp0NaNOnE&feature=youtube_gdata_player
TEDxCairo - Mina Elhamy Samy - A Timeless Journey,5107,https://www.youtube.com/watch?v=mYWMSMel_-0&feature=youtube_gdata_player
TEDxEQCHCH - Helena Norberg-Hodge - The Economics of Happiness,5104,https://www.youtube.com/watch?v=4r06_F2FIKM&feature=youtube_gdata_player
TEDxDelhi - Shabnam Virmani,5089,https://www.youtube.com/watch?v=iHz5ypl2ZDI&feature=youtube_gdata_player
TEDxDaejeon - Han Sang-gi - The New paradigm of research with the Social web,5082,https://www.youtube.com/watch?v=84NVrLSECgU&feature=youtube_gdata_player
TEDxTeen - Sejal Hathi - 03/27/10,5082,https://www.youtube.com/watch?v=XSkHcHt6Za0&feature=youtube_gdata_player
TEDxPordenone - Piergiorgio Odifreddi - Matematica: che forza, che bellezza!,5078,https://www.youtube.com/watch?v=oI6Oi9EZuNI&feature=youtube_gdata_player
TEDxLisboa - Joaquim Casado - "Empreendedorismo na Reciclagem",5061,https://www.youtube.com/watch?v=rbGcwY2ChFk&feature=youtube_gdata_player
TEDxBogotá - Josefina Klinger - Con la selva en la cabeza,5059,https://www.youtube.com/watch?v=RawqWDpV6Z8&feature=youtube_gdata_player
TEDxPSU - Ali Carr-Chellman - Bring Back the Boys: Using Video Games to Re-engage Boys in Learning,5053,https://www.youtube.com/watch?v=jynsAdRpoJk&feature=youtube_gdata_player
TEDxArabia 2011 Rayan Karkadan #McJigger ريان كركدان | التوعية الصحية,5033,https://www.youtube.com/watch?v=uioVMFELHqY&feature=youtube_gdata_player
TEDxTransmedia 2011 - Andrew Slack - The strength of a story,5029,https://www.youtube.com/watch?v=Rq5NbWmyGWk&feature=youtube_gdata_player
TEDxTokyo - ガー・レイノルズ - Lessons from the bamboo - [日本語],5019,https://www.youtube.com/watch?v=OTxHU30L2zs&feature=youtube_gdata_player
TEDxBrussels - Dambisa Moyo - 11/23/09,5004,https://www.youtube.com/watch?v=_QjiiM4jhbk&feature=youtube_gdata_player
TEDxPentagon - Sarah Hertig - Being an Army Wife: A Letter to my Daughter,5002,https://www.youtube.com/watch?v=FICX8qxiLnY&feature=youtube_gdata_player
TEDxTokyo - Gunter Pauli - Balancing Energy - [English],4973,https://www.youtube.com/watch?v=MyTHmTDT2Qw&feature=youtube_gdata_player
TEDxPrague - Františka Hana Garlíková - O práci, Baťovi a odvaze,4972,https://www.youtube.com/watch?v=ii3WSTcV7co&feature=youtube_gdata_player
TEDx Helsinki II - Mikael Jungner - Kontrollin Puute,4967,https://www.youtube.com/watch?v=lVWL3fAbc4g&feature=youtube_gdata_player
TEDxBarcelona - Xavier Serra - Tecnología de creación de música y su impacto a redes sociales,4956,https://www.youtube.com/watch?v=bHxpaUfeWd4&feature=youtube_gdata_player
TEDxUIUC - Magnus Andersson & Gerald Wilson - Self-Healing Coatings,4946,https://www.youtube.com/watch?v=IiBiiyKsAj0&feature=youtube_gdata_player
TEDxMontevideo - Nicolas Jodal - 4 Vitaminas Para Las Organizaciones,4941,https://www.youtube.com/watch?v=MMLCvuG9Jwo&feature=youtube_gdata_player
TEDxDaejeon - Kim Hyo-jung - Achieving life happiness by crossing 5 great deserts,4931,https://www.youtube.com/watch?v=WCKOhePQ1l4&feature=youtube_gdata_player
TEDxYonsei - DJ Wreckx - 01/23/10,4924,https://www.youtube.com/watch?v=nb9NNrmTjhY&feature=youtube_gdata_player
TEDxToronto - Don Tapscott - 9/10/09,4923,https://www.youtube.com/watch?v=NebH50yjUYE&feature=youtube_gdata_player
TEDxSol- Iván Mañero- Sin ningún género de dudas,4921,https://www.youtube.com/watch?v=MKhisEhGjr0&feature=youtube_gdata_player
TEDxCaltech - Angela Belcher - Engineering Biology to Make Materials for Energy Devices,4920,https://www.youtube.com/watch?v=4Y8pGBfNNDs&feature=youtube_gdata_player
TEDxMaastricht - Ragna van den Berg - "This is your captain speaking",4912,https://www.youtube.com/watch?v=7_f49qyRuy8&feature=youtube_gdata_player
TEDxNextGenerationAsheville - Jonathan Schenker - "School Mods: Gaming The Educational System",4907,https://www.youtube.com/watch?v=auP-eq17U1g&feature=youtube_gdata_player
TEDxJakarta - Dr. Nurul Taufiqu Rochman - Indonesia From A Nanotechnology Perspective,4906,https://www.youtube.com/watch?v=8gkgjyVDQFY&feature=youtube_gdata_player
TEDxBoulder - Peter McGraw - What Makes Things Funny,4903,https://www.youtube.com/watch?v=ysSgG5V-R3U&feature=youtube_gdata_player
TEDxGrandValley - Corey Anton - Death Acceptance as Sustainable Life Practice,4903,https://www.youtube.com/watch?v=yYHtxoHHXjM&feature=youtube_gdata_player
TEDxTC - Terrie Rose - From the Baby's Point Of View,4891,https://www.youtube.com/watch?v=CqSBWEjRggs&feature=youtube_gdata_player
TEDxWarwick - Jay Lakhani - 2/28/09,4890,https://www.youtube.com/watch?v=JR4pocA5iTk&feature=youtube_gdata_player
TEDxEast- Anthony Rudolf- Why Chivalry Still has a Chance,4887,https://www.youtube.com/watch?v=VLAM6YxV_gA&feature=youtube_gdata_player
TEDxMaastricht - Sophie van der Stap - "Girl with the nine wigs",4884,https://www.youtube.com/watch?v=uo9FfMKtCFQ&feature=youtube_gdata_player
TEDxGalicia - Santiago Vazquez - La felicidad en el trabajo,4879,https://www.youtube.com/watch?v=HPhqZ9JBOlU&feature=youtube_gdata_player
TEDxDaejeon - Kim Dae-sik - Never let go of your passion, just keep working on it,4871,https://www.youtube.com/watch?v=E9cVSPWR9Ck&feature=youtube_gdata_player
TEDxEast - Thomas Keller - The reach of a restaurant,4866,https://www.youtube.com/watch?v=QC_hDKzm900&feature=youtube_gdata_player
TEDxBrainport - Mark Post - Meet the new meat,4862,https://www.youtube.com/watch?v=JryIpyi-54E&feature=youtube_gdata_player
TEDxSaoPaulo - Jarbas Agnelli - 11/14/2009,4846,https://www.youtube.com/watch?v=lpIjqNMUcSM&feature=youtube_gdata_player
TEDxDF - Armando Regil - La respuesta eres tú,4839,https://www.youtube.com/watch?v=yRTzNFd7U-E&feature=youtube_gdata_player
TEDxConejo - Jerry Tessendorf - 03/27/10,4835,https://www.youtube.com/watch?v=XW2LtGtCbk0&feature=youtube_gdata_player
TEDxArabia talk - Joshua To - Innovation Could Come From Anywhere,4812,https://www.youtube.com/watch?v=o2JRLa3cQ6Y&feature=youtube_gdata_player
TEDxVorobyovy-Gory - Radislav Gandapas - Energy inside us,4795,https://www.youtube.com/watch?v=oZS_Nu10770&feature=youtube_gdata_player
TEDxCairo - Hany Mwafy - The Difference That Can Make A Difference!,4776,https://www.youtube.com/watch?v=0QOt0CGKl94&feature=youtube_gdata_player
TEDxDoiSuthep - Jon Jandai - Life is easy. Why do we make it so hard?,4772,https://www.youtube.com/watch?v=21j_OCNLuYg&feature=youtube_gdata_player
TEDxLiffey - Mick Wallace - 4/20/10,4751,https://www.youtube.com/watch?v=kiU8qWxsbOw&feature=youtube_gdata_player
TEDxSF - Non Stop Bhangra,4751,https://www.youtube.com/watch?v=CzlP3tu1To0&feature=youtube_gdata_player
TEDxLjubljana - Andrej Bauer - 05/25/09,4727,https://www.youtube.com/watch?v=Ms3N-Sjzudw&feature=youtube_gdata_player
TEDxCarthage - Cyril Grislain Karray - La Prochaine Guerre en Tunisie, La Victoire en 5 batailles,4720,https://www.youtube.com/watch?v=Yd8BTSH1q44&feature=youtube_gdata_player
TEDxRiodelaPlata TEDX Change - Juan Carlos Tedesco - Educación para una sociedad más justa,4714,https://www.youtube.com/watch?v=WDhLvL5N4HU&feature=youtube_gdata_player
TEDxPentagon - Rear Admiral David Titley, USN - Climate Change and National Security,4712,https://www.youtube.com/watch?v=7udNMqRmqV8&feature=youtube_gdata_player
TEDxPhoenixville - Christoper McDougall - Barefoot Running,4701,https://www.youtube.com/watch?v=1i5SAYBvCYk&feature=youtube_gdata_player
TEDxPhnomPenh - Mike Rios - Dong Chim the Quarter-Life Crisis!,4681,https://www.youtube.com/watch?v=OiH2nD3h4xk&feature=youtube_gdata_player
TEDxTaipei - Tommy Chen - A Dream of Extreme Marathoner ( 陳彥博一位極限運動家的夢想 ),4678,https://www.youtube.com/watch?v=XPpqErC0PlE&feature=youtube_gdata_player
TEDxAmsterdam - Rabbi Soetendorp - 11/20/09,4656,https://www.youtube.com/watch?v=I9yaXvb0oJw&feature=youtube_gdata_player
TEDxSanJoseCA - Salman Khan - Providing a Free World Class Education Through Video,4654,https://www.youtube.com/watch?v=vQohlJa2Fls&feature=youtube_gdata_player
TEDxCLE - Michael Ruhlman - 2/26/10,4638,https://www.youtube.com/watch?v=_VJgb2bCfzE&feature=youtube_gdata_player
TEDxPugetSound - Scott Belsky - Making Ideas Happen,4626,https://www.youtube.com/watch?v=lsQtptwMCFI&feature=youtube_gdata_player
TEDxLahore - Beena Raza - Sanjan Nagar Institute's role in promoting musicology,4595,https://www.youtube.com/watch?v=89MavrVu_lU&feature=youtube_gdata_player
TEDxAcademy - Stathis Kalyvas - Greek Perestroika,4592,https://www.youtube.com/watch?v=FuE83Tbl2Gs&feature=youtube_gdata_player
TEDxLisboa - Henrique Cayatte - "A revolta do design",4581,https://www.youtube.com/watch?v=n1q6PwTWYv0&feature=youtube_gdata_player
TEDxBogotá - Felipe Gómez Arbeláez - Actitud E,4580,https://www.youtube.com/watch?v=KWLD1vbAhOY&feature=youtube_gdata_player
TEDxKL - Pete Teo -,4578,https://www.youtube.com/watch?v=obW4H0dnm7I&feature=youtube_gdata_player
TEDxSanDiego - Kurt Gray - Becoming Superman: Doing Good Makes You Strong,4578,https://www.youtube.com/watch?v=KgnR3iIjO_c&feature=youtube_gdata_player
SEEDS Dialogue - Akira Hasegawa and Hiroshi Ishiguro - TEDxSeeds2009,4574,https://www.youtube.com/watch?v=6Te8ySK98bE&feature=youtube_gdata_player
TEDxLeadership Pittsburgh - Nomi Leasure - 11/14/09,4571,https://www.youtube.com/watch?v=nbzriJxqmWg&feature=youtube_gdata_player
TEDxCMU-Amber Rae-The Art of Being Unreasonable,4567,https://www.youtube.com/watch?v=PaD1eEWh9KI&feature=youtube_gdata_player
TEDxSydney - David Chalmers - The Extended Mind,4566,https://www.youtube.com/watch?v=ksasPjrYFTg&feature=youtube_gdata_player
TEDxBuenosAires - Roberto Guareschi - 04/08/10,4557,https://www.youtube.com/watch?v=sDA9lGxkLxo&feature=youtube_gdata_player
TEDxNASA - Sean Forbes - "I'm Deaf",4557,https://www.youtube.com/watch?v=KqcIONhv3QA&feature=youtube_gdata_player
TEDxHultsfred - Lasse Gustavson - A spiritual message, with a glint of humor.,4549,https://www.youtube.com/watch?v=W2oWRqaJbdk&feature=youtube_gdata_player
TEDx Helsinki II - Esa Saarinen - Vauvojen radikalismi,4544,https://www.youtube.com/watch?v=tPGMFGHTexU&feature=youtube_gdata_player
TEDx Helsinki II - Virpi Kuitunen - Luopuminen,4542,https://www.youtube.com/watch?v=vtLmJMfKorE&feature=youtube_gdata_player
TEDxLisboa - António Barreto - "Números e Ideias",4528,https://www.youtube.com/watch?v=HeJjTQir9qA&feature=youtube_gdata_player
TEDxEast - Dr. Naif Al Mutawa - 11/06/09,4522,https://www.youtube.com/watch?v=Iw5iF7LiVPY&feature=youtube_gdata_player
TEDxSydney - Saul Griffith - Living in the Future,4519,https://www.youtube.com/watch?v=XwyQKqlXpNY&feature=youtube_gdata_player
TEDxNYED - Andy Carvin - 03/06/10,4518,https://www.youtube.com/watch?v=q-HxS2ThvKo&feature=youtube_gdata_player
TEDxOrangeCoast - Lindsey Duncan - Transcending the Borders to Optimum Health,4513,https://www.youtube.com/watch?v=YtNRHo_AMfM&feature=youtube_gdata_player
TEDxCluj - Hedi Hoka - The pencil and the dopamine,4510,https://www.youtube.com/watch?v=xGjnCOC1u-M&feature=youtube_gdata_player
TEDxNASA - Sean Forbes - Music + Accessibility = What Matters Next,4510,https://www.youtube.com/watch?v=NA94vVzYWFw&feature=youtube_gdata_player
TEDxBordeaux - Frédéric Couchet - C'est juste une question humaine,4509,https://www.youtube.com/watch?v=mydDQQ638L0&feature=youtube_gdata_player
TEDxAddis - Belachew Girma - World Laughter Master,4509,https://www.youtube.com/watch?v=Bk0ZXeWKD1o&feature=youtube_gdata_player
TEdxMontevideo - Jorge Bafico - El Enigma Del Amor, Desde La Antigua Grecia A Las Redes Sociales,4500,https://www.youtube.com/watch?v=zOE2dsXXqko&feature=youtube_gdata_player
TEDxRainier - Rob Harmon - Blue is the New Green: Water Footprints,4500,https://www.youtube.com/watch?v=LV3ZjORGwoI&feature=youtube_gdata_player
TEDxCalgary - Nick Nissley - A Story About Leadership for Humanity 3.0,4498,https://www.youtube.com/watch?v=t4Be1zcfrN4&feature=youtube_gdata_player
TEDxVancouver - Josh Fox - Water on Fire: A Natural Gas Drilling Crisis,4498,https://www.youtube.com/watch?v=tFBtduSSkoM&feature=youtube_gdata_player
TEDxCanberra - Will Steffen - The Anthropocene,4489,https://www.youtube.com/watch?v=ABZjlfhN0EQ&feature=youtube_gdata_player
TEDxMidAtlantic - Tyler Cowen - 11/5/09,4487,https://www.youtube.com/watch?v=RoEEDKwzNBw&feature=youtube_gdata_player
TEDxCluj - Daniel David - Excelence in Science and Ethics or How to be Human,4481,https://www.youtube.com/watch?v=qMm0Hbl-_sE&feature=youtube_gdata_player
TEDxJamaica - Robert Trivers -Deceit and Self-deception: fooling ourselves the better to fool others,4461,https://www.youtube.com/watch?v=dAljJfR3HZ0&feature=youtube_gdata_player
TEDxBrussels - Mikko H. Hypponen - Defending the Net,4460,https://www.youtube.com/watch?v=rjeQKAaTlNs&feature=youtube_gdata_player
TEDxSydney - Michael Kirby - Asks Religious Leaders & God Botherers to Change their Messages,4457,https://www.youtube.com/watch?v=26c56A9-ac0&feature=youtube_gdata_player
TEDxFiDiWomen - Alisa Vitti - Loving Your Lady Parts as a Path to Success, Power & Global Change,4455,https://www.youtube.com/watch?v=9vKRj9yV8pI&feature=youtube_gdata_player
TEDxRiodelaPlata TEDx Change - Matilde Rusticucci - ¿Por qué nos preocupa el cambio climático?,4455,https://www.youtube.com/watch?v=yhO2VhAr7bE&feature=youtube_gdata_player
TEDxVienna - Sean Bonner - Neominimalism and the Rise of the Technomads,4450,https://www.youtube.com/watch?v=cYFmJ9y6svg&feature=youtube_gdata_player
TEDxNextGenerationAsheville - Nate Wilcox-Pettit - "Why Does Music Make Me Feel So Good?",4445,https://www.youtube.com/watch?v=atRNtb1HlEg&feature=youtube_gdata_player
TEDxAsheville - Adam Baker - Sell your crap. Pay your debt. Do what you love.,4420,https://www.youtube.com/watch?v=9XRPbFIN4lk&feature=youtube_gdata_player
TEDxCairo - Tarek Naga - The Epicenter Of A Civilization,4409,https://www.youtube.com/watch?v=w4Kq7E8aJ4o&feature=youtube_gdata_player
TEDxSeoul - Yeonho Oh - 11/28/09,4383,https://www.youtube.com/watch?v=XaE8qc5x5aY&feature=youtube_gdata_player
TEDxPennQuarter - Frank Lantz - Reinventing Gaming,4377,https://www.youtube.com/watch?v=UcD7p7snqNg&feature=youtube_gdata_player
TEDxTokyo - Kathy Matsui - Womenomics - [English],4376,https://www.youtube.com/watch?v=GOrRAoI37Ls&feature=youtube_gdata_player
TEDxVilnius - Artūras Žukauskas - Kietakūnio Apšvietimo Technologija,4373,https://www.youtube.com/watch?v=HG9Poa17wjo&feature=youtube_gdata_player
TEDxNottingHill - Sabirul Islam - 10/09/09,4366,https://www.youtube.com/watch?v=JHvZK2rNO1c&feature=youtube_gdata_player
TEDxBerlin - Noa Lerner - 11/30/09,4360,https://www.youtube.com/watch?v=NSML-cG46Fo&feature=youtube_gdata_player
TEDxVienna - Josef Prusa - 3D-Printing,4355,https://www.youtube.com/watch?v=viz4Ijahddg&feature=youtube_gdata_player
TEDxAddis - Henock Temesgen,4326,https://www.youtube.com/watch?v=fJT7Wmel63o&feature=youtube_gdata_player
TEDxTransmedia - Jeff Gomez - DAREtoCHANGE,4318,https://www.youtube.com/watch?v=p9SlVedmnw4&feature=youtube_gdata_player
TEDxDF - Laura Anderson Barbata - Sin lo uno no hay lo otro,4317,https://www.youtube.com/watch?v=zRzYfaUCCXI&feature=youtube_gdata_player
TEDxCarthage - Aboubakr Jamaï - Folie 2.0, Folie de croire en nous-même,4306,https://www.youtube.com/watch?v=Om7Mv95C9Bo&feature=youtube_gdata_player
TEDxPenn - Neil Blumenthal - Unexpected: An Eyewear Company as a Force for Good,4305,https://www.youtube.com/watch?v=CUBRL3oPRTo&feature=youtube_gdata_player
TEDxBoston - Dr Jay Bradner - Opensource Drug Discovery,4297,https://www.youtube.com/watch?v=70ua-1e9YN0&feature=youtube_gdata_player
TEDxCaltech - David Awschalom - Spintronics: Abandoning Perfection for the Quantum Age,4294,https://www.youtube.com/watch?v=g9NAUPbqAvE&feature=youtube_gdata_player
TEDxYYC - Ben Cameron - 02/26/10,4291,https://www.youtube.com/watch?v=jl9OiVbmQUA&feature=youtube_gdata_player
TEDxSinCity - Danyelle Demchock and Sadie Gilbertson - Inner Clarity Dance,4278,https://www.youtube.com/watch?v=3YIiXKXlQsM&feature=youtube_gdata_player
TEDxBG - Iva Boneva - 1/9/10,4252,https://www.youtube.com/watch?v=FceBNPv3KW0&feature=youtube_gdata_player
TEDxSF - Arlene Samen - Dying to Give Birth,4250,https://www.youtube.com/watch?v=GuY4Yq_TFko&feature=youtube_gdata_player
TEDxTokyo - 村山斉- 05/15/10 - (日本語),4249,https://www.youtube.com/watch?v=H7JHuEgHPN8&feature=youtube_gdata_player
TEDx@TEDGlobal - June Cohen - What Makes A Great TED Talk,4248,https://www.youtube.com/watch?v=RVDfWfUSBIM&feature=youtube_gdata_player
TEDxBuenosAires - SPREAD THE TED,4246,https://www.youtube.com/watch?v=MH6Mxzan3fU&feature=youtube_gdata_player
TEDxDetroit - Dawn White - 10/21/09,4244,https://www.youtube.com/watch?v=dIWTRwM9UKc&feature=youtube_gdata_player
TEDxFiDiWomen - Sophie Chiche - Learning Curves: Accomplish What Matters to You,4241,https://www.youtube.com/watch?v=GjSgn92BiyE&feature=youtube_gdata_player
TEDxGreenville - Dr. Andrew Thorn - 3/5/2010,4191,https://www.youtube.com/watch?v=6Hax6xE1l9g&feature=youtube_gdata_player
TEDxSinCity - Dave Logan - Make a Genius Tribe,4188,https://www.youtube.com/watch?v=Pvg9fSp1lEI&feature=youtube_gdata_player
TEDxRotterdam - Igor Nikolic - Complex adaptive systems,4184,https://www.youtube.com/watch?v=jS0zj_dYeBE&feature=youtube_gdata_player
TEDxWaterloo - Vincent John Vincent - Immersive Video Gesture Control,4179,https://www.youtube.com/watch?v=XeIOVHPRolo&feature=youtube_gdata_player
TEDxSeoul - Yujin Lee - Open Dubbing Project(ODP),4168,https://www.youtube.com/watch?v=Qo7U-q_qLLQ&feature=youtube_gdata_player
TEDxTerryTalks - Jennifer Gardy - 10/3/09,4156,https://www.youtube.com/watch?v=LmAugMSJ1-Y&feature=youtube_gdata_player
TEDxDU-Regan Linton-5/13/2010,4155,https://www.youtube.com/watch?v=-oUGFy96JFo&feature=youtube_gdata_player
TEDxAmsterdam 2011 - Joris Luyendijk,4154,https://www.youtube.com/watch?v=cJCZkYwuCBM&feature=youtube_gdata_player
TEDxShekhavati - Avika Gor - Don't leave your books for a hobby!,4151,https://www.youtube.com/watch?v=B_l2wpe4dEQ&feature=youtube_gdata_player
TEDxTelAviv - Paul Pablos Holman - Hacking the Future,4143,https://www.youtube.com/watch?v=8Kga-CHf-pU&feature=youtube_gdata_player
TEDxPhnomPenh - Theary Seng - Reconciling Peace with Justice in Cambodia,4139,https://www.youtube.com/watch?v=Qn1_KKl1irg&feature=youtube_gdata_player
TEDxDubai - Ernest VanderPoll - 10/10/09 [بالعربية],4134,https://www.youtube.com/watch?v=FkfQqk2u7vk&feature=youtube_gdata_player
TEDxLisboa - Pedro Bizarro - Assaltos, engarrafamentos e ataques cardíacos,4131,https://www.youtube.com/watch?v=ilv7O2RrIJI&feature=youtube_gdata_player
TEDxNSIT-Puneet Sahani-Leaving Securities,Living Insecurities,4131,https://www.youtube.com/watch?v=a2elrLhk2ss&feature=youtube_gdata_player
TEDxBrooklyn - Karl Chu,4129,https://www.youtube.com/watch?v=_5uDWFSeypM&feature=youtube_gdata_player
TEDxMunich-Chris Bangle - GINA meets pInk!,4128,https://www.youtube.com/watch?v=cFCdngXM04U&feature=youtube_gdata_player
TEDxJakarta - Anies Baswedan - Lighting Up Indonesia's Future (Graphically Recorded),4126,https://www.youtube.com/watch?v=w5CRs6m_vAY&feature=youtube_gdata_player
TEDxDirigo - John Paul Caponigro - YOU'RE A LOT MORE CREATIVE THAN YOU THINK YOU ARE,4121,https://www.youtube.com/watch?v=wAe9iraJkms&feature=youtube_gdata_player
TEDx Helsinki II - Anssi Vanjoki - Vapaaehtoisuuden musertava voima,4117,https://www.youtube.com/watch?v=MwIhraIz3Pw&feature=youtube_gdata_player
TEDxRiodelaPlata - Julián Gallo - Cápsulas del Tiempo,4105,https://www.youtube.com/watch?v=mz1Z1Qe9JkE&feature=youtube_gdata_player
TEDxUofM - AJ Holmes, Ali Gordon, and Carlos Valdes - Writing a Musical,4099,https://www.youtube.com/watch?v=z388vWZmj1M&feature=youtube_gdata_player
TEDxAdelaide - Lorimer Moseley - Why Things Hurt,4096,https://www.youtube.com/watch?v=gwd-wLdIHjs&feature=youtube_gdata_player
TEDxSeattle - Ben Huh - 4/16/10,4093,https://www.youtube.com/watch?v=11s2gFUGWz8&feature=youtube_gdata_player
TEDxUIMP - Dolors Reig - Más grandes en la sociedad web,4088,https://www.youtube.com/watch?v=M1bv1FZlovQ&feature=youtube_gdata_player
TEDx Helsinki II - Juuso Nissilä - Homo Sapiensin epälajinomainen elämä,4060,https://www.youtube.com/watch?v=QJrdgqL3lV4&feature=youtube_gdata_player
TEDxBlue - Jaimie P. Cloud - 10/18/09,4053,https://www.youtube.com/watch?v=jfNV1ATjulU&feature=youtube_gdata_player
TEDxBucharest - Adrian Bejan,4049,https://www.youtube.com/watch?v=9izg6a_VsPc&feature=youtube_gdata_player
TEDx Brussels 2010 - Frank Tipler - The Ultimate Future,4040,https://www.youtube.com/watch?v=tNkuJvhyfP0&feature=youtube_gdata_player
TEDxUWI-Learie Joseph-A Comedian not a Joke,4034,https://www.youtube.com/watch?v=TnY4ffceBfQ&feature=youtube_gdata_player
TEDxNASA - Steve Shapiro - 11/20/09,4028,https://www.youtube.com/watch?v=cUGnEx74470&feature=youtube_gdata_player
TEDxTokyo - Jesper Koll - 05/15/10 - (English),4024,https://www.youtube.com/watch?v=aaMSU_LHhSE&feature=youtube_gdata_player
TEDxEast - Shohei Shigematsu - Super specific,4014,https://www.youtube.com/watch?v=MusbY0yUDPU&feature=youtube_gdata_player
TEDxOakville - Judy Thompson - Three Secrets You Need to Know About Spoken English,4008,https://www.youtube.com/watch?v=NcX2AwH3cG8&feature=youtube_gdata_player
TEDxDF - José Gordon - Imaginantes: El contagio de la creatividad en la educación,4007,https://www.youtube.com/watch?v=qDs8uY-TuEo&feature=youtube_gdata_player
TEDxYonsei - Rhee, Myung-hyun - 01/23/10,4004,https://www.youtube.com/watch?v=OQhXA8tU9ow&feature=youtube_gdata_player
TEDxBilbao - Peter van Dommele - Achieving change through horses,3997,https://www.youtube.com/watch?v=U9V6SfUR3GY&feature=youtube_gdata_player
TEDxVer-o-Peso - Felício Pontes Jr. - Na luta pela minoria da grande Amazônia,3993,https://www.youtube.com/watch?v=7j6bOrpKgfA&feature=youtube_gdata_player
TEDxConejo - Amos Nachoum - No Demons of the Sea,3992,https://www.youtube.com/watch?v=sy72DGDb45E&feature=youtube_gdata_player
TEDxTokyo - マルコ・テンペスト - 05/15/10 - (日本語),3992,https://www.youtube.com/watch?v=e5xAn9a0WrE&feature=youtube_gdata_player
TEDxDubai 2010| Narcicyst | Who We Are, When We Were-Identity In Flux.mov,3990,https://www.youtube.com/watch?v=Libf3KYeCZ8&feature=youtube_gdata_player
TEDxKyiv - Я.Грицак і Є.Глібовицький - Цінності України,3983,https://www.youtube.com/watch?v=noIW9A8V7WE&feature=youtube_gdata_player
TEDxAmsterdam - Peter Westerveld - 11/30/2010,3980,https://www.youtube.com/watch?v=qPdHcAuRKuQ&feature=youtube_gdata_player
TEDxCluj - Eusebiu Burcas - Financial education for the future of Cluj,3964,https://www.youtube.com/watch?v=D0IhlApFASI&feature=youtube_gdata_player
TEDxDetroit - D Blair - 10/21/09,3961,https://www.youtube.com/watch?v=6CCnRr1dQvw&feature=youtube_gdata_player
TEDxNYED - Homa Tavangar - 03/05/2011,3961,https://www.youtube.com/watch?v=gPDWjG8O9VQ&feature=youtube_gdata_player
TEDxSB - Kyle Chin - Let Go,3958,https://www.youtube.com/watch?v=qtcJ8DJMP3U&feature=youtube_gdata_player
TEDxWindyCity -- Mari Gallagher -- Food Deserts,3958,https://www.youtube.com/watch?v=iEWriN6kh3c&feature=youtube_gdata_player
TEDxLahore - Omer Sheikh & Jabran Rafique - All you need is a map and some goodwill,3957,https://www.youtube.com/watch?v=ldtYFACLKmU&feature=youtube_gdata_player
TEDxSol- Iván Ferreiro- Música y mentiras,3955,https://www.youtube.com/watch?v=VFOxJJp2ZCc&feature=youtube_gdata_player
TEDx@TEDWomen Highlights,3944,https://www.youtube.com/watch?v=lK9igjvs0vw&feature=youtube_gdata_player
TEDxVancouver - Guy Dauncey - 11/21/09,3942,https://www.youtube.com/watch?v=ZEf4qzYsh5A&feature=youtube_gdata_player
TEDxNASA - Bobby Braun - Our Generation's Space Race,3937,https://www.youtube.com/watch?v=3pwrI9RFoS4&feature=youtube_gdata_player
TEDxGrandRapids - Layli Miller-Muro - Innovate: Justice,3935,https://www.youtube.com/watch?v=1dhhKh0FR0o&feature=youtube_gdata_player
TEDxHitechCity - Vijay Anand - The 5th Pillar,3927,https://www.youtube.com/watch?v=jXPEpK1mqtA&feature=youtube_gdata_player
TEDxEast - Lauren Redniss - Mistakes Have Been Made,3920,https://www.youtube.com/watch?v=t-qKlOvLpO0&feature=youtube_gdata_player
TEDxHanRiver - Mickey Hyunyu Kim - What Makes Silicon Valley the Heart of Innovation,3916,https://www.youtube.com/watch?v=h8tItzdytyU&feature=youtube_gdata_player
TEDxObserver - Ed Cooke,3912,https://www.youtube.com/watch?v=wwun31AglyY&feature=youtube_gdata_player
TedxVorobyovy-Gory - Leonid Feigin - Infantility as a life-style,3910,https://www.youtube.com/watch?v=d1ycdtKUZ8g&feature=youtube_gdata_player
TEDxSanJoseCA - Jonathan Trent, PhD - Can We Cultivate Energy?,3902,https://www.youtube.com/watch?v=1_z-LnKNlco&feature=youtube_gdata_player
TEDxMekong - Tiến sĩ Phan Quốc Việt - Rèn nhân cách và tạo dựng nhân hiệu,3896,https://www.youtube.com/watch?v=vZIGgelYdDU&feature=youtube_gdata_player
TEDxConcordia - Gad Saad - The Consuming Instinct,3896,https://www.youtube.com/watch?v=P5fOdch-pKU&feature=youtube_gdata_player
TEDxPrague - Cyril Höschl - Vrozené x naučene,3887,https://www.youtube.com/watch?v=jdVXc5E9stE&feature=youtube_gdata_player
TEDxSydney - Jon Jureidini - Fallacy of the Middle Ground & Why We Should Risk Being Wrong,3883,https://www.youtube.com/watch?v=5LxAsRtAnBc&feature=youtube_gdata_player
TEDxCaltech - Steve Collins, Lyle Mays, Kongar-Ol Ondar - Tuva or Bust!,3861,https://www.youtube.com/watch?v=-ZCCekUbPs8&feature=youtube_gdata_player
TEDxTokyo - Hayashiya Imamaru 林家今丸- 05/15/10,3860,https://www.youtube.com/watch?v=8hhVMvqdWWQ&feature=youtube_gdata_player
TEDxParis 2011 - Eric Brun-Sanglard - Designing blind,3850,https://www.youtube.com/watch?v=iM82c9h3gmQ&feature=youtube_gdata_player
TEDx Brussels 2010 - Tan Le - The God Helmet,3849,https://www.youtube.com/watch?v=HoFg8RiI53Q&feature=youtube_gdata_player
TEDxSSN - Yodhakaa - Contemporary Indian Music,3844,https://www.youtube.com/watch?v=4OZ7WKHOxDk&feature=youtube_gdata_player
TEDxConcordia - Mitch Joel - The future of the web may not be social,3837,https://www.youtube.com/watch?v=xh0obyhZPM8&feature=youtube_gdata_player
TEDxZurich - Jojo Mayer - Exploring the distance between 0 and 1,3837,https://www.youtube.com/watch?v=KExLCJAuTXA&feature=youtube_gdata_player
TEDxArabia 2011 | Basma AlSeyofi | بسمه السيوفي | إصرار وإختيار,3830,https://www.youtube.com/watch?v=QRMOr0JZ9XU&feature=youtube_gdata_player
TEDxCaltech - Drew Berry - Visualization: Biology and Complex Circuits,3829,https://www.youtube.com/watch?v=pPC1MZ-xAu4&feature=youtube_gdata_player
TEDxConejo - Marcus Ryle - Sound Science,3828,https://www.youtube.com/watch?v=I8mgxLNuGrY&feature=youtube_gdata_player
TEDxLjubljana - Ciril Horjak - 04/23/10,3827,https://www.youtube.com/watch?v=lMin3lCQvKc&feature=youtube_gdata_player
TEDxDelMar - VS Ramachandran - Our Place in the Cosmos and What Makes Us Unique,3820,https://www.youtube.com/watch?v=LKGQwNlmrQo&feature=youtube_gdata_player
TEDxRiodelaPlata TEDxChange - Kevin Johansen - Musical Performance,3818,https://www.youtube.com/watch?v=JyWAJygRr8A&feature=youtube_gdata_player
TEDxWWF - Dawa Steven Sherpa: Initiating Action,3809,https://www.youtube.com/watch?v=z-WH3mVPsUI&feature=youtube_gdata_player
TEDxEast - Rick Guidotti - Redefining beauty,3806,https://www.youtube.com/watch?v=yIKM7_rgUXU&feature=youtube_gdata_player
TEDxPugetSound - Ed Viesturs - 9/17/09,3798,https://www.youtube.com/watch?v=BDLVuITbeqg&feature=youtube_gdata_player
TEDxVilnius - Tomas Ramanauskas - Vilnius Išalko Idėjų,3794,https://www.youtube.com/watch?v=qoSgOA6YzJA&feature=youtube_gdata_player
TEDxParis 2011 - Irma,3794,https://www.youtube.com/watch?v=VFSax8kwpRA&feature=youtube_gdata_player
TEDxPatagonia - Harold Mayne-Nicholls - 7/30/09,3790,https://www.youtube.com/watch?v=ARj4sBO63UI&feature=youtube_gdata_player
[TEDxHanyang] - 한선천 - 현대무용에 대해,3780,https://www.youtube.com/watch?v=gLAhE8RtrIk&feature=youtube_gdata_player
TEDxTokyo - Naotaka Fujii - Whole Brain - [English],3776,https://www.youtube.com/watch?v=iY1CLqWZYUs&feature=youtube_gdata_player
TEDxRosario - Julieta Gayoso - Las innovaciones textiles del futuro,3775,https://www.youtube.com/watch?v=dDRX-zFSnfc&feature=youtube_gdata_player
TEDxPhnomPenh - Phloeun Prim - Transformation of a Nation Through the Arts,3760,https://www.youtube.com/watch?v=ENs_W9Pne50&feature=youtube_gdata_player
TEDxBarcelona - Pau Garcia-Milà - Cloud's webdesktop, ¿nuevo paradigma?,3760,https://www.youtube.com/watch?v=BPvmLuUtcSU&feature=youtube_gdata_player
TEDxBoston - Seth Priebatsch - The Game Layer On Top of the World,3759,https://www.youtube.com/watch?v=MpGFugASAXw&feature=youtube_gdata_player
TEDxSF - Ozomatli with Josh Kun - At the Edge of Urban Identity,3743,https://www.youtube.com/watch?v=IxqlROnk7WY&feature=youtube_gdata_player
TEDxParis - Anaïs Rassat - 01/30/10,3741,https://www.youtube.com/watch?v=ViPw2gmFPbU&feature=youtube_gdata_player
TEDxAcademy - Yiorgos Panzaris,3740,https://www.youtube.com/watch?v=8Mc-DpATtUw&feature=youtube_gdata_player
TEDxTokyo - 森有一博士- Soil-free Agriculture [日本語],3731,https://www.youtube.com/watch?v=w9rtg9uUcpA&feature=youtube_gdata_player
TEDxAthens - Thodoris Georgakopoulos - The Death of Print Media,3725,https://www.youtube.com/watch?v=MZ_Ta_RD8Hk&feature=youtube_gdata_player
TEDxOKC - Matthew Kenney - "Are You Feeding Your Body or Feeding Dis-ease?",3713,https://www.youtube.com/watch?v=_MT5zE5plno&feature=youtube_gdata_player
TEDxDaejeon - HyeonGi Lim - Admit your faults,3708,https://www.youtube.com/watch?v=YQ5Ybg7NnH4&feature=youtube_gdata_player
TEDxSMU - Frans Lanting - LIFE: A Journey Through Time,3699,https://www.youtube.com/watch?v=Qv1ajY47FVQ&feature=youtube_gdata_player
Salmaan Sana "Compassion for Care",3687,https://www.youtube.com/watch?v=UxaT-YxQds4&feature=youtube_gdata_player
TEDx Arabia talk - Dr.Naif AlMutawa - The 99,3684,https://www.youtube.com/watch?v=WndZz0uqe4U&feature=youtube_gdata_player
TEDxCairo - Hisham El-Gamal - The Magic Of Chasing Dreams,3683,https://www.youtube.com/watch?v=wHO_LwGWamM&feature=youtube_gdata_player
TEDxSB - Alec Loorz - "We Need A Revolution",3678,https://www.youtube.com/watch?v=raW7wu_XxPs&feature=youtube_gdata_player
TEDxGoodenoughCollege - Christian Busch - The Emergence of Impact Business,3677,https://www.youtube.com/watch?v=pTAvp5KX-mw&feature=youtube_gdata_player
TEDxMcGill - Karl Moore - 11/05/09,3672,https://www.youtube.com/watch?v=K8oCkWkTfJ8&feature=youtube_gdata_player
TEDxTaipei - Shun-Ren Tsai - On Oil Painting Restoration ( 蔡舜任- 談油畫修復 ),3662,https://www.youtube.com/watch?v=T8fVvFaFmUw&feature=youtube_gdata_player
TEDxPhilly - Jay Coen Gilbert - On better businesses,3658,https://www.youtube.com/watch?v=mGnz-w9p5FU&feature=youtube_gdata_player
TEDxRotterdam - Noisia - An inside on electronic music,3647,https://www.youtube.com/watch?v=9Em2DIkQYAM&feature=youtube_gdata_player
TEDxCaltech - Nadine Dabby - Programming Molecular Robots,3645,https://www.youtube.com/watch?v=V2d1U4AyDPw&feature=youtube_gdata_player
TEDxBerlin 11/15/10 - Simon Berry - Colalife,3644,https://www.youtube.com/watch?v=PWJUhKF7xik&feature=youtube_gdata_player
TEDxTaipei 2011 - Sheng-yuan Huang (黃聲遠),3642,https://www.youtube.com/watch?v=eK0_nfOrH6M&feature=youtube_gdata_player
TEDxAthens - Dimitris Achlioptas - How to share your brain,3641,https://www.youtube.com/watch?v=9Uby-yuNmiw&feature=youtube_gdata_player
TEDxSF - David Kim - One Man Band,3637,https://www.youtube.com/watch?v=TWD413IGBYM&feature=youtube_gdata_player
TEDxSudeste - Fred Gelli - Biomemética,3634,https://www.youtube.com/watch?v=h-4nK-jyQoY&feature=youtube_gdata_player
TEDxPSU - Tonee Ndungu - Aliens vs. Robots,3634,https://www.youtube.com/watch?v=Q9ObxJvn4yk&feature=youtube_gdata_player
TEDx Helsinki II - Miina Savolainen - Voimauttava Valokuva/Katsoa Toisin,3632,https://www.youtube.com/watch?v=z15BwE6neEU&feature=youtube_gdata_player
TEDxUbud - Robin Lim - Peace Begins at Birth,3625,https://www.youtube.com/watch?v=DeT2KSb14qg&feature=youtube_gdata_player
TEDx Brussels 2010 - Dambisa Moyo - How the West was Lost,3622,https://www.youtube.com/watch?v=zue_Mu3L8xs&feature=youtube_gdata_player
TEDxRosario - Ruben Orsini - Marionetas, ternura y encierro,3620,https://www.youtube.com/watch?v=F4CmDwiPRrw&feature=youtube_gdata_player
TEDxBoston - Benjamin Zander (Finale) - 7/28/09,3613,https://www.youtube.com/watch?v=DMRK1Bw3Q4o&feature=youtube_gdata_player
TEDxRosario - Juan Miguel Lavista - Experimentar para probar ideas,3612,https://www.youtube.com/watch?v=11yNSza3mpo&feature=youtube_gdata_player
TEDxSF - Roz Picard - Emotion Technology,3608,https://www.youtube.com/watch?v=ujxriwApPP4&feature=youtube_gdata_player
TEDxGreenville - Eric Daniels - 3/5/2010,3606,https://www.youtube.com/watch?v=20QXyU23UQQ&feature=youtube_gdata_player
TEDxConcordiaUPortland- Dee Williams - "Dream Big, Live Small",3602,https://www.youtube.com/watch?v=ho7aHrXVupM&feature=youtube_gdata_player
TEDxMidAtlantic - John Forte - 11/5/09,3586,https://www.youtube.com/watch?v=fKZzSfwvASc&feature=youtube_gdata_player
TEDxSiouxFalls - Jolene Loetscher - My Story,3572,https://www.youtube.com/watch?v=FeDSFbZUn7I&feature=youtube_gdata_player
TEDxRamallah - Fadi Ghandour - Ruwwad: Community and Entrepreneurs in Action,3571,https://www.youtube.com/watch?v=KRbMTjnw1gw&feature=youtube_gdata_player
TEDxBratislava - Stela Brix - A 12 year old author about writing a trilogy,3568,https://www.youtube.com/watch?v=JLvFxMoILwc&feature=youtube_gdata_player
TEDxGöteborg - Olof Kolte - 11/28/09,3551,https://www.youtube.com/watch?v=BvoNDDDv0o8&feature=youtube_gdata_player
TEDxBoston - Ryan Chin - 7/28/09,3548,https://www.youtube.com/watch?v=YHSu4f4fcSI&feature=youtube_gdata_player
TEDxTaipei - Alvin Woon - Co-Founder of Plurk, on Social Media ( 噗浪創辦人談社群網站 ),3537,https://www.youtube.com/watch?v=w-S4nyIgZI0&feature=youtube_gdata_player
TEDxAcademy - Paschos Mandravelis - Paradigm Shift in the Greek Society,3530,https://www.youtube.com/watch?v=Vl9L7s8To6g&feature=youtube_gdata_player
TEDxSRM - Vadivel Pillai - The Power of Subconscious Mind,3529,https://www.youtube.com/watch?v=vycpxkLOMcQ&feature=youtube_gdata_player
TEDxRamallah - Mohammad Khatib - Don't Listen to your Mom,3529,https://www.youtube.com/watch?v=G8pZyE8m0iM&feature=youtube_gdata_player
TEDxTraverse City- Teresa Carey My American Dream,3526,https://www.youtube.com/watch?v=wvNWPJjiZw0&feature=youtube_gdata_player
TEDxNASA - Gregg Fraley - 11/20/09,3521,https://www.youtube.com/watch?v=4fYW5iVAl3s&feature=youtube_gdata_player
TEDxMälaren - Mikael Strandberg - NORMALNA, The Siberian Way to Understanding the Meaning of Life,3518,https://www.youtube.com/watch?v=-Pqg0zIuvzA&feature=youtube_gdata_player
TEDxMileHigh - Allen Lim - Life with Bikes,3509,https://www.youtube.com/watch?v=LndpgmPLW-0&feature=youtube_gdata_player
TEDxTaipei - Page Tsou ( 鄒駿昇)- See the World from Back of Heads,3508,https://www.youtube.com/watch?v=AAPA9LuluPY&feature=youtube_gdata_player
TEDxTokyo - Drue Kataoka - 05/15/10 - (English),3507,https://www.youtube.com/watch?v=vL50zvwf3Ak&feature=youtube_gdata_player
TEDxIsfeld Anita Roberts The Transmutation of Suffering into Healing,3507,https://www.youtube.com/watch?v=jE81oJVdrq8&feature=youtube_gdata_player
TEDxParis - Marina Cavazzana-Calvo - 01/30/10,3493,https://www.youtube.com/watch?v=0kv08y6_UCM&feature=youtube_gdata_player
TEDxTokyo - Smily - スマイリー Didgeridoo,3489,https://www.youtube.com/watch?v=7ELC_4WVmg0&feature=youtube_gdata_player
TEDxPearlRiver - Mike Horn - Pangea: Exploring the Limits,3482,https://www.youtube.com/watch?v=4yFOYGCm2Yk&feature=youtube_gdata_player
TEDxSantaCruz: Jonathan Trent - Fuels and Tools for a Sustainable Future,3482,https://www.youtube.com/watch?v=A6oekxl0JAs&feature=youtube_gdata_player
TEDxTokyo -龍村仁- 05/15/10 - (日本語),3475,https://www.youtube.com/watch?v=i5z6ffIWxLE&feature=youtube_gdata_player
TEDxSF - David Shenk - 4/27/10,3465,https://www.youtube.com/watch?v=xE6lWGzO_7A&feature=youtube_gdata_player
TEDxBG - Yavor Djonev - An Educational Reboot,3464,https://www.youtube.com/watch?v=qFOC5qN_-H0&feature=youtube_gdata_player
TEDxTamaya - Michael Reynolds - 11/22/09,3459,https://www.youtube.com/watch?v=FON-UK_1kyI&feature=youtube_gdata_player
TEDxNASA - Jana Stanfield "I Wish You Strength" - 11/20/09,3455,https://www.youtube.com/watch?v=3FG7lV5vylc&feature=youtube_gdata_player
TEDxAmsterdam - Rogier van der Heide - 11/30/10,3454,https://www.youtube.com/watch?v=2umXKHdevHo&feature=youtube_gdata_player
TEDxKrakow-Olga Szwajgier,3445,https://www.youtube.com/watch?v=nptsMBmNnOk&feature=youtube_gdata_player
TEDxTokyo - ABC Tokyo Ballet - ABCバレエ団 - Red Kimono,3441,https://www.youtube.com/watch?v=jo0L-Yd3_1I&feature=youtube_gdata_player
TEDxTallinn - Jaan-Olle Andressoo - 11/20/09,3432,https://www.youtube.com/watch?v=sCQ3dskYF_c&feature=youtube_gdata_player
TEDxCasablanca - Hisham Khribchi - Je blogue donc je suis,3426,https://www.youtube.com/watch?v=HZfhp68JAQs&feature=youtube_gdata_player
TEDxHelsinki - David Wolfe -- Passion for chocolate,3425,https://www.youtube.com/watch?v=s7R5Ty1XfqE&feature=youtube_gdata_player
TEDxLahore - Ajmal Kamal - Making the Urdu Project a living part of our consciousness,3423,https://www.youtube.com/watch?v=Zu5vfW9UmoY&feature=youtube_gdata_player
TEDxNextGenerationAsheville 2010 - David Rudow - "Our Universal Connection",3423,https://www.youtube.com/watch?v=MYxQGCbWkVs&feature=youtube_gdata_player
TEDxYonsei - Anour FA Dafa-Alla - 01/23/10,3422,https://www.youtube.com/watch?v=67DwZ6Tb0JY&feature=youtube_gdata_player
TEDxParis 2011 - Patrick Chappatte - Un nouveau modèle de reportage,3417,https://www.youtube.com/watch?v=Ti_rWjlN4m4&feature=youtube_gdata_player
TEDxMcGill - Sana Saeed - 11/05/09,3415,https://www.youtube.com/watch?v=JCbC-rPpYzI&feature=youtube_gdata_player
TEDxEast Dr. Michael Norton: What to do with your money?,3410,https://www.youtube.com/watch?v=lnXOfHn7Lz8&feature=youtube_gdata_player
TEDxPotomac - Josh Sundquist - 1MT1MT: One More Thing, One More Time,3410,https://www.youtube.com/watch?v=eS6fbsdXtjs&feature=youtube_gdata_player
TEDxBoston - John Werner and MacCalvin Romain - Learning Out of the Box,3391,https://www.youtube.com/watch?v=MxtTthKYEDM&feature=youtube_gdata_player
TEDxCarletonU 2010 - Maria DeRosa - Can Nanotechnology Help Feed The World?,3384,https://www.youtube.com/watch?v=t3Kz_bKPflE&feature=youtube_gdata_player
TEDxASB - Shaheen Mistry - 12/1/09,3379,https://www.youtube.com/watch?v=5jsUsQFv0F8&feature=youtube_gdata_player
TEDxTallinn - Tiit Ojasoo - 11/20/09,3372,https://www.youtube.com/watch?v=gn69rEsEjuM&feature=youtube_gdata_player
TEDxCairo - The Percussion Show - Drum Circle,3372,https://www.youtube.com/watch?v=dsma_dvLzkk&feature=youtube_gdata_player
TEDxAcademy - Costas Apostolidis - Breaking the Stereotypes,3369,https://www.youtube.com/watch?v=mmdohKCeXxo&feature=youtube_gdata_player
TEDxEdges - Mário Silva - Changing the Paradigm of Recycling,3368,https://www.youtube.com/watch?v=PTWbvfrS_ig&feature=youtube_gdata_player
TEDxParis 2011 - Elisabeth Laville - L'innovation, nouvelle frontière du développement durable,3360,https://www.youtube.com/watch?v=66JMHA_6F8Y&feature=youtube_gdata_player
TEDxBogotá - Daniel Buriticá - El secreto de las nuevas generaciones,3360,https://www.youtube.com/watch?v=2V0Zxv_uBqw&feature=youtube_gdata_player
TEDxSeoul - Chibok Song - 11/28/09,3359,https://www.youtube.com/watch?v=_1qZW7dL6TY&feature=youtube_gdata_player
TEDxSingapore - Ginny Phang - Love, Breathe, Just Doula,3358,https://www.youtube.com/watch?v=szjuwyJPB8A&feature=youtube_gdata_player
TEDxDubai - Bruno Giussani - 10/10/09 [بالعربية],3353,https://www.youtube.com/watch?v=T84Pm2_pY5s&feature=youtube_gdata_player
TEDxPrague - Pavel Blažek - Neúspěch - nejlepších způsob, jak se něco naučit,3352,https://www.youtube.com/watch?v=qfyankEj-r4&feature=youtube_gdata_player
TEDx Arabia talk - AbdulMohsen Alajmi - Social Change التغيير المجتمعي,3349,https://www.youtube.com/watch?v=0RwZfPCmRE0&feature=youtube_gdata_player
TEDxStockholm - Jan Gunnarsson - 6/6/09,3349,https://www.youtube.com/watch?v=TeFqGrevf0s&feature=youtube_gdata_player
TEDxPhnomPenh - Keeda Oikawa and Kong Nai - Opening,3347,https://www.youtube.com/watch?v=9mZG22YQGo0&feature=youtube_gdata_player
TEDxDF - Jacqueline Butcher - El arte de Dar,3346,https://www.youtube.com/watch?v=FRZe2rl3lB8&feature=youtube_gdata_player
TEDxAcademy - Babis Mailemenis,3342,https://www.youtube.com/watch?v=UTsYEKriTD4&feature=youtube_gdata_player
TEDxKyiv - Андрій Федорів - Україна-бренд,3338,https://www.youtube.com/watch?v=GCN4pnNu6iI&feature=youtube_gdata_player
TEDxMaastricht - Luciano Floridi - "The fourth technological revolution",3334,https://www.youtube.com/watch?v=c-kJsyU8tgI&feature=youtube_gdata_player
TEDxDar - Modesta Mahiga - Tanzania as an Economic Powerhouse,3333,https://www.youtube.com/watch?v=n94-s3kQPAw&feature=youtube_gdata_player
TEDxCarletonU 2010 - Jim Davies - The Science of Imagination,3327,https://www.youtube.com/watch?v=caBIboOGSe4&feature=youtube_gdata_player
TEDxSoweto - Khaya Dlanga - Power to the People,3327,https://www.youtube.com/watch?v=CsDPgzFH1wA&feature=youtube_gdata_player
TEDxKrungthep - Jennifer Hartley - "The Truth in the Lie",3320,https://www.youtube.com/watch?v=vF5an8JHrOQ&feature=youtube_gdata_player
TEDxManhattanBeach - Dan Burden - Creating Livable Communities,3319,https://www.youtube.com/watch?v=pNlTdoFV9bQ&feature=youtube_gdata_player
TEDxBayArea 12/08/11-Kara Swisher-More,3317,https://www.youtube.com/watch?v=f1k7X2otQhE&feature=youtube_gdata_player
TEDxAtlanta - Teresa Amabile - The Progress Principle,3316,https://www.youtube.com/watch?v=XD6N8bsjOEE&feature=youtube_gdata_player
TEDxBuenosAires - TEDxChange - Rosario Quispe y Jorge Gronda - La potencia de la confianza,3315,https://www.youtube.com/watch?v=W4BZRQlO6zs&feature=youtube_gdata_player
TEDxMIA - Colin Foord - A Hybrid Future - The Corals of Miami,3314,https://www.youtube.com/watch?v=3X3uCnEN7lE&feature=youtube_gdata_player
TEDxKarachi - Monis Rahman - High Impact Innovation Using Levers and Toothpicks,3297,https://www.youtube.com/watch?v=WdYrzcFOJZQ&feature=youtube_gdata_player
TEDxMumbai - V Raghunathan - 04/03/10,3293,https://www.youtube.com/watch?v=kld-H9Hei5c&feature=youtube_gdata_player
TEDxAustin Flint Sparks 2011,3293,https://www.youtube.com/watch?v=X3m2oM_C9bQ&feature=youtube_gdata_player
TEDxThessaloniki - Lena Divani - Is that me? Why not?,3290,https://www.youtube.com/watch?v=PZ6lrOtV8as&feature=youtube_gdata_player
TEDxKyiv - Любко Дереш - Психотехнології,3280,https://www.youtube.com/watch?v=jZ5UhxsmZUM&feature=youtube_gdata_player
TEDxSF - Nina Wise,3279,https://www.youtube.com/watch?v=NcIu4aRwEws&feature=youtube_gdata_player
TEDxEast - Baba Brinkman - 05/07/2010,3276,https://www.youtube.com/watch?v=NI23-1Wn5Ws&feature=youtube_gdata_player
TEDxKwangwoon - 정상구- Change the Travel Style - 03/27/10 - Korean Subtitle,3276,https://www.youtube.com/watch?v=HjF3whP6vc0&feature=youtube_gdata_player
TEDxChCh - Linh Do - Defying Social Norms for Social Change,3272,https://www.youtube.com/watch?v=32GPv32hkHE&feature=youtube_gdata_player
TEDxYSE - Alejandro Velez and Nikhil Arora - The Courage to Ask,3267,https://www.youtube.com/watch?v=C4qtfgrTwLc&feature=youtube_gdata_player
TEDxCasablanca - Youssef Gaboune - Leadership Éthique?,3267,https://www.youtube.com/watch?v=BLR34ePSjf8&feature=youtube_gdata_player
TEDxToronto - Sol Guy "How To Be Powerful",3261,https://www.youtube.com/watch?v=DyGiGevmupk&feature=youtube_gdata_player
TEDxSoMa - David Pescovitz - The World as a Wunderkammer,3251,https://www.youtube.com/watch?v=_disWOfRWeY&feature=youtube_gdata_player
TEDxDarwin - Nick Crocker - Floss the teeth you want to keep,3244,https://www.youtube.com/watch?v=kgI0Xyepzik&feature=youtube_gdata_player
TEDxPhnomPenh - Kounila Keo - Blogging The New Generation of Cambodia,3240,https://www.youtube.com/watch?v=oNpwPrb_5Z0&feature=youtube_gdata_player
TEDxRheinNeckar - Anja Förster und Peter Kreuz - Das volle menschliche Potenzial entfesseln,3233,https://www.youtube.com/watch?v=Y1w1j0kpBo4&feature=youtube_gdata_player
TEDxVancouver - Patrick Moore - 11/21/09,3227,https://www.youtube.com/watch?v=kHZKo13HV2A&feature=youtube_gdata_player
TEDxMonga - Jamie Lin 林之晨- Investing in Tech Start-ups in Taiwan,3222,https://www.youtube.com/watch?v=PQF1_OgQJWQ&feature=youtube_gdata_player
TEDxYonsei - Park Seowon,3220,https://www.youtube.com/watch?v=qquOqAoj0nY&feature=youtube_gdata_player
TEDxBG - Ilian Milinov's Philosophy on Design,3216,https://www.youtube.com/watch?v=r6zqP6HqQ1k&feature=youtube_gdata_player
TEDxSF - Dr. Edward Moses - Synthetic Stars and the Future of Energy,3205,https://www.youtube.com/watch?v=Bhh162dsWwU&feature=youtube_gdata_player
TEDxObserver - Peter Lovatt,3202,https://www.youtube.com/watch?v=nDC7Jpf8f4E&feature=youtube_gdata_player
TEDxJaffa - Michal Ziv - The Key to Affinity and Love,3197,https://www.youtube.com/watch?v=ykVMnWTVYrY&feature=youtube_gdata_player
TEDxLisboa - Rodrigo Viterbo - "O mundo do Didgiredoo",3196,https://www.youtube.com/watch?v=DTZTaKxS0GA&feature=youtube_gdata_player
TEDxRamallah - Laila Atshan - Keeping the Candle Lit,3195,https://www.youtube.com/watch?v=9uDEVl0UxUI&feature=youtube_gdata_player
TEDxRyersonU - Stephen Dunn - Redefining Magic,3195,https://www.youtube.com/watch?v=se2ScJsQ01g&feature=youtube_gdata_player
TEDxCluj - Kingsley Nwabia - Inspiring from Happiness,3192,https://www.youtube.com/watch?v=YCoKqWRbJ5E&feature=youtube_gdata_player
TEDxCluj - Kai Jacobsen - Paradigm shift from war to peace,3185,https://www.youtube.com/watch?v=5P5NCjfpIss&feature=youtube_gdata_player
TEDxTerryTalks - Mike Gretes - 11/22/08,3182,https://www.youtube.com/watch?v=DEXAPysPxm8&feature=youtube_gdata_player
TEDxSF - Berkeley Bionics - Merging Technology and the Human Body,3179,https://www.youtube.com/watch?v=62SmQuMNE0w&feature=youtube_gdata_player
TEDxMarrakesh - Jana Pallaske - Feeling Free,3178,https://www.youtube.com/watch?v=y7vL7jBePWs&feature=youtube_gdata_player
TEDxRainier - Tiberio Simone,3178,https://www.youtube.com/watch?v=RNHX4wiFBlc&feature=youtube_gdata_player
TEDxMidAtlantic 2010 - Saras Sarasvathy - 11/5/10,3175,https://www.youtube.com/watch?v=t5HZW4NqZ-E&feature=youtube_gdata_player
TEDxSeoul-Sung Bum Lee-Appropriate technology,3173,https://www.youtube.com/watch?v=znxAJsY__HM&feature=youtube_gdata_player
TEDxPhoenixville - Rives - iPad Performance,3172,https://www.youtube.com/watch?v=UrMMm2v01OA&feature=youtube_gdata_player
TEDxOverlake - Krissy Moehl - Life in Motion: Learning through Movement,3171,https://www.youtube.com/watch?v=Y7QaqazOv_A&feature=youtube_gdata_player
TEDxTeen - Jeremy Heimans - Aim Higher Than President,3169,https://www.youtube.com/watch?v=3OGK4Q6PKUI&feature=youtube_gdata_player
TEDxJacksonHole - Nona Yehia & Jefferson Ellinger - New Architectures: Nature and Phenomena,3166,https://www.youtube.com/watch?v=Yqsbnee80gQ&feature=youtube_gdata_player
TEDxDU Ramona Pierson #1 -- Learning to learn,3164,https://www.youtube.com/watch?v=2pTy6NeX1E4&feature=youtube_gdata_player
TEDxParis 2011 - Nicole Turbé-Suetens - Télétravail d'avenir,3162,https://www.youtube.com/watch?v=abNCXlEpTWs&feature=youtube_gdata_player
TEDxKC - John Gerzema - 8/20/09,3161,https://www.youtube.com/watch?v=XVU9C-kzGj8&feature=youtube_gdata_player
TEDxManhattanBeach - Idris Al-Oboudi - Parks Make Life Better,3160,https://www.youtube.com/watch?v=9yRH4R37xzI&feature=youtube_gdata_player
TEDxSeoul-Jin-Yong Jeong, Won-Ki Min-After TED Player,3159,https://www.youtube.com/watch?v=iKD4OMs3h8M&feature=youtube_gdata_player
TEDxSF - Jill Vialet - 11/17/09,3157,https://www.youtube.com/watch?v=LdR-tJyjUQY&feature=youtube_gdata_player
TEDxSF - Captain Paul Watson - 4/27/10,3156,https://www.youtube.com/watch?v=Y0XOx_UVRPo&feature=youtube_gdata_player
TEDxSydney - Brett Solomon - Citizen Journalism and the Democratisation of News Coverage,3152,https://www.youtube.com/watch?v=iBIKbMSXWfE&feature=youtube_gdata_player
TEDxRosario - Federico Seineldin - El destino común,3147,https://www.youtube.com/watch?v=p55M3Z34d30&feature=youtube_gdata_player
TEDxDanubia 2011 - Korom Gábor - Ariadné fonala,3147,https://www.youtube.com/watch?v=eDgkTfvJFNY&feature=youtube_gdata_player
TEDxNASA - Ben Rigby - Micro-Volunteering - Giving Back for Busy People,3136,https://www.youtube.com/watch?v=M7-utwTAsPM&feature=youtube_gdata_player
TEDxRedMountain - Patrick Morris - Igniting a Response, The Story of Greek Relief,3136,https://www.youtube.com/watch?v=H6ehPfb9f78&feature=youtube_gdata_player
TEDxSF - Tony Deifell - Seeing Beyond Sight: How what we see and don't see changes the world,3124,https://www.youtube.com/watch?v=nYZuu939pb8&feature=youtube_gdata_player
TEDxLahore - Noor Zehra - Demonstrating the majesty of music through Saagar Veena,3124,https://www.youtube.com/watch?v=jS4iOkiVsVQ&feature=youtube_gdata_player
TEDxEdmonton - Sean Stewart - 3/13/10,3123,https://www.youtube.com/watch?v=HnxVsVetrDI&feature=youtube_gdata_player
TEDxJakarta - Irwan Ahmett - Urban Play,3122,https://www.youtube.com/watch?v=YHpxnZcvAzc&feature=youtube_gdata_player
TEDxSSN - Madhuvanthi Arun - School Education,3115,https://www.youtube.com/watch?v=afjAAm6vziE&feature=youtube_gdata_player
TEDxAcademy - Costas Bakouris,3113,https://www.youtube.com/watch?v=Kic6VQRWabg&feature=youtube_gdata_player
TEDxLisboa - Simão Rubim - "Eu por mim",3111,https://www.youtube.com/watch?v=ghzPo-7XVmQ&feature=youtube_gdata_player
TEDxKyiv - Vlad Troitsky - Cultural Geopolitics,3110,https://www.youtube.com/watch?v=4Pj7_ljes1o&feature=youtube_gdata_player
TEDx Arabia Talk - Muhannad Abu Diyah - Your Ideas= Gold أفكارك تساوي ذهباً,3110,https://www.youtube.com/watch?v=2aGuFXwMQ1Y&feature=youtube_gdata_player
TEDxLahore - Arif Hasan - Building Better Cities,3108,https://www.youtube.com/watch?v=yByhtGTTmPk&feature=youtube_gdata_player
TEDxFullerton - Jill Anjuli Hansen - Open Mind, Open Heart,3107,https://www.youtube.com/watch?v=-mzvAAuCo1c&feature=youtube_gdata_player
TEDxHornstull - Ed Gillespie - Sustainability, the reinvention of progress,3106,https://www.youtube.com/watch?v=rQnaiL2tXjs&feature=youtube_gdata_player
TEDxAlcatraz - Bob Weir - Masters of War to Bird Song,3103,https://www.youtube.com/watch?v=yOLdBA5ulxI&feature=youtube_gdata_player
TEDxCaltech - Simon Fölling - Quantum Simulations,3100,https://www.youtube.com/watch?v=N_n4xaJ1h34&feature=youtube_gdata_player
TEDxSanDiego - Jake Shimabukuro - performance,3098,https://www.youtube.com/watch?v=tnwWXbGDMdU&feature=youtube_gdata_player
TEDxRiodelaPlata - Manuel Lozano - Te invito a creer,3096,https://www.youtube.com/watch?v=tkTEsTASKgA&feature=youtube_gdata_player
TEDxAtlanta - Ellen Dunham-Jones - 01/26/10,3093,https://www.youtube.com/watch?v=yPkalOtT6i4&feature=youtube_gdata_player
TEDxSeoul-Soo in Yang-The Living Architecture,3090,https://www.youtube.com/watch?v=Wlkfu1k_v5s&feature=youtube_gdata_player
TEDxBoston - Ramesh Raskar - Eye Exams: There's An App For That,3090,https://www.youtube.com/watch?v=PvT9tD3NZvo&feature=youtube_gdata_player
TEDxSeoul-Darcy Paquet-Korean films to the global audiences.wmv,3086,https://www.youtube.com/watch?v=nN41Mdfx6HE&feature=youtube_gdata_player
TEDxEroilor - Prof.Dr. Daniel David - Despre Liberul Arbitru. Decizii Libere: Exista?,3085,https://www.youtube.com/watch?v=EFNpcIfvOnA&feature=youtube_gdata_player
TEDxConejo - Hogan Fulton - 3/27/10,3083,https://www.youtube.com/watch?v=PyRY-V86XeU&feature=youtube_gdata_player
TEDxRosario - Rubén Amiel - Cerrar las escuelas secundarias,3076,https://www.youtube.com/watch?v=gk-Ra-pumSM&feature=youtube_gdata_player
TEDxABQ - Rachel Preston Prinz - How Archaeology teaches Sustainable Architecture,3075,https://www.youtube.com/watch?v=wmkIE0hfVko&feature=youtube_gdata_player
TEDxLisboa - Nicolau Santos & Manuel Lourenço - "Como dizia o Cesariny",3075,https://www.youtube.com/watch?v=NQ8ETg04ALM&feature=youtube_gdata_player
TEDxTokyo - TEDx Youth Day - 05/15/10 - English,3071,https://www.youtube.com/watch?v=dJP5SBtj-k0&feature=youtube_gdata_player
TEDxManhattanBeach - Barry Ptolemy - Transcendent Man,3069,https://www.youtube.com/watch?v=GXc466dN4iw&feature=youtube_gdata_player
TEDxYouthSeoul - Wongi Jung - 08/14/10,3063,https://www.youtube.com/watch?v=JjoMiphVdkY&feature=youtube_gdata_player
TEDxParis 2011 - Sylvain Ordureau - Le voyage fantastique,3059,https://www.youtube.com/watch?v=1KTeHeNEB5w&feature=youtube_gdata_player
TEDxAmericanRiviera - Dr. Eric Goodman - The Unexpected Physical Consequences Of Technology,3053,https://www.youtube.com/watch?v=BZcZenvWBlg&feature=youtube_gdata_player
TEDxAddis - Daniel Gad - Mining Gold from Dirt,3052,https://www.youtube.com/watch?v=wU9sp5anU_Y&feature=youtube_gdata_player
TEDxTokyo - Naohiko Umewaka - 05/15/10 - (English),3051,https://www.youtube.com/watch?v=PoC2N2C4K84&feature=youtube_gdata_player
TEDxAmsterdam - Alban Wesly and Calefax Quintet - 11/30/10,3049,https://www.youtube.com/watch?v=XQOOQTUt3VQ&feature=youtube_gdata_player
TEDxYonsei - Dongjoon-Kim - 01/23/10,3045,https://www.youtube.com/watch?v=odm-T8enGPE&feature=youtube_gdata_player
TEDxParis - Françoise Schein - 01/30/10,3044,https://www.youtube.com/watch?v=PCAYjN4Vkew&feature=youtube_gdata_player