Dunno if everyone else has this, but its a great script for saving google "flash" videos for Firefox.
http://www.joshkinberg.com/blog/archive ... google.php
I use total video Converter to switch the .flv to .avi
if its bin posted before...some one delete this thread, cuz Im going to bed.
If not...cheers. :icon32: :icon14:
Saving Google videos
Saving Google videos
[b][url=http://www.flickr.com/photos/redandjonny/]My Flickr page[/url][/b]
[color=#FFBFFF]A lot of people would say it's a bad idea, on your first day out of prison, to go right back to stalking the tranny hooker that knocked out five of your teeth. But that's how I roll..[/color]
[color=#FFBFFF]A lot of people would say it's a bad idea, on your first day out of prison, to go right back to stalking the tranny hooker that knocked out five of your teeth. But that's how I roll..[/color]
-
phantasmagoria
- Posts: 8525
- Joined: Wed Oct 22, 2003 7:00 am
-
eepberries
- Posts: 1975
- Joined: Mon Jan 24, 2005 10:14 pm
Code: Select all
// ==UserScript==
// @name googlevideo - descargar video
// @description descarga flash videos de google video
// @include http://video.google.com/*
// ==/UserScript==
(function() {
function getEl(w){
return document.getElementById(w);
}
vidbl = getEl("playvideoblock");
fl = vidbl.getElementsByTagName("object")[0].data.toString().split("=")[1].split("&")[0];
fl = unescape(fl);
desc = getEl("description");
descP = desc.parentNode;
dv = document.createElement("div");
descP.insertBefore(dv, desc);
dv.innerHTML = "<h2><a href=\""+fl+"\">Download Video</a></h2>";
})();
http://video.google.com/*
to the included pages bit in Greasemonkey too.
This script works for me. Ads a massive 'Download Video' link below the video.
-
phantasmagoria
- Posts: 8525
- Joined: Wed Oct 22, 2003 7:00 am