This script probably doesn't work. At least it does nothing on pages I 
tested (Link 1 
<http://myvideos.stanford.edu/player/slplayer.aspx?course=CS107&p=true>, Link 
2 <http://myvideos.stanford.edu/player/slplayer.aspx?course=CS143&p=true>, Link 
3 
<http://myvideos.stanford.edu/player/slplayer.aspx?coll=4815c423-66fd-4ba0-b34b-6c6c2c9a75cb&co=7e08d20a-a591-4662-81f8-3ad036a174d0&w=true>).
 
But this simple script works fine:

// ==UserScript==
// @name        SCPD Lecture Video Link Extractor
// @include     http://myvideos.stanford.edu/player/*
// @include     http://myvideosv.stanford.edu/player/*
// @version     1
// @grant       none
// @run-at      document-end
// ==/UserScript==

alert(unsafeWindow.videoURI.replace('mms:','mmsh:'));

With this you get MMSH stream URL. There are many ways to download it, I 
usually use avconv from libav:
avconv -i <download url> -c copy <output filename>

Example:
avconv -i mmsh://proedvid.stanford.edu/videocontent/webinars/080806cantwell.wmv 
-c copy test.wmv

If you have ffmpeg, you can use it too, syntax is the same.

W dniu poniedziałek, 14 września 2015 16:09:28 UTC+2 użytkownik RSlth 
napisał:
>
> Hi
>
> I need to download SCPD videos as my internet is far to slow to stream the 
> videos live.  My research suggests that a greasemonkey script exists for 
> what I am after but I can't make it work.
>
> The script: http://userscripts-mirror.org/scripts/show/168930
>
> So far I have:
> - added the greasemonkey plugin to firefox
> - installed the script within the plug in. 
>
> Not sure what I do next.  Help please :)
>
> Thanks.
>
> RSlth
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"greasemonkey-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/greasemonkey-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to