<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Download video from Veoh | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/28954</link>
    <description>Recent comments on userscript: Download video from Veoh</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by Mindeye @ Sat, 20 Sep 2008 01:06:05 -0500</title>
      <description>&lt;p&gt;I'm afraid I don't know about that &lt;code&gt;??&lt;/code&gt; operator. Besides, trying to access the &lt;code&gt;[1]&lt;/code&gt; member of the match result if the match method returns null will throw an exception and halt the script&lt;/p&gt;</description>
      <pubDate>Sat, 20 Sep 2008 01:06:05 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:11055:26101</guid>
      <author>Mindeye</author>
      <link>http://userscripts.org/topics/11055</link>
    </item>
    <item>
      <title>Archived Comments, replied by avg @ Fri, 19 Sep 2008 22:08:07 -0500</title>
      <description>&lt;p&gt;I believe this section:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;var permalinkId = window.location.pathname.match(/\/videos\/([\w\d]+)/i);
if (permalinkId === null) {
	return;
}
else {
	permalinkId = permalinkId[1];
}
&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;can be condensed to:
&lt;br /&gt;&lt;pre&gt;var permalinkId = window.location.pathname.match(/\/videos\/([\w\d]+)/i)[1] ?? return;&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 19 Sep 2008 22:08:07 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:11055:26102</guid>
      <author>avg</author>
      <link>http://userscripts.org/topics/11055</link>
    </item>
    <item>
      <title>Archived Comments, replied by Mindeye @ Sat, 12 Jul 2008 08:14:14 -0500</title>
      <description>&lt;p&gt;possumboy:&lt;/p&gt;

&lt;p&gt;Veoh doesn't let you download all the videos in the original format from the page&lt;/p&gt;</description>
      <pubDate>Sat, 12 Jul 2008 08:14:14 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:11055:26103</guid>
      <author>Mindeye</author>
      <link>http://userscripts.org/topics/11055</link>
    </item>
    <item>
      <title>Archived Comments, replied by possumboy @ Fri, 11 Jul 2008 17:04:13 -0500</title>
      <description>&lt;p&gt;isn't this script a bit... pointless?
&lt;br /&gt;I mean you can download the video in its original format already.
&lt;br /&gt;Why would you bother downloading it as an flv?&lt;/p&gt;

&lt;p&gt;Basically why make a script to let you download a video file - when you can already download the video, most likely in a higher quality...&lt;/p&gt;</description>
      <pubDate>Fri, 11 Jul 2008 17:04:13 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:11055:26104</guid>
      <author>possumboy</author>
      <link>http://userscripts.org/topics/11055</link>
    </item>
    <item>
      <title>Archived Comments, replied by Mindeye @ Fri, 11 Jul 2008 16:50:11 -0500</title>
      <description>&lt;p&gt;freeser:&lt;/p&gt;

&lt;p&gt;The script only works in Veoh page, not in other pages with the player embedded. Find the video that page is loading in Veoh and download it from there&lt;/p&gt;</description>
      <pubDate>Fri, 11 Jul 2008 16:50:11 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:11055:26105</guid>
      <author>Mindeye</author>
      <link>http://userscripts.org/topics/11055</link>
    </item>
    <item>
      <title>Archived Comments, replied by Mindeye @ Fri, 11 Jul 2008 16:48:43 -0500</title>
      <description>&lt;p&gt;Script updated:&lt;/p&gt;

&lt;p&gt;- Fixed to work in 18+ videos (any content rating id)&lt;/p&gt;</description>
      <pubDate>Fri, 11 Jul 2008 16:48:43 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:11055:26106</guid>
      <author>Mindeye</author>
      <link>http://userscripts.org/topics/11055</link>
    </item>
    <item>
      <title>Archived Comments, replied by freeser @ Fri, 11 Jul 2008 15:21:56 -0500</title>
      <description>&lt;p&gt;not work :-(( on this site:
&lt;br /&gt;&lt;a href=&quot;http://g-stream.in/g-stream/viewtopic.php?f=88&amp;amp;t=1819&quot;&gt;http://g-stream.in/g-stream/viewtopic.php?f=88&amp;amp;...&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 11 Jul 2008 15:21:56 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:11055:26107</guid>
      <author>freeser</author>
      <link>http://userscripts.org/topics/11055</link>
    </item>
    <item>
      <title>Archived Comments, replied by Mindeye @ Sat, 28 Jun 2008 12:02:09 -0500</title>
      <description>&lt;p&gt;It works for me Sebastian. It adds a &lt;b&gt;Download FLV Video&lt;/b&gt; link in the box under the video. If it doesn't work for you, please post a link to a video page where that happens&lt;/p&gt;</description>
      <pubDate>Sat, 28 Jun 2008 12:02:09 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:11055:26108</guid>
      <author>Mindeye</author>
      <link>http://userscripts.org/topics/11055</link>
    </item>
    <item>
      <title>Archived Comments, replied by Sebastian Lewis @ Sat, 28 Jun 2008 03:32:39 -0500</title>
      <description>&lt;p&gt;The script isn't working at all... it's installed but right clicking on the Greasemonkey Script icon doesn't show it working so I can't even begin to search for a Download link on the page... a screenshot to where it is might also be helpful... but really I just want a link instead of any fancy buttons, I like to copy the location instead of downloading so I can stream it in Quicktime Player instead (I despise Flash).&lt;/p&gt;

&lt;p&gt;Please fix this, and Thanks.&lt;/p&gt;

&lt;p&gt;Sebastian&lt;/p&gt;</description>
      <pubDate>Sat, 28 Jun 2008 03:32:39 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:11055:26109</guid>
      <author>Sebastian Lewis</author>
      <link>http://userscripts.org/topics/11055</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jesse Andrews @ Tue, 16 Nov 2004 19:06:06 -0600</title>
      <description>&lt;p&gt;The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)&lt;/p&gt;</description>
      <pubDate>Tue, 16 Nov 2004 19:06:06 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:11055:26100</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/topics/11055</link>
    </item>
  </channel>
</rss>
