cyx-scraper 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/lib/scraper/article.rb +1 -1
- data/lib/scraper/modules/video.rb +58 -0
- data/lib/scraper/modules/web.rb +9 -0
- data/lib/scraper/modules.rb +6 -0
- data/lib/scraper/vimeo.rb +70 -0
- data/lib/scraper/youtube.rb +26 -36
- data/lib/scraper.rb +6 -1
- data/scraper.gemspec +9 -1
- data/test/fixtures/5826468.html +1260 -0
- data/test/fixtures/dLO2s7SDHJo.html +2781 -0
- data/test/scraper_test.rb +8 -0
- data/test/test_helper.rb +1 -0
- data/test/vimeo_test.rb +99 -0
- data/test/youtube_test.rb +23 -0
- metadata +9 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.3.0
|
data/lib/scraper/article.rb
CHANGED
|
@@ -81,7 +81,7 @@ module Scraper
|
|
|
81
81
|
if args[:content]
|
|
82
82
|
return args[:content]
|
|
83
83
|
elsif args[:url]
|
|
84
|
-
open(args[:url]).read
|
|
84
|
+
Modules::Web.open(args[:url]).read
|
|
85
85
|
else
|
|
86
86
|
raise ArgumentError, "Scraper::Article#initialize only accepts content or url as its argument options"
|
|
87
87
|
end
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
require 'nokogiri'
|
|
2
|
+
require 'open-uri'
|
|
3
|
+
|
|
4
|
+
module Scraper
|
|
5
|
+
module Modules
|
|
6
|
+
module Video
|
|
7
|
+
module HostNameMatching
|
|
8
|
+
def =~( args )
|
|
9
|
+
if args[:url]
|
|
10
|
+
uri = URI.parse( args[:url] )
|
|
11
|
+
|
|
12
|
+
if valid_host_name?( uri.host )
|
|
13
|
+
return true
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def valid_host_name?( host_name )
|
|
19
|
+
host_name.match(config[:valid_host_name])
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
module Common
|
|
24
|
+
def self.included( base )
|
|
25
|
+
base.cattr_accessor :config
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def title
|
|
29
|
+
@title ||= doc.search(config[:title_selector]).first.content
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def description
|
|
33
|
+
return @description if @description
|
|
34
|
+
|
|
35
|
+
html = doc.search(config[:description_selector]).first.inner_html
|
|
36
|
+
@description = dom(html.gsub(/<br\/?>/, ' ')).content.strip
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def video_id
|
|
40
|
+
@video_id
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
protected
|
|
44
|
+
def dom( html )
|
|
45
|
+
Nokogiri::HTML( html )
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def uri
|
|
49
|
+
@uri.scheme + '://' + @uri.host + @uri.request_uri
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
def doc
|
|
53
|
+
@doc ||= dom( Modules::Web.open( uri ).read )
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
end
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
require 'uri'
|
|
2
|
+
require 'open-uri'
|
|
3
|
+
require 'nokogiri'
|
|
4
|
+
require 'builder'
|
|
5
|
+
|
|
6
|
+
module Scraper
|
|
7
|
+
class Vimeo
|
|
8
|
+
@@config = {
|
|
9
|
+
:valid_host_name => /\A([a-z]+\.)?vimeo\.com\z/,
|
|
10
|
+
:video_id_matcher => /([0-9]+)/,
|
|
11
|
+
:title_selector => '.title',
|
|
12
|
+
:description_selector => "#description",
|
|
13
|
+
:thumbnail_selector => ".current.clip .style_wrap img",
|
|
14
|
+
:width => 400,
|
|
15
|
+
:height => 300,
|
|
16
|
+
:video_url => "http://vimeo.com/moogaloop.swf?clip_id=%s&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1"
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
extend Modules::Video::HostNameMatching
|
|
20
|
+
include Modules::Video::Common
|
|
21
|
+
|
|
22
|
+
def initialize( args = {} )
|
|
23
|
+
@uri = URI.parse(args[:url])
|
|
24
|
+
|
|
25
|
+
unless self.class.valid_host_name?(@uri.host)
|
|
26
|
+
raise ArgumentError, "URL must be from vimeo.com"
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
unless @video_id = extract_video_id_from_path( @uri.path )
|
|
30
|
+
raise ArgumentError, "URL must have a video ID in it"
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def html( args = {} )
|
|
35
|
+
w, h = args[:width] || config[:width], args[:height] || config[:height]
|
|
36
|
+
|
|
37
|
+
xml = Builder::XmlMarkup.new
|
|
38
|
+
xml.object :width => w, :height => h do |object|
|
|
39
|
+
object.param(
|
|
40
|
+
:name => 'allowfullscreen', :value => config[:allow_full_screen]
|
|
41
|
+
)
|
|
42
|
+
object.param :name => 'allowscriptaccess', :value => 'always'
|
|
43
|
+
object.param :name => 'movie', :value => video_url
|
|
44
|
+
object.embed(
|
|
45
|
+
:src => video_url,
|
|
46
|
+
:type => config[:mime_type],
|
|
47
|
+
:allowfullscreen => config[:allow_full_screen],
|
|
48
|
+
:allowscriptaccess => 'always',
|
|
49
|
+
:width => w,
|
|
50
|
+
:height => h
|
|
51
|
+
)
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
def thumbnail
|
|
56
|
+
@thumbnail ||=
|
|
57
|
+
doc.search(config[:thumbnail_selector]).first.attribute('src').to_s
|
|
58
|
+
end
|
|
59
|
+
private
|
|
60
|
+
def video_url
|
|
61
|
+
sprintf(config[:video_url], video_id)
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
def extract_video_id_from_path( path )
|
|
65
|
+
if matches = path.match(config[:video_id_matcher])
|
|
66
|
+
return matches[1]
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
end
|
data/lib/scraper/youtube.rb
CHANGED
|
@@ -24,72 +24,62 @@ require 'builder'
|
|
|
24
24
|
|
|
25
25
|
module Scraper
|
|
26
26
|
class Youtube
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
@@config = {
|
|
28
|
+
:valid_host_name => /\A([a-z]+\.)?youtube\.com\z/,
|
|
29
|
+
:title_selector => 'h1',
|
|
30
|
+
:description_selector => '.expand-content .description span',
|
|
31
|
+
:video_id_matcher => /([^&]+&)?v=([^&]+)/,
|
|
32
|
+
:width => 325,
|
|
33
|
+
:height => 244,
|
|
34
|
+
:allow_full_screen => true,
|
|
35
|
+
:mime_type => 'application/x-shockwave-flash'
|
|
36
|
+
}
|
|
29
37
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
ALLOW_FULL_SCREEN = true
|
|
33
|
-
MIME_TYPE = 'application/x-shockwave-flash'
|
|
34
|
-
|
|
35
|
-
attr_reader :video_id
|
|
36
|
-
|
|
37
|
-
class << self
|
|
38
|
-
def =~( args )
|
|
39
|
-
if args[:url]
|
|
40
|
-
uri = URI.parse( args[:url] )
|
|
41
|
-
|
|
42
|
-
if valid_host_name?( uri.host )
|
|
43
|
-
return true
|
|
44
|
-
end
|
|
45
|
-
end
|
|
46
|
-
end
|
|
47
|
-
|
|
48
|
-
def valid_host_name?( host_name )
|
|
49
|
-
host_name.match(VALID_HOST_NAME)
|
|
50
|
-
end
|
|
51
|
-
end
|
|
38
|
+
extend Modules::Video::HostNameMatching
|
|
39
|
+
include Modules::Video::Common
|
|
52
40
|
|
|
53
41
|
def initialize( args = {} )
|
|
54
|
-
uri = URI.parse(args[:url])
|
|
42
|
+
@uri = URI.parse(args[:url])
|
|
55
43
|
|
|
56
|
-
unless self.class.valid_host_name?(uri.host)
|
|
44
|
+
unless self.class.valid_host_name?(@uri.host)
|
|
57
45
|
raise ArgumentError, "URL must be from youtube.com"
|
|
58
46
|
end
|
|
59
47
|
|
|
60
|
-
unless @video_id = extract_video_id_from_query_string( uri.query )
|
|
48
|
+
unless @video_id = extract_video_id_from_query_string( @uri.query )
|
|
61
49
|
raise ArgumentError, "URL must have a video ID in it"
|
|
62
50
|
end
|
|
63
51
|
end
|
|
64
52
|
|
|
65
53
|
def html( args = {} )
|
|
66
|
-
w, h = args[:width] ||
|
|
54
|
+
w, h = args[:width] || config[:width], args[:height] || config[:height]
|
|
67
55
|
|
|
68
56
|
xml = Builder::XmlMarkup.new
|
|
69
57
|
xml.object(:width => w, :height => h) do |object|
|
|
70
|
-
object.param :name => 'movie', :value =>
|
|
71
|
-
object.param
|
|
58
|
+
object.param :name => 'movie', :value => video_url
|
|
59
|
+
object.param(
|
|
60
|
+
:name => 'allowFullScreen', :value => config[:allow_full_screen]
|
|
61
|
+
)
|
|
72
62
|
object.param :name => 'allowscriptaccess', :value => 'always'
|
|
73
|
-
object.embed :src =>
|
|
74
|
-
:type =>
|
|
63
|
+
object.embed :src => video_url,
|
|
64
|
+
:type => config[:mime_type],
|
|
75
65
|
:allowscriptaccess => 'always',
|
|
76
|
-
:allowfullscreen =>
|
|
66
|
+
:allowfullscreen => config[:allow_full_screen],
|
|
77
67
|
:width => w,
|
|
78
68
|
:height => h
|
|
79
69
|
end
|
|
80
70
|
end
|
|
81
71
|
|
|
82
72
|
def thumbnail
|
|
83
|
-
"http://i.ytimg.com/vi/#{
|
|
73
|
+
"http://i.ytimg.com/vi/#{video_id}/2.jpg"
|
|
84
74
|
end
|
|
85
75
|
|
|
86
76
|
private
|
|
87
|
-
def
|
|
77
|
+
def video_url
|
|
88
78
|
:"http://www.youtube.com/v/#{video_id}&hl=en&fs=1"
|
|
89
79
|
end
|
|
90
80
|
|
|
91
81
|
def extract_video_id_from_query_string( query_string )
|
|
92
|
-
if matches = query_string.match(
|
|
82
|
+
if matches = query_string.match(config[:video_id_matcher])
|
|
93
83
|
matches[2]
|
|
94
84
|
end
|
|
95
85
|
end
|
data/lib/scraper.rb
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
require 'rubygems'
|
|
2
|
+
require 'activesupport'
|
|
3
|
+
|
|
1
4
|
module Scraper
|
|
2
5
|
autoload :Article, 'scraper/article'
|
|
3
6
|
autoload :Youtube, 'scraper/youtube'
|
|
4
|
-
|
|
7
|
+
autoload :Vimeo, 'scraper/vimeo'
|
|
8
|
+
autoload :Modules, 'scraper/modules'
|
|
9
|
+
|
|
5
10
|
HANDLERS = [ :Youtube, :Article ]
|
|
6
11
|
end
|
|
7
12
|
|
data/scraper.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{scraper}
|
|
5
|
-
s.version = "0.
|
|
5
|
+
s.version = "0.3.0"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Cyril David"]
|
|
@@ -21,13 +21,20 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
"VERSION",
|
|
22
22
|
"lib/scraper.rb",
|
|
23
23
|
"lib/scraper/article.rb",
|
|
24
|
+
"lib/scraper/modules.rb",
|
|
25
|
+
"lib/scraper/modules/video.rb",
|
|
26
|
+
"lib/scraper/modules/web.rb",
|
|
27
|
+
"lib/scraper/vimeo.rb",
|
|
24
28
|
"lib/scraper/youtube.rb",
|
|
25
29
|
"scraper.gemspec",
|
|
26
30
|
"test/article_test.rb",
|
|
31
|
+
"test/fixtures/5826468.html",
|
|
32
|
+
"test/fixtures/dLO2s7SDHJo.html",
|
|
27
33
|
"test/fixtures/scraped.html",
|
|
28
34
|
"test/fixtures/unwebbable.html",
|
|
29
35
|
"test/scraper_test.rb",
|
|
30
36
|
"test/test_helper.rb",
|
|
37
|
+
"test/vimeo_test.rb",
|
|
31
38
|
"test/youtube_test.rb"
|
|
32
39
|
]
|
|
33
40
|
s.homepage = %q{http://github.com/cyx/scraper}
|
|
@@ -39,6 +46,7 @@ Gem::Specification.new do |s|
|
|
|
39
46
|
"test/article_test.rb",
|
|
40
47
|
"test/scraper_test.rb",
|
|
41
48
|
"test/test_helper.rb",
|
|
49
|
+
"test/vimeo_test.rb",
|
|
42
50
|
"test/youtube_test.rb"
|
|
43
51
|
]
|
|
44
52
|
|
|
@@ -0,0 +1,1260 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
2
|
+
<!-- _
|
|
3
|
+
__ _|_|_ __ ___ ___ ___
|
|
4
|
+
\ \ / / | '_ ' _ \ / _ \/ _ \
|
|
5
|
+
\ V /| | | | | | | __/ |_| |
|
|
6
|
+
\_/ |_|_| |_| |_|\___|\___/
|
|
7
|
+
-->
|
|
8
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:fb="http://www.facebook.com/2008/fbml">
|
|
9
|
+
<head>
|
|
10
|
+
|
|
11
|
+
<title>Sunlight Heaven on Vimeo</title>
|
|
12
|
+
|
|
13
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
14
|
+
<meta http-equiv="imagetoolbar" content="no" />
|
|
15
|
+
|
|
16
|
+
<meta name="title" content="Sunlight Heaven" />
|
|
17
|
+
<meta name="description" content="Sunrise is one of the greatest things in life. it’s a pity that i don’t see it very often. Here i tried to catch the mood of the morning sun on the way back home to Sajkod from Balatonsound festival.
|
|
18
|
+
|
|
19
|
+
shot in Hungary @ lake Balaton, mainly on the ferry from Szántód to Tihany.
|
|
20
|
+
|
|
21
|
+
the music is Sunlight, Heaven from Julianna Barwick
|
|
22
|
+
|
|
23
|
+
i used
|
|
24
|
+
canon hv30
|
|
25
|
+
DIY 35mm adapter (static) with nikon lens (50mm) 1.4
|
|
26
|
+
" />
|
|
27
|
+
<meta name="video_type" content="application/x-shockwave-flash" />
|
|
28
|
+
<meta name="video_height" content="360" />
|
|
29
|
+
<meta name="video_width" content="640" />
|
|
30
|
+
<meta name="video_type" content="application/x-shockwave-flash" />
|
|
31
|
+
<meta name="video_height" content="1" />
|
|
32
|
+
<meta name="video_width" content="1" />
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
<meta name="keywords" content="lake Balaton,Balatonsound,ferry,35mm adapter,filmlook,canon hv30,HD,sunrise,morning,lake" />
|
|
36
|
+
|
|
37
|
+
<script type="text/javascript" src="/assets/js/get/27143/mootools.v1.11_jsmin,mootools_ext,video,framebuster,google_afc,forage,share,moo_rainbow,embed,flash.detection,swfobject.v1.5,scrollybrozar"></script>
|
|
38
|
+
<link rel="stylesheet" type="text/css" media="all" href="/assets/css/get/27143/global,lightbox,comments,video,forage,embed,share,moo_rainbow,video_brozar">
|
|
39
|
+
<!--[if IE]>
|
|
40
|
+
<link rel="stylesheet" type="text/css" href="http://bitcast.vimeo.com/vimeo/assets/css/ie.css?27143" />
|
|
41
|
+
<![endif]-->
|
|
42
|
+
<!--[if IE 7]>
|
|
43
|
+
<link rel="stylesheet" type="text/css" href="http://bitcast.vimeo.com/vimeo/assets/css/ie7.css?27143" />
|
|
44
|
+
<![endif]-->
|
|
45
|
+
<!--[if IE 6]>
|
|
46
|
+
<link rel="stylesheet" type="text/css" href="http://bitcast.vimeo.com/vimeo/assets/css/ie6.css?27143" />
|
|
47
|
+
<![endif]-->
|
|
48
|
+
|
|
49
|
+
<link rel="image_src" href="http://ts.vimeo.com.s3.amazonaws.com/204/207/20420769_200.jpg" type="image/jpeg" />
|
|
50
|
+
<link rel="videothumbnail" href="http://ts.vimeo.com.s3.amazonaws.com/204/207/20420769_200.jpg" type="image/jpeg" />
|
|
51
|
+
<link rel="video_src" href="http://vimeo.com/moogaloop.swf?clip_id=5826468" />
|
|
52
|
+
<link rel="alternate" href="http://vimeo.com/api/oembed.json?url=http%3A%2F%2Fvimeo.com%2F5826468" type="application/json+oembed" />
|
|
53
|
+
<link rel="alternate" href="http://vimeo.com/api/oembed.xml?url=http%3A%2F%2Fvimeo.com%2F5826468" type="application/xml+oembed" />
|
|
54
|
+
|
|
55
|
+
</head>
|
|
56
|
+
<body>
|
|
57
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/smoke.png" id="lightbox_wrapper" class="lightbox_wrapper transifyme" style="display:none;" alt="" />
|
|
58
|
+
<div id="lightbox"></div>
|
|
59
|
+
|
|
60
|
+
<div id="everything">
|
|
61
|
+
<div id="top">
|
|
62
|
+
|
|
63
|
+
<a href="/"><img src="http://bitcast.vimeo.com/vimeo/assets/images/logo.gif" alt="Vimeo" id="vimeo_logo" /></a>
|
|
64
|
+
<div id="newmenudo">
|
|
65
|
+
<ul id="nav" class="grandpappy">
|
|
66
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_capright.png" class="transifyme" id="capright" alt="">
|
|
67
|
+
<li class="firstborn search" id="menudo_search_subtier">
|
|
68
|
+
<div class="rounded_input">
|
|
69
|
+
<div class="contain">
|
|
70
|
+
<form onsubmit="menudo_search(); return false;" name="search">
|
|
71
|
+
<input id="menudo_search_field" type="text" onblur="menudo_search_blur()" onclick="menudo_search_click()" value="Search Videos" class="field" />
|
|
72
|
+
<input type="submit" value="" onclick="menudo_search(); return false;" class="button" />
|
|
73
|
+
</form>
|
|
74
|
+
</div>
|
|
75
|
+
</div>
|
|
76
|
+
<ul class="dotted favoritechild menudo_subtier">
|
|
77
|
+
<li id="menudo_search_videos" class="first selected first"><a href="javascript:void(0)" onclick="menudo_search_change('Videos')">Search Videos</a><img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_shoulderleft.png" class="transifyme left_shoulder" alt="" />
|
|
78
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_shoulderright.png" class="transifyme right_shoulder" alt="" /></li>
|
|
79
|
+
<li id="menudo_search_people" class=""><a href="javascript:void(0)" onclick="menudo_search_change('People')">Search People</a></li>
|
|
80
|
+
<li id="menudo_search_groups" class=""><a href="javascript:void(0)" onclick="menudo_search_change('Groups')">Search Groups</a></li>
|
|
81
|
+
<li id="menudo_search_channels" class=""><a href="javascript:void(0)" onclick="menudo_search_change('Channels')">Search Channels</a></li>
|
|
82
|
+
<li id="menudo_search_forums" class="last"><a href="javascript:void(0)" onclick="menudo_search_change('Forums')">Search Forums</a></li>
|
|
83
|
+
<li style="margin-top: 0px; background: transparent;">
|
|
84
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_cheekleft.png" class="transifyme cheek_left" alt="" />
|
|
85
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_filler.gif" class="" style="height: 20px; width: 100%;" alt="" />
|
|
86
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_cheekright.png" class="transifyme cheek_right" alt="" />
|
|
87
|
+
</li>
|
|
88
|
+
</ul>
|
|
89
|
+
</li>
|
|
90
|
+
<li class="firstborn help">
|
|
91
|
+
<a class="label" href="/help">Help</a>
|
|
92
|
+
<ul class="dotted favoritechild">
|
|
93
|
+
<li class="first">
|
|
94
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_shoulderleft.png" class="transifyme left_shoulder" alt="" />
|
|
95
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_shoulderright.png" class="transifyme right_shoulder" alt="" />
|
|
96
|
+
<a href="/help">Help Center</a>
|
|
97
|
+
</li>
|
|
98
|
+
<li><a href="/help/basics">Vimeo Basics</a></li>
|
|
99
|
+
<li><a href="/guidelines">Community Guidelines</a></li>
|
|
100
|
+
<li><a href="/forums">Community Forums</a></li>
|
|
101
|
+
<li class="last"><a href="/api">Developers</a></li>
|
|
102
|
+
<li style="margin-top: 0px; background: transparent;">
|
|
103
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_cheekleft.png" class="transifyme cheek_left" style="" alt="" />
|
|
104
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_filler.gif" class="" style="height: 20px; width: 100%;" alt="" />
|
|
105
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_cheekright.png" class="transifyme cheek_right" alt="" />
|
|
106
|
+
</li>
|
|
107
|
+
</ul>
|
|
108
|
+
</li>
|
|
109
|
+
<li class="firstborn explore" id="menudo_explore">
|
|
110
|
+
<a href="/explore" class="label">Explore</a>
|
|
111
|
+
<ul class="favoritechild dotted">
|
|
112
|
+
<li class="first">
|
|
113
|
+
<a href="/categories">Categories</a>
|
|
114
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_shoulderleft.png" class="transifyme left_shoulder" alt="" />
|
|
115
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_shoulderright.png" class="transifyme right_shoulder" alt="" />
|
|
116
|
+
</li>
|
|
117
|
+
<li>
|
|
118
|
+
<a href="/groups">Groups</a>
|
|
119
|
+
</li>
|
|
120
|
+
<li>
|
|
121
|
+
<a href="/channels">Channels</a>
|
|
122
|
+
</li>
|
|
123
|
+
<li><a href="/hd">HD Videos</a></li>
|
|
124
|
+
<li><a href="/staffpicks">Staff Picks</a></li>
|
|
125
|
+
<li><a href="/forum:vimeo_projects">Projects</a></li>
|
|
126
|
+
<li class="last"><a href="/toys">Toys</a></li>
|
|
127
|
+
<li style="margin-top: 0px; background: transparent;">
|
|
128
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_cheekleft.png" class="transifyme cheek_left" alt="" />
|
|
129
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_filler.gif" class="" style="height: 20px; width: 100%;" alt="" />
|
|
130
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_cheekright.png" class="transifyme cheek_right" alt="" />
|
|
131
|
+
</li>
|
|
132
|
+
</ul>
|
|
133
|
+
</li>
|
|
134
|
+
<li class="firstborn login">
|
|
135
|
+
<a class="label" href="/log_in" rel="nofollow" onclick="loginLightbox('login'); return false;">Log In</a>
|
|
136
|
+
</li>
|
|
137
|
+
<li class="firstborn join">
|
|
138
|
+
<ul class="favoritechild">
|
|
139
|
+
<li class="first">
|
|
140
|
+
<span class="child first last jointime">
|
|
141
|
+
<span class="small" style="color: #172322; font-weight: bold;">Sign up now and...</span>
|
|
142
|
+
<div class="small_bullets">
|
|
143
|
+
<span class="small" style="color: #4D6434; font-size: 11px; _font-size: 9px; font-weight: bold; font-family:arial, sans-serif;">
|
|
144
|
+
1. Upload your videos<br />
|
|
145
|
+
2. Share your videos<br />
|
|
146
|
+
3. Connect with others
|
|
147
|
+
</span>
|
|
148
|
+
</div>
|
|
149
|
+
<div class="menudo_join_area">
|
|
150
|
+
<a href="/join" rel="nofollow"><img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_join_button.gif" alt="Join Vimeo" /></a>
|
|
151
|
+
</div>
|
|
152
|
+
</span>
|
|
153
|
+
</li>
|
|
154
|
+
<li style="margin-top: 0px; background: transparent;">
|
|
155
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_cheekleft_green.png" class="transifyme cheek_left" alt="" />
|
|
156
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_filler_green.gif" class="" style="height: 20px; _height: 21px; width: 100%;" alt="" />
|
|
157
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/menudo_cheekright_green.png" class="transifyme cheek_right" alt="" />
|
|
158
|
+
</li>
|
|
159
|
+
</ul>
|
|
160
|
+
<img src="http://bitcast.vimeo.com/vimeo/assets/images/newmenudo_join.png" class="joinimage" alt="" onclick="window.location = '/join';" />
|
|
161
|
+
</li>
|
|
162
|
+
|
|
163
|
+
</ul>
|
|
164
|
+
</div>
|
|
165
|
+
<div id="toolbar">
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
</div>
|
|
169
|
+
|
|
170
|
+
</div>
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
<div id="main" class="main">
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
<div id="header">
|
|
177
|
+
<div class="portrait"><img src="http://images.vimeo.com/11/45/49/114549837/114549837_75.jpg" alt="" title="Giugesco" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:1105781, clip:1})" /></div>
|
|
178
|
+
<div class="rightside_hd">
|
|
179
|
+
<div class="title">Sunlight Heaven</div>
|
|
180
|
+
<div class="byline">by <a href="/giugesco">Giugesco</a> </div>
|
|
181
|
+
<div class="date" onmouseover="swap('clip-timeago','clip-date');" onmouseout="swap('clip-date','clip-timeago');">
|
|
182
|
+
<span id="clip-timeago" >1 day ago</span>
|
|
183
|
+
<span id="clip-date" style="display:none">1 day ago: Wed, Jul 29, 2009 3:59pm EST (Eastern Standard Time)</span>
|
|
184
|
+
</div>
|
|
185
|
+
</div>
|
|
186
|
+
<div class="clear"></div>
|
|
187
|
+
|
|
188
|
+
</div>
|
|
189
|
+
|
|
190
|
+
<div id="meat">
|
|
191
|
+
<div class="video_container_hd">
|
|
192
|
+
<div class="video">
|
|
193
|
+
|
|
194
|
+
<div class="vimeo_holder">
|
|
195
|
+
<div id="vimeo_player_5826468" class="player" style="width:640px;height:360px;">
|
|
196
|
+
<div id="vimeo_swf4a729529c7ec0" style="width: 100%; height: 100%; display: none;" class="swf_holder">
|
|
197
|
+
<object class="swf_holder"type="application/x-shockwave-flash" width="640" height="360" data="/moogaloop_local.swf?clip_id=5826468&server=vimeo.com&autoplay=0&fullscreen=1&show_portrait=0&show_title=0&show_byline=0&color=00ADEF&context=user:1105781&context_id=&hd_off=0&buildnum=27143">
|
|
198
|
+
<param name="quality" value="high" />
|
|
199
|
+
<param name="allowfullscreen" value="true" />
|
|
200
|
+
<param name="AllowScriptAccess" value="always" />
|
|
201
|
+
<param name="wmode" value="transparent" />
|
|
202
|
+
<param name="scale" value="showAll" />
|
|
203
|
+
<param name="movie" value="/moogaloop_local.swf?clip_id=5826468&server=vimeo.com&autoplay=0&fullscreen=1&show_portrait=0&show_title=0&show_byline=0&color=00ADEF&context=user:1105781&context_id=&hd_off=0&buildnum=27143" />
|
|
204
|
+
</object>
|
|
205
|
+
</div>
|
|
206
|
+
</div>
|
|
207
|
+
</div>
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
</div>
|
|
211
|
+
|
|
212
|
+
<div class="video_stuff">
|
|
213
|
+
<div id="context_browser_1">
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
<style>
|
|
217
|
+
.brozar .content .clip .info span,
|
|
218
|
+
.brozar .content .clip .info .byline,
|
|
219
|
+
.brozar .content .clip .info .index,
|
|
220
|
+
.brozar .content .clip .info .time { color: #969696; }
|
|
221
|
+
|
|
222
|
+
.brozar .content .current img { border: 5px solid #77d4fd; }
|
|
223
|
+
|
|
224
|
+
.brozar .tabs .softcorners2,
|
|
225
|
+
.add_to .option label,
|
|
226
|
+
.brozar .context span { color: #3e3e3e; }
|
|
227
|
+
|
|
228
|
+
.brozar .content .current .style_wrap { color: #3e3e3e; /*background: #F5F5F1;*/ }
|
|
229
|
+
|
|
230
|
+
.brozar .add_to .title { color: #969696; }
|
|
231
|
+
|
|
232
|
+
.brozar .dropdown { border: 3px solid #CFCEC3; }
|
|
233
|
+
</style>
|
|
234
|
+
|
|
235
|
+
<div class="brozar">
|
|
236
|
+
<div class="tabs" style="background: #ffffff;">
|
|
237
|
+
<div id="brozar4a729529ca5c3_tab_more_on" class="softcorners2" style="background:#F4F4EE; display: none;width: 76px; cursor: pointer;" onclick="brozar_tab('brozar4a729529ca5c3', 'more');">
|
|
238
|
+
<div class="sosoft" style=" background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_tr_8_f4f4ee_ffffff.gif') no-repeat top right; height: 8px;">
|
|
239
|
+
<div style=" background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_tl_8_f4f4ee_ffffff.gif') no-repeat top left; height: 8px;"></div>
|
|
240
|
+
</div>
|
|
241
|
+
<div id="brozar4a729529ca5c3_tab_more_on_insides" class="insides">
|
|
242
|
+
<span class="faux_link" onmouseover="faux_link(this)" onmouseout="faux_link(this)">More</span>
|
|
243
|
+
</div>
|
|
244
|
+
</div>
|
|
245
|
+
<div id="brozar4a729529ca5c3_tab_more_off" class="softcorners2" style="background:#E7E7DE; width: 76px; cursor: pointer;" >
|
|
246
|
+
<div class="sosoft" style=" background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_tr_8_e7e7de_ffffff.gif') no-repeat top right; height: 8px;">
|
|
247
|
+
<div style=" background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_tl_8_e7e7de_ffffff.gif') no-repeat top left; height: 8px;"></div>
|
|
248
|
+
</div>
|
|
249
|
+
<div id="brozar4a729529ca5c3_tab_more_off_insides" class="insides">
|
|
250
|
+
More
|
|
251
|
+
</div>
|
|
252
|
+
</div>
|
|
253
|
+
|
|
254
|
+
<div id="starz_tab_off" class="starz_tab" onclick="brozar_tab('brozar4a729529ca5c3', this.id);"></div>
|
|
255
|
+
<div id="starz_tab_on" class="starz_tab" style="display: none;"></div>
|
|
256
|
+
<div class="clear"></div>
|
|
257
|
+
</div>
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
<div class="softcorners2" style="background:#E7E7DE; " >
|
|
261
|
+
<div class="sosoft" style=" height: 10px;">
|
|
262
|
+
<div style=" height: 10px;"></div>
|
|
263
|
+
</div>
|
|
264
|
+
<div class="insides">
|
|
265
|
+
<div id="brozar4a729529ca5c3_add" style="display:none;">
|
|
266
|
+
<div class="softcorners2" style="background:#ffffff; " >
|
|
267
|
+
<div class="sosoft" style=" background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_tr_10_ffffff_e7e7de.gif') no-repeat top right; height: 10px;">
|
|
268
|
+
<div style=" background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_tl_10_ffffff_e7e7de.gif') no-repeat top left; height: 10px;"></div>
|
|
269
|
+
</div>
|
|
270
|
+
<div class="insides">
|
|
271
|
+
|
|
272
|
+
<div id="brozar4a729529ca5c3_add_scroll_area" class="scrolly_area" style="width: 240px; height: 245px; ">
|
|
273
|
+
<div id="brozar4a729529ca5c3_add_scroll_window" class="content" style="width: 228px; height: 245px; overflow: hidden;">
|
|
274
|
+
<div id="brozar4a729529ca5c3_add_scroll"></div>
|
|
275
|
+
</div>
|
|
276
|
+
<div id="brozar4a729529ca5c3_add_scroll_bar" class="scrolly swf_holder" style="height: 100%;"></div>
|
|
277
|
+
<div class="clear"></div>
|
|
278
|
+
</div>
|
|
279
|
+
<input type="hidden" id="brozar4a729529ca5c3_add_scroll_height_offset" value="0" />
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
</div>
|
|
283
|
+
<div class="sosoft" style="background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_br_10_ffffff_e7e7de.gif') no-repeat bottom right; height: 10px;">
|
|
284
|
+
<div style="background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_bl_10_ffffff_e7e7de.gif') no-repeat bottom left; height: 10px;" ></div>
|
|
285
|
+
</div>
|
|
286
|
+
</div> </div>
|
|
287
|
+
<div id="brozar4a729529ca5c3_more">
|
|
288
|
+
<div class="context">
|
|
289
|
+
<a id="brozar4a729529ca5c3_see_all_link" href="/giugesco/videos/sort:date" class="see_all">See all</a>
|
|
290
|
+
|
|
291
|
+
<span>Show me</span>
|
|
292
|
+
<div id="vimeo_dropdown_1" class="dropdown" style="position: relative; width:130px; ">
|
|
293
|
+
<div id="vimeo_dropdown_1_value" class="value">Giugesco's videos</div>
|
|
294
|
+
</div>
|
|
295
|
+
<div id="vimeo_dropdown_1_items" class="dropdown_items" style="display:none;">
|
|
296
|
+
<ul style="background: #ffffff;">
|
|
297
|
+
<li id="user:1105781##/giugesco/videos/sort:date" class="selected"
|
|
298
|
+
onmouseover="this.addClass('hilite');"
|
|
299
|
+
onmouseout="this.removeClass('hilite');"
|
|
300
|
+
style="color:#;">Giugesco's videos</li>
|
|
301
|
+
<li id="staffpicks##/staffpicks" class=""
|
|
302
|
+
onmouseover="this.addClass('hilite');"
|
|
303
|
+
onmouseout="this.removeClass('hilite');"
|
|
304
|
+
style="color:#;">Staff Picks</li>
|
|
305
|
+
</ul>
|
|
306
|
+
</div>
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
<div class="clear"></div>
|
|
310
|
+
</div>
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
<div class="softcorners2" style="background:#ffffff; " >
|
|
314
|
+
<div class="sosoft" style=" background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_tr_10_ffffff_e7e7de.gif') no-repeat top right; height: 10px;">
|
|
315
|
+
<div style=" background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_tl_10_ffffff_e7e7de.gif') no-repeat top left; height: 10px;"></div>
|
|
316
|
+
</div>
|
|
317
|
+
<div class="insides">
|
|
318
|
+
|
|
319
|
+
<div id="brozar4a729529ca5c3_more_scroll_area" class="scrolly_area" style="width: 240px; height: 245px; ">
|
|
320
|
+
<div id="brozar4a729529ca5c3_more_scroll_window" class="content" style="width: 228px; height: 245px; overflow: hidden;">
|
|
321
|
+
<div id="brozar4a729529ca5c3_more_scroll"> <div id="brozar_current_clip" class="clip current">
|
|
322
|
+
<div class="style_wrap" style="background: url('http://bitcast.vimeo.com/vimeo/thumbnails/defaults/default.75x100.jpg') no-repeat;">
|
|
323
|
+
<img src="http://ts.vimeo.com.s3.amazonaws.com/204/207/20420769_100.jpg" alt="" />
|
|
324
|
+
<div class="info" style="width: 110px; ">
|
|
325
|
+
<span class="index">4.</span> Sunlight Heaven <div class="byline">by <a href="/giugesco">Giugesco</a></div>
|
|
326
|
+
<div class="time">1 day ago</div>
|
|
327
|
+
</div>
|
|
328
|
+
<div class="clear"></div>
|
|
329
|
+
</div>
|
|
330
|
+
</div>
|
|
331
|
+
<div class="clip">
|
|
332
|
+
<div class="style_wrap" style="background: url('http://bitcast.vimeo.com/vimeo/thumbnails/defaults/default.75x100.jpg') no-repeat;">
|
|
333
|
+
<a href="/5124982" title="Kiss Camp ’86" onclick="set_context('user:1105781')">
|
|
334
|
+
<img src="http://ts.vimeo.com.s3.amazonaws.com/154/978/15497849_100.jpg" alt="" />
|
|
335
|
+
</a>
|
|
336
|
+
<div class="info" style="width: 110px; ">
|
|
337
|
+
<span class="index">3.</span> <a href="/5124982" title="Kiss Camp ’86" onclick="set_context('user:1105781')">Kiss Camp ’86 </a> <div class="byline">by <a href="/giugesco">Giugesco</a></div>
|
|
338
|
+
<div class="time">2 months ago</div>
|
|
339
|
+
</div>
|
|
340
|
+
<div class="clear"></div>
|
|
341
|
+
</div>
|
|
342
|
+
</div>
|
|
343
|
+
<div class="clip">
|
|
344
|
+
<div class="style_wrap" style="background: url('http://bitcast.vimeo.com/vimeo/thumbnails/defaults/default.75x100.jpg') no-repeat;">
|
|
345
|
+
<a href="/4518406" title="Fanyûvô - test using diy 35mm adapter" onclick="set_context('user:1105781')">
|
|
346
|
+
<img src="http://ts.vimeo.com.s3.amazonaws.com/113/332/11333236_100.jpg" alt="" />
|
|
347
|
+
</a>
|
|
348
|
+
<div class="info" style="width: 110px; ">
|
|
349
|
+
<span class="index">2.</span> <a href="/4518406" title="Fanyûvô - test using diy 35mm adapter" onclick="set_context('user:1105781')">Fanyûvô - test using… </a> <div class="byline">by <a href="/giugesco">Giugesco</a></div>
|
|
350
|
+
<div class="time">3 months ago</div>
|
|
351
|
+
</div>
|
|
352
|
+
<div class="clear"></div>
|
|
353
|
+
</div>
|
|
354
|
+
</div>
|
|
355
|
+
<div class="clip">
|
|
356
|
+
<div class="style_wrap" style="background: url('http://bitcast.vimeo.com/vimeo/thumbnails/defaults/default.75x100.jpg') no-repeat;">
|
|
357
|
+
<a href="/2701589" title="super8 adventures (8mm)" onclick="set_context('user:1105781')">
|
|
358
|
+
<img src="http://images.vimeo.com/23/75/01/237501733/237501733_100.jpg" alt="" />
|
|
359
|
+
</a>
|
|
360
|
+
<div class="info" style="width: 110px; ">
|
|
361
|
+
<span class="index">1.</span> <a href="/2701589" title="super8 adventures (8mm)" onclick="set_context('user:1105781')">super8 adventures (8mm) </a> <div class="byline">by <a href="/giugesco">Giugesco</a></div>
|
|
362
|
+
<div class="time">7 months ago</div>
|
|
363
|
+
</div>
|
|
364
|
+
<div class="clear"></div>
|
|
365
|
+
</div>
|
|
366
|
+
</div>
|
|
367
|
+
</div>
|
|
368
|
+
</div>
|
|
369
|
+
<div id="brozar4a729529ca5c3_more_scroll_bar" class="scrolly swf_holder" style="height: 100%;"></div>
|
|
370
|
+
<div class="clear"></div>
|
|
371
|
+
</div>
|
|
372
|
+
<input type="hidden" id="brozar4a729529ca5c3_more_scroll_height_offset" value="-10" />
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
</div>
|
|
376
|
+
<div class="sosoft" style="background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_br_10_ffffff_e7e7de.gif') no-repeat bottom right; height: 10px;">
|
|
377
|
+
<div style="background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_bl_10_ffffff_e7e7de.gif') no-repeat bottom left; height: 10px;" ></div>
|
|
378
|
+
</div>
|
|
379
|
+
</div> </div>
|
|
380
|
+
|
|
381
|
+
<div id="starz_area" style="display: none;">
|
|
382
|
+
<div class="bg_top"></div>
|
|
383
|
+
<div class="content">
|
|
384
|
+
<a href="http://www.starz.com/HD/Pages/hd.aspx?src=starz_marcom&med=banner&content=vimeo&cmp=hd"><img src="http://bitcast.vimeo.com/vimeo/assets/images/starz_brozar_tab_ad.gif" /></a>
|
|
385
|
+
</div>
|
|
386
|
+
<div onclick="window.location = 'http://clk.atdmt.com/K01/go/158806743/direct/01/';" class="bg_bottom" style="cursor: pointer; background: url('/assets/images/starz_bg_bottom.gif'); height: 115px;"></div>
|
|
387
|
+
|
|
388
|
+
<div class="vimeo_holder">
|
|
389
|
+
<div id="vimeo_player_5325918" class="player" style="width:1px;height:1px;">
|
|
390
|
+
<div id="vimeo_swf4a729529cf3f0" style="width: 100%; height: 100%; display: none;" class="swf_holder">
|
|
391
|
+
<object class="swf_holder"type="application/x-shockwave-flash" width="1" height="1" data="/moogaloop_local.swf?clip_id=5325918&server=vimeo.com&autoplay=0&fullscreen=1&show_portrait=0&show_title=0&show_byline=0&color=00ADEF&context=&context_id=&hd_off=0&force_embed=1&buildnum=27143">
|
|
392
|
+
<param name="quality" value="high" />
|
|
393
|
+
<param name="allowfullscreen" value="true" />
|
|
394
|
+
<param name="AllowScriptAccess" value="always" />
|
|
395
|
+
<param name="wmode" value="transparent" />
|
|
396
|
+
<param name="scale" value="showAll" />
|
|
397
|
+
<param name="movie" value="/moogaloop_local.swf?clip_id=5325918&server=vimeo.com&autoplay=0&fullscreen=1&show_portrait=0&show_title=0&show_byline=0&color=00ADEF&context=&context_id=&hd_off=0&force_embed=1&buildnum=27143" />
|
|
398
|
+
</object>
|
|
399
|
+
</div>
|
|
400
|
+
</div>
|
|
401
|
+
</div>
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
<img id="starz_pixel" src="" style="width:1px;height:1px;display:none;" />
|
|
405
|
+
</div>
|
|
406
|
+
</div>
|
|
407
|
+
<div class="sosoft" style="background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_br_10_e7e7de_ffffff.gif') no-repeat bottom right; height: 10px;">
|
|
408
|
+
<div style="background: url('http://bitcast.vimeo.com/vimeo/assets/images/rounders/rounder_bl_10_e7e7de_ffffff.gif') no-repeat bottom left; height: 10px;" ></div>
|
|
409
|
+
</div>
|
|
410
|
+
</div></div> </div>
|
|
411
|
+
</div>
|
|
412
|
+
|
|
413
|
+
<div class="clear"></div>
|
|
414
|
+
</div>
|
|
415
|
+
|
|
416
|
+
<div class="description_container">
|
|
417
|
+
<div id="description">
|
|
418
|
+
Sunrise is one of the greatest things in life. it’s a pity that i don’t see it very often. Here i tried to catch the mood of the morning sun on the way back home to Sajkod from Balatonsound festival.<br />
|
|
419
|
+
<br />
|
|
420
|
+
shot in Hungary @ lake Balaton, mainly on the ferry from Szántód to Tihany.<br />
|
|
421
|
+
<br />
|
|
422
|
+
the music is Sunlight, Heaven from Julianna Barwick<br />
|
|
423
|
+
<br />
|
|
424
|
+
i used<br />
|
|
425
|
+
canon hv30<br />
|
|
426
|
+
DIY 35mm adapter (static) with nikon lens (50mm) 1.4
|
|
427
|
+
</div>
|
|
428
|
+
|
|
429
|
+
<div id="pervert">
|
|
430
|
+
</div>
|
|
431
|
+
<div class="clear"></div>
|
|
432
|
+
</div>
|
|
433
|
+
</div>
|
|
434
|
+
|
|
435
|
+
<div id="skirt">
|
|
436
|
+
<div class="columns">
|
|
437
|
+
|
|
438
|
+
<div class="columnA">
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
<div class="nippleBox pickleTickle">
|
|
442
|
+
<div class="bar">
|
|
443
|
+
<h4>Credits</h4>
|
|
444
|
+
</div>
|
|
445
|
+
<div class="nipple"></div>
|
|
446
|
+
<div class="content">
|
|
447
|
+
<div id="credits" class="widget">
|
|
448
|
+
<ul class="peeps">
|
|
449
|
+
<li class="first">
|
|
450
|
+
<img src="http://images.vimeo.com/11/45/49/114549837/114549837_30.jpg" alt="" title="Giugesco" width="30" height="30" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:1105781})" /> <div class="name">
|
|
451
|
+
<a href="/giugesco">Giugesco</a>
|
|
452
|
+
<div class="sub"></div>
|
|
453
|
+
</div>
|
|
454
|
+
<div class="clear"></div>
|
|
455
|
+
</li>
|
|
456
|
+
</ul>
|
|
457
|
+
<span class="edit_link"></span>
|
|
458
|
+
</div> </div>
|
|
459
|
+
</div>
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
<div class="nippleBox arrogantSunflower">
|
|
465
|
+
<div class="bar">
|
|
466
|
+
<h4>Tags</h4>
|
|
467
|
+
</div>
|
|
468
|
+
<div class="nipple"></div>
|
|
469
|
+
<div class="content">
|
|
470
|
+
<div id="tags" class="widget">
|
|
471
|
+
<ul class="tags">
|
|
472
|
+
<li class="first">
|
|
473
|
+
<a href="/tag:sunrise">Sunrise</a> </li>
|
|
474
|
+
<li >
|
|
475
|
+
<a href="/tag:mood">mood</a> </li>
|
|
476
|
+
<li >
|
|
477
|
+
<a href="/tag:lakebalaton">lake Balaton</a> </li>
|
|
478
|
+
<li >
|
|
479
|
+
<a href="/tag:balatonsound">Balatonsound</a> </li>
|
|
480
|
+
<li >
|
|
481
|
+
<a href="/tag:ferry">ferry</a> </li>
|
|
482
|
+
<li >
|
|
483
|
+
<a href="/tag:35mmadapter">35mm adapter</a> </li>
|
|
484
|
+
<li >
|
|
485
|
+
<a href="/tag:filmlook">filmlook</a> </li>
|
|
486
|
+
<li >
|
|
487
|
+
<a href="/tag:canonhv30">canon hv30</a> </li>
|
|
488
|
+
<li >
|
|
489
|
+
<a href="/tag:hd">HD</a> </li>
|
|
490
|
+
<li >
|
|
491
|
+
<a href="/tag:sunrise">sunrise</a> </li>
|
|
492
|
+
<li >
|
|
493
|
+
<a href="/tag:morning">morning</a> </li>
|
|
494
|
+
<li >
|
|
495
|
+
<a href="/tag:lake">lake</a> </li>
|
|
496
|
+
<li >
|
|
497
|
+
<a href="/tag:balaton">balaton</a> </li>
|
|
498
|
+
<li >
|
|
499
|
+
<a href="/tag:canon">canon</a> </li>
|
|
500
|
+
<li >
|
|
501
|
+
<a href="/tag:hv30">hv30</a> </li>
|
|
502
|
+
</ul>
|
|
503
|
+
<span class="edit_link"></span>
|
|
504
|
+
</div> </div>
|
|
505
|
+
</div>
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
<div id="like_holder">
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
<div class="nippleBox optimusBlue">
|
|
514
|
+
<div class="bar">
|
|
515
|
+
<h4>63 Likes</h4>
|
|
516
|
+
</div>
|
|
517
|
+
<div class="nipple"></div>
|
|
518
|
+
<div class="content">
|
|
519
|
+
<div id="likes" class="widget">
|
|
520
|
+
<ul class="peeps">
|
|
521
|
+
<li class="first">
|
|
522
|
+
<img src="http://images.vimeo.com/11/81/86/118186602/118186602_30.jpg" alt="" title="Ainar Angens" width="30" height="30" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:794048})" /> <div class="name">
|
|
523
|
+
<a href="/totocine">Ainar Angens</a>
|
|
524
|
+
<div class="sub">1 minute ago</div>
|
|
525
|
+
</div>
|
|
526
|
+
<div class="clear"></div>
|
|
527
|
+
</li>
|
|
528
|
+
<li >
|
|
529
|
+
<img src="http://images.vimeo.com/11/72/07/117207462/117207462_30.jpg" alt="" title="Adam Goodman" width="30" height="30" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:1778301})" /> <div class="name">
|
|
530
|
+
<a href="/user1778301">Adam Goodman</a>
|
|
531
|
+
<div class="sub">14 minutes ago</div>
|
|
532
|
+
</div>
|
|
533
|
+
<div class="clear"></div>
|
|
534
|
+
</li>
|
|
535
|
+
<li >
|
|
536
|
+
<img src="http://images.vimeo.com/62/67/89/62678971/62678971_30.jpg" alt="" title="Brandon Buck" width="30" height="30" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:441978})" /> <div class="name">
|
|
537
|
+
<a href="/user441978">Brandon Buck</a>
|
|
538
|
+
<div class="sub">34 minutes ago</div>
|
|
539
|
+
</div>
|
|
540
|
+
<div class="clear"></div>
|
|
541
|
+
</li>
|
|
542
|
+
<li >
|
|
543
|
+
<img src="http://images.vimeo.com/11/76/95/117695147/117695147_30.jpg" alt="" title="Bunee Tomlinson" width="30" height="30" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:1267510})" /> <div class="name">
|
|
544
|
+
<a href="/bunee">Bunee Tomlinson</a>
|
|
545
|
+
<div class="sub">58 minutes ago</div>
|
|
546
|
+
</div>
|
|
547
|
+
<div class="clear"></div>
|
|
548
|
+
</li>
|
|
549
|
+
<li >
|
|
550
|
+
<img src="http://images.vimeo.com/11/35/91/113591547/113591547_30.jpg" alt="" title="Dylan Templeman" width="30" height="30" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:540955})" /> <div class="name">
|
|
551
|
+
<a href="/dylantemp">Dylan Templeman</a>
|
|
552
|
+
<a href="/dylantemp"><img src="http://bitcast.vimeo.com/vimeo/assets/images/plus_icon.gif" alt="plus" class="plus_graphic" /></a> <div class="sub">1 hour ago</div>
|
|
553
|
+
</div>
|
|
554
|
+
<div class="clear"></div>
|
|
555
|
+
</li>
|
|
556
|
+
<li >
|
|
557
|
+
<img src="http://images.vimeo.com/11/62/22/116222072/116222072_30.jpg" alt="" title="Kit Pennebaker" width="30" height="30" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:525746})" /> <div class="name">
|
|
558
|
+
<a href="/kitpennebaker">Kit Pennebaker</a>
|
|
559
|
+
<a href="/kitpennebaker"><img src="http://bitcast.vimeo.com/vimeo/assets/images/plus_icon.gif" alt="plus" class="plus_graphic" /></a> <div class="sub">1 hour ago</div>
|
|
560
|
+
</div>
|
|
561
|
+
<div class="clear"></div>
|
|
562
|
+
</li>
|
|
563
|
+
<li >
|
|
564
|
+
<img src="http://images.vimeo.com/11/49/42/114942109/114942109_30.jpg" alt="" title="seng keat tan" width="30" height="30" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:910223})" /> <div class="name">
|
|
565
|
+
<a href="/user910223">seng keat tan</a>
|
|
566
|
+
<div class="sub">1 hour ago</div>
|
|
567
|
+
</div>
|
|
568
|
+
<div class="clear"></div>
|
|
569
|
+
</li>
|
|
570
|
+
<li >
|
|
571
|
+
<img src="http://images.vimeo.com/11/84/93/118493340/118493340_30.jpg" alt="" title="Roland Lazarte" width="30" height="30" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:126526})" /> <div class="name">
|
|
572
|
+
<a href="/hellorolo">Roland Lazarte</a>
|
|
573
|
+
<div class="sub">1 hour ago</div>
|
|
574
|
+
</div>
|
|
575
|
+
<div class="clear"></div>
|
|
576
|
+
</li>
|
|
577
|
+
<li >
|
|
578
|
+
<img src="http://bitcast.vimeo.com/vimeo/portraits/defaults/d.30.jpg" alt="" title="Adam Bernau" width="30" height="30" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:1647028})" /> <div class="name">
|
|
579
|
+
<a href="/user1647028">Adam Bernau</a>
|
|
580
|
+
<div class="sub">1 hour ago</div>
|
|
581
|
+
</div>
|
|
582
|
+
<div class="clear"></div>
|
|
583
|
+
</li>
|
|
584
|
+
<li >
|
|
585
|
+
<img src="http://images.vimeo.com/11/53/32/115332958/115332958_30.jpg" alt="" title="leonardo " width="30" height="30" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:1079679})" /> <div class="name">
|
|
586
|
+
<a href="/user1079679">leonardo </a>
|
|
587
|
+
<div class="sub">1 hour ago</div>
|
|
588
|
+
</div>
|
|
589
|
+
<div class="clear"></div>
|
|
590
|
+
</li>
|
|
591
|
+
<li class="first">
|
|
592
|
+
<div class="name">
|
|
593
|
+
<div class="sub">
|
|
594
|
+
<span class="faux_link edit_link" onmouseover="faux_link(this)" onmouseout="faux_link(this)" onclick="show_all_likes(this, 5826468)">See all 63 likes</span>
|
|
595
|
+
</div>
|
|
596
|
+
</div>
|
|
597
|
+
</li>
|
|
598
|
+
</ul>
|
|
599
|
+
</div> </div>
|
|
600
|
+
</div>
|
|
601
|
+
|
|
602
|
+
</div>
|
|
603
|
+
|
|
604
|
+
<div id="google_afc_ads" style="width:160px;"></div>
|
|
605
|
+
</div>
|
|
606
|
+
|
|
607
|
+
<div class="columnB">
|
|
608
|
+
|
|
609
|
+
<style type="text/css">
|
|
610
|
+
.comments ul, .comments li { width: 440px; }
|
|
611
|
+
.comments li.reply { width: 415px; }
|
|
612
|
+
.comments li textarea, .new_comment textarea { width: 343px; }
|
|
613
|
+
.comments li div.rightside, .comments li.controls, .comments li.reply_controls { width: 355px; }
|
|
614
|
+
.comments li.reply div.rightside { width: 335px; }
|
|
615
|
+
.comments li.reply_controls textarea { width: 343px; }
|
|
616
|
+
.comments li.reply textarea { width: 323px; }
|
|
617
|
+
.comments li div.rightside { overflow: hidden; }
|
|
618
|
+
</style>
|
|
619
|
+
|
|
620
|
+
<a name="comments"></a>
|
|
621
|
+
<input type="hidden" id="comment_type_5826468" value="clip" />
|
|
622
|
+
<input type="hidden" id="comment_type_id" value="5826468" />
|
|
623
|
+
<ul class="comments" id="comments_5826468">
|
|
624
|
+
<li class="parent first">
|
|
625
|
+
<a name="comment_1769561"></a>
|
|
626
|
+
<img src="http://images.vimeo.com/47/15/11/47151169/47151169_75.jpg" alt="" title="Michael Brodner AKA Bones" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:254167})" /> <div class="rightside">
|
|
627
|
+
<div class="name"><a href="/bones">Michael Brodner AKA Bones</a> <a href="/bones"><img src="http://bitcast.vimeo.com/vimeo/assets/images/plus_icon.gif" alt="plus" class="plus_graphic" /></a> 1 day ago </div>
|
|
628
|
+
<div class="text">Beautiful stuff man. Love the shots.
|
|
629
|
+
</div>
|
|
630
|
+
|
|
631
|
+
</div>
|
|
632
|
+
<div class="clear"></div>
|
|
633
|
+
</li>
|
|
634
|
+
|
|
635
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
636
|
+
|
|
637
|
+
</li>
|
|
638
|
+
<li class="parent">
|
|
639
|
+
<a name="comment_1769962"></a>
|
|
640
|
+
<img src="http://images.vimeo.com/11/50/38/115038717/115038717_75.jpg" alt="" title="Mike M" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:973843})" /> <div class="rightside">
|
|
641
|
+
<div class="name"><a href="/user973843">Mike M</a> 1 day ago </div>
|
|
642
|
+
<div class="text">Wonderful !
|
|
643
|
+
</div>
|
|
644
|
+
|
|
645
|
+
</div>
|
|
646
|
+
<div class="clear"></div>
|
|
647
|
+
</li>
|
|
648
|
+
|
|
649
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
650
|
+
|
|
651
|
+
</li>
|
|
652
|
+
<li class="parent">
|
|
653
|
+
<a name="comment_1771665"></a>
|
|
654
|
+
<img src="http://images.vimeo.com/11/81/86/118186602/118186602_75.jpg" alt="" title="Ainar Angens" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:794048})" /> <div class="rightside">
|
|
655
|
+
<div class="name"><a href="/totocine">Ainar Angens</a> 15 hours ago </div>
|
|
656
|
+
<div class="text">I love vintage colors!! What settings use?
|
|
657
|
+
</div>
|
|
658
|
+
|
|
659
|
+
</div>
|
|
660
|
+
<div class="clear"></div>
|
|
661
|
+
</li>
|
|
662
|
+
|
|
663
|
+
<li class="reply">
|
|
664
|
+
<a name="comment_1773234"></a>
|
|
665
|
+
<img src="http://images.vimeo.com/11/45/49/114549837/114549837_75.jpg" alt="" title="Giugesco" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:1105781})" /> <div class="rightside">
|
|
666
|
+
<div class="name"><a href="/giugesco">Giugesco</a> 7 hours ago </div>
|
|
667
|
+
<div class="text">i used FCP’s built in 3way Color Corrector. i shifted shadows to red a bit, Mids to blue, whites to yellow and also reduced withe levels, and pushed saturation up with aprx 10 percent... it seemed to work with all the shots, so i simply applied this setting to all of them.
|
|
668
|
+
</div>
|
|
669
|
+
</div>
|
|
670
|
+
<div class="clear"></div>
|
|
671
|
+
</li>
|
|
672
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
673
|
+
|
|
674
|
+
</li>
|
|
675
|
+
<li class="parent">
|
|
676
|
+
<a name="comment_1772207"></a>
|
|
677
|
+
<img src="http://images.vimeo.com/11/60/62/116062176/116062176_75.jpg" alt="" title="Blake Whitman" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:151382})" /> <div class="rightside">
|
|
678
|
+
<div class="name"><a href="/blakewhitman">Blake Whitman</a> <img src="http://bitcast.vimeo.com/vimeo/assets/images/staff.gif" alt="staff" class="staff_graphic" /> 12 hours ago </div>
|
|
679
|
+
<div class="text">such a great feel to this. really enjoyed the way you framed the images and went with the movement. very nice.
|
|
680
|
+
</div>
|
|
681
|
+
|
|
682
|
+
</div>
|
|
683
|
+
<div class="clear"></div>
|
|
684
|
+
</li>
|
|
685
|
+
|
|
686
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
687
|
+
|
|
688
|
+
</li>
|
|
689
|
+
<li class="parent">
|
|
690
|
+
<a name="comment_1772297"></a>
|
|
691
|
+
<img src="http://images.vimeo.com/11/75/28/117528298/117528298_75.jpg" alt="" title="Matt McDonald" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:279393})" /> <div class="rightside">
|
|
692
|
+
<div class="name"><a href="/mattmcdonald">Matt McDonald</a> <a href="/mattmcdonald"><img src="http://bitcast.vimeo.com/vimeo/assets/images/plus_icon.gif" alt="plus" class="plus_graphic" /></a> 12 hours ago </div>
|
|
693
|
+
<div class="text">Love the color treatment and the shots were fantastic!
|
|
694
|
+
</div>
|
|
695
|
+
|
|
696
|
+
</div>
|
|
697
|
+
<div class="clear"></div>
|
|
698
|
+
</li>
|
|
699
|
+
|
|
700
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
701
|
+
|
|
702
|
+
</li>
|
|
703
|
+
<li class="parent">
|
|
704
|
+
<a name="comment_1772503"></a>
|
|
705
|
+
<img src="http://images.vimeo.com/86/87/84/86878470/86878470_75.jpg" alt="" title="Gorilla Pictures" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:430287})" /> <div class="rightside">
|
|
706
|
+
<div class="name"><a href="/gorillapics">Gorilla Pictures</a> <a href="/gorillapics"><img src="http://bitcast.vimeo.com/vimeo/assets/images/plus_icon.gif" alt="plus" class="plus_graphic" /></a> 11 hours ago </div>
|
|
707
|
+
<div class="text">this was really wonderful. you notice the kinds of things i notice - the way the sun hits off a life preserver. love it.
|
|
708
|
+
</div>
|
|
709
|
+
|
|
710
|
+
</div>
|
|
711
|
+
<div class="clear"></div>
|
|
712
|
+
</li>
|
|
713
|
+
|
|
714
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
715
|
+
|
|
716
|
+
</li>
|
|
717
|
+
<li class="parent">
|
|
718
|
+
<a name="comment_1772579"></a>
|
|
719
|
+
<img src="http://bitcast.vimeo.com/vimeo/portraits/defaults/d.75.jpg" alt="" title="Jonaz" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:2105087})" /> <div class="rightside">
|
|
720
|
+
<div class="name"><a href="/user2105087">Jonaz</a> 10 hours ago </div>
|
|
721
|
+
<div class="text">hey! nice work!!! and the music goes along with the shoots!!! I liked it!!! <br />
|
|
722
|
+
<br />
|
|
723
|
+
i have a question... are you studying film studies or you just do it for fun?
|
|
724
|
+
</div>
|
|
725
|
+
|
|
726
|
+
</div>
|
|
727
|
+
<div class="clear"></div>
|
|
728
|
+
</li>
|
|
729
|
+
|
|
730
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
731
|
+
|
|
732
|
+
</li>
|
|
733
|
+
<li class="parent">
|
|
734
|
+
<a name="comment_1773015"></a>
|
|
735
|
+
<img src="http://images.vimeo.com/11/83/62/118362498/118362498_75.jpg" alt="" title="Alex Sembra" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:2027270})" /> <div class="rightside">
|
|
736
|
+
<div class="name"><a href="/sembra">Alex Sembra</a> 8 hours ago </div>
|
|
737
|
+
<div class="text">Beautiful work!
|
|
738
|
+
</div>
|
|
739
|
+
|
|
740
|
+
</div>
|
|
741
|
+
<div class="clear"></div>
|
|
742
|
+
</li>
|
|
743
|
+
|
|
744
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
745
|
+
|
|
746
|
+
</li>
|
|
747
|
+
<li class="parent">
|
|
748
|
+
<a name="comment_1773122"></a>
|
|
749
|
+
<img src="http://images.vimeo.com/11/45/49/114549837/114549837_75.jpg" alt="" title="Giugesco" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:1105781})" /> <div class="rightside">
|
|
750
|
+
<div class="name"><a href="/giugesco">Giugesco</a> 7 hours ago </div>
|
|
751
|
+
<div class="text">thanks guys :)
|
|
752
|
+
</div>
|
|
753
|
+
|
|
754
|
+
</div>
|
|
755
|
+
<div class="clear"></div>
|
|
756
|
+
</li>
|
|
757
|
+
|
|
758
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
759
|
+
|
|
760
|
+
</li>
|
|
761
|
+
<li class="parent">
|
|
762
|
+
<a name="comment_1773192"></a>
|
|
763
|
+
<img src="http://images.vimeo.com/11/85/15/118515395/118515395_75.jpg" alt="" title="pete mills miller" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:2086384})" /> <div class="rightside">
|
|
764
|
+
<div class="name"><a href="/user2086384">pete mills miller</a> 7 hours ago </div>
|
|
765
|
+
<div class="text">I agree with Blake, there is absolutely a beautiful feel to this video. Good job Giugesco.
|
|
766
|
+
</div>
|
|
767
|
+
|
|
768
|
+
</div>
|
|
769
|
+
<div class="clear"></div>
|
|
770
|
+
</li>
|
|
771
|
+
|
|
772
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
773
|
+
|
|
774
|
+
</li>
|
|
775
|
+
<li class="parent">
|
|
776
|
+
<a name="comment_1773256"></a>
|
|
777
|
+
<img src="http://images.vimeo.com/11/81/31/118131958/118131958_75.jpg" alt="" title="Retner" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:638499})" /> <div class="rightside">
|
|
778
|
+
<div class="name"><a href="/retner">Retner</a> 6 hours ago </div>
|
|
779
|
+
<div class="text">I totally agree: "Sunrise is one of the greatest things in life."; it's like being in heaven.
|
|
780
|
+
</div>
|
|
781
|
+
|
|
782
|
+
</div>
|
|
783
|
+
<div class="clear"></div>
|
|
784
|
+
</li>
|
|
785
|
+
|
|
786
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
787
|
+
|
|
788
|
+
</li>
|
|
789
|
+
<li class="parent">
|
|
790
|
+
<a name="comment_1773484"></a>
|
|
791
|
+
<img src="http://images.vimeo.com/11/31/69/113169128/113169128_75.jpg" alt="" title="Ricardo Williams" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:577807})" /> <div class="rightside">
|
|
792
|
+
<div class="name"><a href="/ricardowilliams">Ricardo Williams</a> 5 hours ago </div>
|
|
793
|
+
<div class="text">great video clip, that lens totally adds so much depth
|
|
794
|
+
</div>
|
|
795
|
+
|
|
796
|
+
</div>
|
|
797
|
+
<div class="clear"></div>
|
|
798
|
+
</li>
|
|
799
|
+
|
|
800
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
801
|
+
|
|
802
|
+
</li>
|
|
803
|
+
<li class="parent">
|
|
804
|
+
<a name="comment_1773637"></a>
|
|
805
|
+
<img src="http://bitcast.vimeo.com/vimeo/portraits/defaults/d.75.jpg" alt="" title="Benjamin Escudero" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:1306045})" /> <div class="rightside">
|
|
806
|
+
<div class="name"><a href="/benjescudero">Benjamin Escudero</a> 4 hours ago </div>
|
|
807
|
+
<div class="text">great!!!!
|
|
808
|
+
</div>
|
|
809
|
+
|
|
810
|
+
</div>
|
|
811
|
+
<div class="clear"></div>
|
|
812
|
+
</li>
|
|
813
|
+
|
|
814
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
815
|
+
|
|
816
|
+
</li>
|
|
817
|
+
<li class="parent">
|
|
818
|
+
<a name="comment_1773661"></a>
|
|
819
|
+
<img src="http://images.vimeo.com/11/64/56/116456378/116456378_75.jpg" alt="" title="Ted Pemberton" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:668366})" /> <div class="rightside">
|
|
820
|
+
<div class="name"><a href="/tedward">Ted Pemberton</a> 4 hours ago </div>
|
|
821
|
+
<div class="text">what focusing screen did you use in your adapter?
|
|
822
|
+
</div>
|
|
823
|
+
|
|
824
|
+
</div>
|
|
825
|
+
<div class="clear"></div>
|
|
826
|
+
</li>
|
|
827
|
+
|
|
828
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
829
|
+
|
|
830
|
+
</li>
|
|
831
|
+
<li class="parent">
|
|
832
|
+
<a name="comment_1773723"></a>
|
|
833
|
+
<img src="http://images.vimeo.com/11/83/21/118321846/118321846_75.jpg" alt="" title="Deelight" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:1299749})" /> <div class="rightside">
|
|
834
|
+
<div class="name"><a href="/user1299749">Deelight</a> 3 hours ago </div>
|
|
835
|
+
<div class="text">well i've read all posts looking for the one with some critic on the video.. and found only happy remarks )) well..<br />
|
|
836
|
+
once i did about the same movie.. all frames were bad and the video was not really about anything..<br />
|
|
837
|
+
so I put some background music and mixed the video with colors and transitions.. it became even worse but somehow no one was complaining about that. )) thanks.
|
|
838
|
+
</div>
|
|
839
|
+
|
|
840
|
+
</div>
|
|
841
|
+
<div class="clear"></div>
|
|
842
|
+
</li>
|
|
843
|
+
|
|
844
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
845
|
+
|
|
846
|
+
</li>
|
|
847
|
+
<li class="parent">
|
|
848
|
+
<a name="comment_1773837"></a>
|
|
849
|
+
<img src="http://images.vimeo.com/11/84/09/118409810/118409810_75.jpg" alt="" title="Alex" width="75" height="75" class="portrait" onclick="avatar_hover({o:this, e:event, user_id:911324})" /> <div class="rightside">
|
|
850
|
+
<div class="name"><a href="/user911324">Alex</a> <a href="/user911324"><img src="http://bitcast.vimeo.com/vimeo/assets/images/plus_icon.gif" alt="plus" class="plus_graphic" /></a> 2 hours ago </div>
|
|
851
|
+
<div class="text">nice. very atmospheric. dreamlike, in fact. i enjoyed this.
|
|
852
|
+
</div>
|
|
853
|
+
|
|
854
|
+
</div>
|
|
855
|
+
<div class="clear"></div>
|
|
856
|
+
</li>
|
|
857
|
+
|
|
858
|
+
<li class="reply_controls" style="margin-top: 0; margin-bottom: 0; font-size: 10px; line-height: 10px;">
|
|
859
|
+
|
|
860
|
+
</li>
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
</ul>
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
<a name="comment"></a>
|
|
867
|
+
<div class="new_comment">
|
|
868
|
+
<span class="warning_text">This conversation is missing your voice. Take five seconds to <a href="/join" rel="nofollow">join Vimeo</a> or <a href="/log_in" rel="nofollow" onclick="loginLightbox('login'); return false;">log in</a>.</span>
|
|
869
|
+
</div>
|
|
870
|
+
</div>
|
|
871
|
+
|
|
872
|
+
<div class="columnC">
|
|
873
|
+
|
|
874
|
+
<div class="nippleBox">
|
|
875
|
+
<div class="bar" style="background-color: #4ebaff;">
|
|
876
|
+
<h4>Advertisement</h4>
|
|
877
|
+
</div>
|
|
878
|
+
<div class="nipple" style="border-top-color: #4ebaff;"></div>
|
|
879
|
+
<div class="content">
|
|
880
|
+
<div>
|
|
881
|
+
<div class="atlas ad" id="iacasAAMB1" style="width:px; height:px;"></div>
|
|
882
|
+
<noscript>
|
|
883
|
+
<a href="http://iacas.adbureau.net/adclick/site=vimeo.com/aamsz=300x250/AREA=films.hd" target="_blank">
|
|
884
|
+
<img src="http://iacas.adbureau.net/nserver/site=vimeo.com/aamsz=300x250" border="0" alt="" />
|
|
885
|
+
</a>
|
|
886
|
+
</noscript>
|
|
887
|
+
</div> </div>
|
|
888
|
+
</div>
|
|
889
|
+
|
|
890
|
+
|
|
891
|
+
<div class="nippleBox guidoSuntan">
|
|
892
|
+
<div class="bar">
|
|
893
|
+
<h4>3 Related collections</h4>
|
|
894
|
+
</div>
|
|
895
|
+
<div class="nipple"></div>
|
|
896
|
+
<div class="content">
|
|
897
|
+
<div id="collections" class="widget">
|
|
898
|
+
|
|
899
|
+
<h5>
|
|
900
|
+
Channels <img src="http://bitcast.vimeo.com/vimeo/assets/images/channel_icon.gif" alt="Channels" />
|
|
901
|
+
</h5>
|
|
902
|
+
<ul class="collections">
|
|
903
|
+
<li class="first">
|
|
904
|
+
<a href="http://vimeo.com/channels/staffpicks#5826468">Vimeo Staff Picks</a>
|
|
905
|
+
</li>
|
|
906
|
+
<li class="">
|
|
907
|
+
<a href="http://vimeo.com/channels/hv20#5826468">Canon HV Channel</a>
|
|
908
|
+
</li>
|
|
909
|
+
</ul>
|
|
910
|
+
|
|
911
|
+
<h5>
|
|
912
|
+
Albums <img src="http://bitcast.vimeo.com/vimeo/assets/images/icon_collections_albums.gif" alt="Albums" />
|
|
913
|
+
</h5>
|
|
914
|
+
<ul class="collections">
|
|
915
|
+
<li class="first">
|
|
916
|
+
<a href="/album/106054">❤❤❤❤❤</a>
|
|
917
|
+
</li>
|
|
918
|
+
</ul>
|
|
919
|
+
|
|
920
|
+
<span class="edit_link add_to"><a href="/5826468/settings/addto">Add to collections</a></span>
|
|
921
|
+
<div class="clear"></div>
|
|
922
|
+
</div> </div>
|
|
923
|
+
</div>
|
|
924
|
+
|
|
925
|
+
<div class="nippleBox arousedBaboon">
|
|
926
|
+
<div class="bar">
|
|
927
|
+
<h4>Statistics</h4>
|
|
928
|
+
</div>
|
|
929
|
+
<div class="nipple"></div>
|
|
930
|
+
<div class="content">
|
|
931
|
+
<div id="stats" class="widget">
|
|
932
|
+
<div id="clip_stats" class="stats_container">
|
|
933
|
+
<ul>
|
|
934
|
+
<li class="first">
|
|
935
|
+
<div class="datehead"> </div>
|
|
936
|
+
<div class="stathead">plays</div>
|
|
937
|
+
<div class="stathead">likes</div>
|
|
938
|
+
<div class="stathead">comments</div>
|
|
939
|
+
<div class="clear"></div>
|
|
940
|
+
</li>
|
|
941
|
+
<li class="second">
|
|
942
|
+
<div class="date total">Total</div>
|
|
943
|
+
<div class="stat">
|
|
944
|
+
<img src="/assets/images/stat_play.gif" alt="plays" /> 205 </div>
|
|
945
|
+
<div class="stat">
|
|
946
|
+
<img src="/assets/images/stat_heart.gif" alt="plays" /> 63 </div>
|
|
947
|
+
<div class="stat">
|
|
948
|
+
<img src="/assets/images/stat_comment.gif" alt="plays" /> 17 </div>
|
|
949
|
+
<div class="clear"></div>
|
|
950
|
+
</li>
|
|
951
|
+
<li>
|
|
952
|
+
<div class="date">Jul 31<sup>st</sup></div>
|
|
953
|
+
<div class="stat">
|
|
954
|
+
<img src="/assets/images/stat_play.gif" alt="plays" /> 23 </div>
|
|
955
|
+
<div class="stat">
|
|
956
|
+
<img src="/assets/images/stat_heart.gif" alt="plays" /> 13 </div>
|
|
957
|
+
<div class="stat">
|
|
958
|
+
<img src="/assets/images/stat_comment.gif" alt="plays" /> 1 </div>
|
|
959
|
+
<div class="clear"></div>
|
|
960
|
+
</li>
|
|
961
|
+
<li>
|
|
962
|
+
<div class="date">Jul 30<sup>th</sup></div>
|
|
963
|
+
<div class="stat">
|
|
964
|
+
<img src="/assets/images/stat_play.gif" alt="plays" /> 177 </div>
|
|
965
|
+
<div class="stat">
|
|
966
|
+
<img src="/assets/images/stat_heart.gif" alt="plays" /> 49 </div>
|
|
967
|
+
<div class="stat">
|
|
968
|
+
<img src="/assets/images/stat_comment.gif" alt="plays" /> 14 </div>
|
|
969
|
+
<div class="clear"></div>
|
|
970
|
+
</li>
|
|
971
|
+
<li>
|
|
972
|
+
<div class="date">Jul 29<sup>th</sup></div>
|
|
973
|
+
<div class="stat">
|
|
974
|
+
<img src="/assets/images/stat_play.gif" alt="plays" /> 5 </div>
|
|
975
|
+
<div class="stat">
|
|
976
|
+
<img src="/assets/images/stat_heart.gif" alt="plays" /> 1 </div>
|
|
977
|
+
<div class="stat">
|
|
978
|
+
<img src="/assets/images/stat_comment.gif" alt="plays" /> 2 </div>
|
|
979
|
+
<div class="clear"></div>
|
|
980
|
+
</li>
|
|
981
|
+
</ul>
|
|
982
|
+
|
|
983
|
+
<div class="week_pager">
|
|
984
|
+
</div>
|
|
985
|
+
<br/>
|
|
986
|
+
</div>
|
|
987
|
+
|
|
988
|
+
|
|
989
|
+
<div class="clear"></div>
|
|
990
|
+
</div> </div>
|
|
991
|
+
</div>
|
|
992
|
+
<div class="nippleBox abrahamLincoln">
|
|
993
|
+
<div class="bar">
|
|
994
|
+
<h4>Downloads</h4>
|
|
995
|
+
</div>
|
|
996
|
+
<div class="nipple"></div>
|
|
997
|
+
<div class="content">
|
|
998
|
+
<div class="info_text"><span class="warning_text">Please <a href="/join" rel="nofollow">join Vimeo</a> or <a rel="nofollow" href="/log_in" onclick="loginLightbox('login'); return false;">log in</a> to download the original file. It only takes a few seconds.</span></div> </div>
|
|
999
|
+
</div>
|
|
1000
|
+
</div>
|
|
1001
|
+
<div class="clear"></div>
|
|
1002
|
+
</div>
|
|
1003
|
+
</div>
|
|
1004
|
+
|
|
1005
|
+
<div class="clear"></div>
|
|
1006
|
+
<input type="hidden" value="5826468" id="clip_id" />
|
|
1007
|
+
<input type="hidden" value="1" id="is_hd" />
|
|
1008
|
+
<input type="hidden" value="" id="cur_user_id" />
|
|
1009
|
+
|
|
1010
|
+
<script type="text/javascript">
|
|
1011
|
+
google_ad_client = 'ca-iwon-vimeo';
|
|
1012
|
+
google_ad_output = 'js';
|
|
1013
|
+
google_max_num_ads = '3';
|
|
1014
|
+
google_ad_type = 'text';
|
|
1015
|
+
google_encoding = 'utf8';
|
|
1016
|
+
google_hints = 'Sunlight Heaven';
|
|
1017
|
+
</script>
|
|
1018
|
+
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
|
|
1019
|
+
<div class="clear"></div>
|
|
1020
|
+
|
|
1021
|
+
|
|
1022
|
+
|
|
1023
|
+
<div id="bottom">
|
|
1024
|
+
<ul>
|
|
1025
|
+
<li>
|
|
1026
|
+
<span class="category">Vimeo:</span> <a href="/about">About</a> / <a href="/blog">Blog</a> / <a href="/api">Developers</a> / <a href="/guidelines">Community Guidelines</a> / <a href="/forums">Community Forums</a> / <a href="/help">Help Center</a> / <a href="/site_map">Site Map</a> / <a href="http://www.bustedtees.com/vimeo" target="_blank">Merchandise</a>
|
|
1027
|
+
/ <a href="/plus">Get Vimeo <img src="http://bitcast.vimeo.com/vimeo/assets/images/plus_icon.gif" alt="plus" style="margin-bottom: -2px;" /></a>
|
|
1028
|
+
</li>
|
|
1029
|
+
<li>
|
|
1030
|
+
<div class="legal_container">
|
|
1031
|
+
<span class="category">Legal:</span>
|
|
1032
|
+
<span class="legal_eagle">TM + ©2009 Vimeo, LLC. All rights reserved.</span> /
|
|
1033
|
+
<a href="/terms">Terms & Conditions</a> / <a href="/privacy" rel="nofollow">Privacy Statement</a> /
|
|
1034
|
+
</div>
|
|
1035
|
+
<div class="mindspark_logo"><a href="http://www.mindspark.com/main/index.shtml" target="_blank"><img src="http://bitcast.vimeo.com/vimeo/assets/images/logo_mindspark_footer.png" alt="mindspark" class="transifyme" /></a></div>
|
|
1036
|
+
<div class="clear"></div>
|
|
1037
|
+
</li>
|
|
1038
|
+
</ul>
|
|
1039
|
+
|
|
1040
|
+
</div>
|
|
1041
|
+
</div>
|
|
1042
|
+
</div>
|
|
1043
|
+
|
|
1044
|
+
<script type="text/javascript">
|
|
1045
|
+
var vimeo_startup = {
|
|
1046
|
+
app_key: '5',
|
|
1047
|
+
domain: '.vimeo.com',
|
|
1048
|
+
vimeo_url: 'vimeo.com'
|
|
1049
|
+
};
|
|
1050
|
+
</script>
|
|
1051
|
+
<script type="text/javascript" src="/assets/27143/js/global.js"></script>
|
|
1052
|
+
<script type="text/javascript">
|
|
1053
|
+
|
|
1054
|
+
window.addEvent('domready', function() {
|
|
1055
|
+
|
|
1056
|
+
new Moogaloop('vimeo_swf4a729529c7ec0', {
|
|
1057
|
+
clip_id: '5826468', server: 'vimeo.com', autoplay: '0', fullscreen: '1', show_portrait: '0', show_title: '0', show_byline: '0', color: '00ADEF', context: 'user:1105781', context_id: '', hd_off: '0', buildnum: '27143' });
|
|
1058
|
+
|
|
1059
|
+
});
|
|
1060
|
+
|
|
1061
|
+
window.addEvent('domready', function(){
|
|
1062
|
+
new KaiserSoze({
|
|
1063
|
+
brozar_id: 'brozar4a729529ca5c3',
|
|
1064
|
+
targ_clip_id: 5826468,
|
|
1065
|
+
total_clips: 4,
|
|
1066
|
+
context: 'user:1105781',
|
|
1067
|
+
clip_ids: ["5826468","5124982","4518406","2701589"],
|
|
1068
|
+
clip_indexes: [4,3,2,1],
|
|
1069
|
+
scrolly_id: 'brozar4a729529ca5c3_more_scroll',
|
|
1070
|
+
is_logged_in: false });
|
|
1071
|
+
});
|
|
1072
|
+
|
|
1073
|
+
var brozar4a729529ca5c3_add_scroll_bar = false;
|
|
1074
|
+
window.addEvent('domready', function() {
|
|
1075
|
+
brozar4a729529ca5c3_add_scroll_bar = new SWFObject(
|
|
1076
|
+
'/assets/flash/scrolly.swf',
|
|
1077
|
+
'brozar4a729529ca5c3_add_scroll_swf',
|
|
1078
|
+
'12',
|
|
1079
|
+
'100%',
|
|
1080
|
+
'1',
|
|
1081
|
+
'#ffffff'
|
|
1082
|
+
);
|
|
1083
|
+
|
|
1084
|
+
brozar4a729529ca5c3_add_scroll_bar.addVariable('content_id', 'brozar4a729529ca5c3_add_scroll');
|
|
1085
|
+
brozar4a729529ca5c3_add_scroll_bar.addVariable('content_height', $('brozar4a729529ca5c3_add_scroll').getSize().size.y + 0);
|
|
1086
|
+
brozar4a729529ca5c3_add_scroll_bar.addVariable('bg_click_offset', 0);
|
|
1087
|
+
brozar4a729529ca5c3_add_scroll_bar.addVariable('snap_to', 0);
|
|
1088
|
+
|
|
1089
|
+
brozar4a729529ca5c3_add_scroll_bar.addVariable('rollover', '77d4fd');
|
|
1090
|
+
brozar4a729529ca5c3_add_scroll_bar.addVariable('rollout', '5F5F58');
|
|
1091
|
+
brozar4a729529ca5c3_add_scroll_bar.addVariable('bg', 'ffffff');
|
|
1092
|
+
brozar4a729529ca5c3_add_scroll_bar.addVariable('bg_lines', 'CFCEC3');
|
|
1093
|
+
|
|
1094
|
+
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
brozar4a729529ca5c3_add_scroll_bar.addParam("allowScriptAccess", "always");
|
|
1100
|
+
brozar4a729529ca5c3_add_scroll_bar.addParam("wmode", "transparent");
|
|
1101
|
+
brozar4a729529ca5c3_add_scroll_bar.addParam('scaleMode', 'showAll');
|
|
1102
|
+
brozar4a729529ca5c3_add_scroll_bar.addParam('quality', 'medium');
|
|
1103
|
+
|
|
1104
|
+
brozar4a729529ca5c3_add_scroll_bar.write('brozar4a729529ca5c3_add_scroll_bar');
|
|
1105
|
+
|
|
1106
|
+
$('brozar4a729529ca5c3_add_scroll_area').addEvent('mousewheel', function(event){
|
|
1107
|
+
event = new Event(event);
|
|
1108
|
+
event.stop();
|
|
1109
|
+
|
|
1110
|
+
if (event.wheel > 0) {
|
|
1111
|
+
document.getElementById('brozar4a729529ca5c3_add_scroll_swf').mousewheelUp();
|
|
1112
|
+
}
|
|
1113
|
+
else if (event.wheel < 0) { // Down
|
|
1114
|
+
document.getElementById('brozar4a729529ca5c3_add_scroll_swf').mousewheelDown();
|
|
1115
|
+
}
|
|
1116
|
+
});
|
|
1117
|
+
});
|
|
1118
|
+
|
|
1119
|
+
if( !window.vimeo_dropdown_1_dd ) {
|
|
1120
|
+
|
|
1121
|
+
var pos = { x: 0, y: 0 };
|
|
1122
|
+
if( window.ie ) {
|
|
1123
|
+
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
var vimeo_dropdown_1_dd = false;
|
|
1127
|
+
|
|
1128
|
+
window.addEvent('domready', function() {
|
|
1129
|
+
vimeo_dropdown_1_dd =
|
|
1130
|
+
new Dropdown('vimeo_dropdown_1', 'vimeo_dropdown_1_items', {
|
|
1131
|
+
onComplete: brozar_context_change,
|
|
1132
|
+
selected: 'user:1105781##/giugesco/videos/sort:date',
|
|
1133
|
+
args: 'brozar4a729529ca5c3',
|
|
1134
|
+
delta_y: pos.y,
|
|
1135
|
+
delta_x: pos.x
|
|
1136
|
+
});
|
|
1137
|
+
|
|
1138
|
+
$('vimeo_dropdown_1_items').show();
|
|
1139
|
+
var item_size = $('vimeo_dropdown_1_items').getSize().size.x;
|
|
1140
|
+
$('vimeo_dropdown_1_items').hide();
|
|
1141
|
+
var dd_size = $('vimeo_dropdown_1').getSize().size.x - 6;
|
|
1142
|
+
if( dd_size > item_size ) {
|
|
1143
|
+
$('vimeo_dropdown_1_items').setStyle('width', dd_size + 'px');
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
});
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
var brozar4a729529ca5c3_more_scroll_bar = false;
|
|
1150
|
+
window.addEvent('domready', function() {
|
|
1151
|
+
brozar4a729529ca5c3_more_scroll_bar = new SWFObject(
|
|
1152
|
+
'/assets/flash/scrolly.swf',
|
|
1153
|
+
'brozar4a729529ca5c3_more_scroll_swf',
|
|
1154
|
+
'12',
|
|
1155
|
+
'100%',
|
|
1156
|
+
'1',
|
|
1157
|
+
'#ffffff'
|
|
1158
|
+
);
|
|
1159
|
+
|
|
1160
|
+
brozar4a729529ca5c3_more_scroll_bar.addVariable('content_id', 'brozar4a729529ca5c3_more_scroll');
|
|
1161
|
+
brozar4a729529ca5c3_more_scroll_bar.addVariable('content_height', $('brozar4a729529ca5c3_more_scroll').getSize().size.y + -10);
|
|
1162
|
+
brozar4a729529ca5c3_more_scroll_bar.addVariable('bg_click_offset', 10);
|
|
1163
|
+
brozar4a729529ca5c3_more_scroll_bar.addVariable('snap_to', 0);
|
|
1164
|
+
|
|
1165
|
+
brozar4a729529ca5c3_more_scroll_bar.addVariable('rollover', '77d4fd');
|
|
1166
|
+
brozar4a729529ca5c3_more_scroll_bar.addVariable('rollout', '5F5F58');
|
|
1167
|
+
brozar4a729529ca5c3_more_scroll_bar.addVariable('bg', 'ffffff');
|
|
1168
|
+
brozar4a729529ca5c3_more_scroll_bar.addVariable('bg_lines', 'CFCEC3');
|
|
1169
|
+
|
|
1170
|
+
brozar4a729529ca5c3_more_scroll_bar.addVariable('on_scroll_top', 'scrolly_browse_top');
|
|
1171
|
+
|
|
1172
|
+
brozar4a729529ca5c3_more_scroll_bar.addVariable('on_scroll_bottom', 'scrolly_browse_bottom');
|
|
1173
|
+
|
|
1174
|
+
brozar4a729529ca5c3_more_scroll_bar.addVariable('on_scroll_near_top', 'scrolly_browse_top');
|
|
1175
|
+
|
|
1176
|
+
brozar4a729529ca5c3_more_scroll_bar.addVariable('on_scroll_near_bottom', 'scrolly_browse_bottom');
|
|
1177
|
+
|
|
1178
|
+
var start_pos_el = $('brozar_current_clip');
|
|
1179
|
+
if( start_pos_el ) {
|
|
1180
|
+
var start_pos = scroll_bar_el_position('brozar4a729529ca5c3_more_scroll', 'brozar_current_clip');
|
|
1181
|
+
brozar4a729529ca5c3_more_scroll_bar.addVariable('start_position', start_pos + -85);
|
|
1182
|
+
$('brozar4a729529ca5c3_more_scroll_window').scrollTop = start_pos + -85;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
brozar4a729529ca5c3_more_scroll_bar.addParam("allowScriptAccess", "always");
|
|
1186
|
+
brozar4a729529ca5c3_more_scroll_bar.addParam("wmode", "transparent");
|
|
1187
|
+
brozar4a729529ca5c3_more_scroll_bar.addParam('scaleMode', 'showAll');
|
|
1188
|
+
brozar4a729529ca5c3_more_scroll_bar.addParam('quality', 'medium');
|
|
1189
|
+
|
|
1190
|
+
brozar4a729529ca5c3_more_scroll_bar.write('brozar4a729529ca5c3_more_scroll_bar');
|
|
1191
|
+
|
|
1192
|
+
$('brozar4a729529ca5c3_more_scroll_area').addEvent('mousewheel', function(event){
|
|
1193
|
+
event = new Event(event);
|
|
1194
|
+
event.stop();
|
|
1195
|
+
|
|
1196
|
+
if (event.wheel > 0) {
|
|
1197
|
+
document.getElementById('brozar4a729529ca5c3_more_scroll_swf').mousewheelUp();
|
|
1198
|
+
}
|
|
1199
|
+
else if (event.wheel < 0) { // Down
|
|
1200
|
+
document.getElementById('brozar4a729529ca5c3_more_scroll_swf').mousewheelDown();
|
|
1201
|
+
}
|
|
1202
|
+
});
|
|
1203
|
+
});
|
|
1204
|
+
|
|
1205
|
+
window.addEvent('domready', function() {
|
|
1206
|
+
|
|
1207
|
+
new Moogaloop('vimeo_swf4a729529cf3f0', {
|
|
1208
|
+
clip_id: '5325918', server: 'vimeo.com', autoplay: '0', fullscreen: '1', show_portrait: '0', show_title: '0', show_byline: '0', color: '00ADEF', context: '', context_id: '', hd_off: '0', force_embed: '1', buildnum: '27143' });
|
|
1209
|
+
|
|
1210
|
+
});
|
|
1211
|
+
|
|
1212
|
+
var cur_search_type = 'Videos';
|
|
1213
|
+
EventCenter.fire('domready');
|
|
1214
|
+
</script> <div style="display: none;">
|
|
1215
|
+
<script type="text/javascript">
|
|
1216
|
+
_qoptions = {qacct:"p-53jJe1KAP5ehs"};
|
|
1217
|
+
</script>
|
|
1218
|
+
|
|
1219
|
+
<script src="http://edge.quantserve.com/quant.js" type="text/javascript"></script>
|
|
1220
|
+
|
|
1221
|
+
<script src="http://www.google-analytics.com/ga.js" type="text/javascript"></script>
|
|
1222
|
+
|
|
1223
|
+
<script type="text/javascript">
|
|
1224
|
+
var tracker = _gat._getTracker('UA-76641-8');
|
|
1225
|
+
|
|
1226
|
+
tracker._setLocalRemoteServerMode();
|
|
1227
|
+
tracker._setDomainName('.vimeo.com');
|
|
1228
|
+
tracker._setLocalGifPath('http://utmtrk.vimeo.com/__utm.gif');
|
|
1229
|
+
|
|
1230
|
+
tracker._initData();
|
|
1231
|
+
|
|
1232
|
+
tracker._setVar('logged_out');
|
|
1233
|
+
|
|
1234
|
+
tracker._trackPageview();
|
|
1235
|
+
|
|
1236
|
+
function trigger_pageview(url) {
|
|
1237
|
+
tracker._trackPageview(url);
|
|
1238
|
+
}
|
|
1239
|
+
</script>
|
|
1240
|
+
</div> <script language="javascript" type="text/javascript" src="http://iacas.adbureau.net/aamBundledAds.js"></script>
|
|
1241
|
+
<script language="javascript">
|
|
1242
|
+
var adTargetAll;
|
|
1243
|
+
|
|
1244
|
+
if (Cookie.get('__utma')) {
|
|
1245
|
+
var utmaSplit = Cookie.get('__utma').split('.');
|
|
1246
|
+
adTargetAll += '/uu=' + utmaSplit[1] + '.' + utmaSplit[2];
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
document.writeln('<scr'+ 'ipt type="text/javascript" src="http://iacas.adbureau.net/bservers/AAMALL/site=vimeo.com/AREA=films.hd/AAMB1/aamsz=300x250/uid=0/position=1/pageid=5855328289/random=5855328289?"></scr' + 'ipt>');
|
|
1250
|
+
</script>
|
|
1251
|
+
<script type="text/javascript">aamRenderAllAds();</script>
|
|
1252
|
+
|
|
1253
|
+
|
|
1254
|
+
<script type="text/javascript" src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php"></script>
|
|
1255
|
+
<script type="text/javascript">
|
|
1256
|
+
FB.init('9bc9032d92510692bb7d0a6ddc749f04', '/xd_receiver.htm');
|
|
1257
|
+
</script>
|
|
1258
|
+
|
|
1259
|
+
</body>
|
|
1260
|
+
</html>
|