# Filename: rip-youtube
# Version: 100112
# Author: robz
# This is intended to be used with the Mozilla Firefox browser and run as a
# right-click nautilus script. It recovers "deleted" YouTube video/music files
# from the /proc/ directory.
# Wait until the file download has completed then run the script, copies of the
# media will be placed in the $DEST directory.
# You will need to run the script before closing the tabs or the browser.
DEST="$HOME/Videos"
find /proc/*/fd/ -lname "/tmp/Flash*" 2>/dev/null | xargs -i{} cp {} "$DEST"
# Bare bones but effective.
# Err was effective, looking for a cure!
No comments:
Post a Comment