+1 to bmarkus on flash
how about Jre ( java runtime environment) so that I can download you tube videos via keepvid.com?
I suggest you use youtube-dl
assuming you are on 32 bit try this
tce-load -iw openssl-1.0.1 python
wget https://yt-dl.org/downloads/2015.07.21/youtube-dl -O .local/bin/yt
(result)Connecting to yt-dl.org (95.143.172.170:443)
(result) yt 100% |*******************************| 931k 0:00:00 ETA
chmod +x .local/bin/yt
that gets you youtube-dl into local/bin but it needs python to run it. If you don't want to add python to your "boot" script then you could try this
echo '#!/bin/sh
tce-load -i openssl-1.0.1 python ' > .local/bin/youtube
chmod +x .local/bin/youtube
to get the download you actually run it like this, if you want it all done by local/bin stuff,
youtube to load the running dependencies then grab the download
youtube
yt <some-URL>
eg yt
https://youtu.be/V-oquRLcmAMAFAIK openssl* gives you the certificates needed to work with https.
I wrote this while on 64 bit so it I hope I have it correct.
good luck