Skip to content

Commit

Permalink
downloaded site contents from FTP
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudonshore committed May 29, 2012
1 parent 2092e67 commit cc8292f
Show file tree
Hide file tree
Showing 8 changed files with 496 additions and 0 deletions.
Binary file added X.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added divresize.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dragcursor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frameresize.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
479 changes: 479 additions & 0 deletions youtubeframes.html

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions youtubefull.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php
$url = "http://www.youtube.com/watch?v=" . $_GET['url'];
$volume = $_GET['volume'];
$endtime = 0;
$starttime = 0;
if(isset($_GET['endtime']))
{
$endtime = $_GET['endtime'];
}
if(isset($_GET['starttime']))
{
$starttime = $_GET['starttime'];
}

echo "<html><head><script src='jquery.js'></script><script src='../okvideo/okvideo.js'></script><script> $(function(){ $.okvideo({ source: '$url', volume: $volume, hd: false, adproof: false, endtime: $endtime, starttime: $starttime }) }); </script></head><body></body></html>";

?>
Binary file added zdown.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added zup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cc8292f

Please sign in to comment.