onebox 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +1 -0
- data/.rubocop.yml +476 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +92 -0
- data/Rakefile +22 -0
- data/lib/onebox.rb +33 -0
- data/lib/onebox/engine.rb +93 -0
- data/lib/onebox/engine/amazon_onebox.rb +25 -0
- data/lib/onebox/engine/bliptv_onebox.rb +26 -0
- data/lib/onebox/engine/clikthrough_onebox.rb +23 -0
- data/lib/onebox/engine/college_humor_onebox.rb +26 -0
- data/lib/onebox/engine/dailymotion_onebox.rb +26 -0
- data/lib/onebox/engine/dotsub_onebox.rb +25 -0
- data/lib/onebox/engine/example_onebox.rb +25 -0
- data/lib/onebox/engine/flickr_onebox.rb +25 -0
- data/lib/onebox/engine/funny_or_die_onebox.rb +26 -0
- data/lib/onebox/engine/html.rb +11 -0
- data/lib/onebox/engine/hulu_onebox.rb +26 -0
- data/lib/onebox/engine/nfb_onebox.rb +25 -0
- data/lib/onebox/engine/open_graph.rb +11 -0
- data/lib/onebox/engine/qik_onebox.rb +23 -0
- data/lib/onebox/engine/revision3_onebox.rb +26 -0
- data/lib/onebox/engine/slideshare_onebox.rb +25 -0
- data/lib/onebox/engine/sound_cloud_onebox.rb +25 -0
- data/lib/onebox/engine/stack_exchange_onebox.rb +23 -0
- data/lib/onebox/engine/ted_onebox.rb +25 -0
- data/lib/onebox/engine/viddler_onebox.rb +26 -0
- data/lib/onebox/engine/vimeo_onebox.rb +26 -0
- data/lib/onebox/engine/wikipedia_onebox.rb +24 -0
- data/lib/onebox/engine/yfrog_onebox.rb +25 -0
- data/lib/onebox/matcher.rb +13 -0
- data/lib/onebox/preview.rb +31 -0
- data/lib/onebox/version.rb +3 -0
- data/onebox.gemspec +36 -0
- data/spec/fixtures/amazon.response +3098 -0
- data/spec/fixtures/android.response +138 -0
- data/spec/fixtures/apple.response +391 -0
- data/spec/fixtures/bliptv.response +724 -0
- data/spec/fixtures/clickthrough.response +1472 -0
- data/spec/fixtures/clikthrough.response +1472 -0
- data/spec/fixtures/collegehumor.response +1272 -0
- data/spec/fixtures/dailymotion.response +575 -0
- data/spec/fixtures/dotsub.response +1257 -0
- data/spec/fixtures/example.response +50 -0
- data/spec/fixtures/flickr.response +1292 -0
- data/spec/fixtures/funnyordie.response +2010 -0
- data/spec/fixtures/gist.response +282 -0
- data/spec/fixtures/github_blob.response +706 -0
- data/spec/fixtures/github_commit.response +881 -0
- data/spec/fixtures/github_pullrequest.response +1619 -0
- data/spec/fixtures/hulu.response +339 -0
- data/spec/fixtures/image.response +0 -0
- data/spec/fixtures/imgur.response +892 -0
- data/spec/fixtures/kinomap.response +299 -0
- data/spec/fixtures/nfb.response +810 -0
- data/spec/fixtures/opengraph.response +27 -0
- data/spec/fixtures/qik.response +371 -0
- data/spec/fixtures/revision3.response +985 -0
- data/spec/fixtures/rottentomatoes_fresh.response +3275 -0
- data/spec/fixtures/rottentomatoes_incomplete.response +2313 -0
- data/spec/fixtures/rottentomatoes_rotten.response +3549 -0
- data/spec/fixtures/slideshare.response +1745 -0
- data/spec/fixtures/soundcloud.response +1409 -0
- data/spec/fixtures/stackexchange.response +1889 -0
- data/spec/fixtures/ted.response +1341 -0
- data/spec/fixtures/twitter.response +1712 -0
- data/spec/fixtures/viddler.response +442 -0
- data/spec/fixtures/video.response +0 -0
- data/spec/fixtures/vimeo.response +571 -0
- data/spec/fixtures/wikipedia.response +1236 -0
- data/spec/fixtures/wikipedia_redirected.response +899 -0
- data/spec/fixtures/yfrog.response +464 -0
- data/spec/lib/onebox/engine/amazon_spec.rb +34 -0
- data/spec/lib/onebox/engine/bliptv_spec.rb +34 -0
- data/spec/lib/onebox/engine/clikthrough_spec.rb +26 -0
- data/spec/lib/onebox/engine/college_humor_spec.rb +34 -0
- data/spec/lib/onebox/engine/dailymotion_spec.rb +36 -0
- data/spec/lib/onebox/engine/dotsub_spec.rb +36 -0
- data/spec/lib/onebox/engine/example_spec.rb +18 -0
- data/spec/lib/onebox/engine/flickr_spec.rb +30 -0
- data/spec/lib/onebox/engine/funny_or_die_spec.rb +34 -0
- data/spec/lib/onebox/engine/hulu_spec.rb +34 -0
- data/spec/lib/onebox/engine/nfb_spec.rb +35 -0
- data/spec/lib/onebox/engine/qik_spec.rb +35 -0
- data/spec/lib/onebox/engine/revision3_spec.rb +36 -0
- data/spec/lib/onebox/engine/slideshare_spec.rb +30 -0
- data/spec/lib/onebox/engine/sound_cloud_spec.rb +36 -0
- data/spec/lib/onebox/engine/stack_exchange_spec.rb +27 -0
- data/spec/lib/onebox/engine/ted_spec.rb +30 -0
- data/spec/lib/onebox/engine/viddler_spec.rb +36 -0
- data/spec/lib/onebox/engine/vimeo_spec.rb +34 -0
- data/spec/lib/onebox/engine/wikipedia_spec.rb +30 -0
- data/spec/lib/onebox/engine/yfrog_spec.rb +30 -0
- data/spec/lib/onebox/engine_spec.rb +78 -0
- data/spec/lib/onebox/matcher_spec.rb +20 -0
- data/spec/lib/onebox/preview_spec.rb +21 -0
- data/spec/lib/onebox_spec.rb +49 -0
- data/spec/spec_helper.rb +26 -0
- data/spec/support/html_spec_helper.rb +17 -0
- data/templates/amazon.handlebars +9 -0
- data/templates/bliptv.handlebars +10 -0
- data/templates/clickthrough.handlebars +8 -0
- data/templates/clikthrough.handlebars +8 -0
- data/templates/collegehumor.handlebars +9 -0
- data/templates/dailymotion.handlebars +9 -0
- data/templates/dotsub.handlebars +9 -0
- data/templates/flickr.handlebars +8 -0
- data/templates/funnyordie.handlebars +9 -0
- data/templates/hulu.handlebars +9 -0
- data/templates/nfb.handlebars +8 -0
- data/templates/qik.handlebars +7 -0
- data/templates/revision3.handlebars +9 -0
- data/templates/slideshare.handlebars +8 -0
- data/templates/soundcloud.handlebars +9 -0
- data/templates/stackexchange.handlebars +7 -0
- data/templates/ted.handlebars +8 -0
- data/templates/viddler.handlebars +9 -0
- data/templates/vimeo.handlebars +9 -0
- data/templates/wikipedia.handlebars +8 -0
- data/templates/yfrog.handlebars +8 -0
- metadata +447 -0
@@ -0,0 +1,575 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html xml:lang="fr" lang="fr">
|
3
|
+
<head id="head">
|
4
|
+
<script type="text/javascript">
|
5
|
+
window.dm_times = {
|
6
|
+
start: (new Date()).getTime()
|
7
|
+
};
|
8
|
+
</script>
|
9
|
+
<title>Two Door Cinema Club - Les Vielles Charrues 2013. - Vidéo Dailymotion</title>
|
10
|
+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
11
|
+
<meta name="lang" content="fr" />
|
12
|
+
<meta property="fb:app_id" content="96937694899" />
|
13
|
+
<meta name="description" content="Vibrez au son de l'electro-pop des Irlandais de Two Door Cinema Club, l'un des groupes les plus cools du moment monte sur la scène des Vieilles Charrues pour un live explosif" />
|
14
|
+
<meta name="keywords" content="Two Door Cinema Club,music,musique,concert,vielles charrues,les vieilles charrues,LVC2013,TDCC" />
|
15
|
+
<meta name="author" content="dailymotion.com" />
|
16
|
+
<meta name="y_key" content="a87a0d996fe5f70f" />
|
17
|
+
<meta name="msvalidate.01" content="42E38E6C5CF3C253563039FCD6F3F775" />
|
18
|
+
<meta property="og:title" content="Two Door Cinema Club - Les Vielles Charrues 2013." />
|
19
|
+
<meta property="og:video:type" content="application/x-shockwave-flash" />
|
20
|
+
<meta property="og:video" content="http://www.dailymotion.com/swf/video/x12h020?autoPlay=1" />
|
21
|
+
<meta property="og:video:width" content="640" />
|
22
|
+
<meta property="og:video:height" content="360" />
|
23
|
+
<meta property="og:url" content="http://www.dailymotion.com/video/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music" />
|
24
|
+
<meta property="og:site_name" content="Dailymotion" />
|
25
|
+
<meta property="og:type" content="video" />
|
26
|
+
<meta property="og:image" content="http://s1.dmcdn.net/CJsYA/526x297-bxE.jpg" />
|
27
|
+
<meta property="og:description" content="Vibrez au son de l'electro-pop des Irlandais de Two Door Cinema Club, l'un des groupes les plus cools du moment monte sur la scène des Vieilles Charrues pour un live explosif" />
|
28
|
+
<meta property="video:duration" content="4435" />
|
29
|
+
<meta property="video:director" content="http://www.dailymotion.com/LesVieillesCharrues" />
|
30
|
+
<meta property="video:release_date" content="2013-07-30T19:53:26+02:00" />
|
31
|
+
<meta property="video:tag" content="vielles charrues" />
|
32
|
+
<meta name="twitter:card" value="player" />
|
33
|
+
<meta name="twitter:player" value="https://www.dailymotion.com/embed/video/x12h020" />
|
34
|
+
<meta name="twitter:player:width" value="640" />
|
35
|
+
<meta name="twitter:player:height" value="360" />
|
36
|
+
<meta name="twitter:site" value="DailymotionUSA" />
|
37
|
+
<meta name="twitter:app:name:iphone" value="Dailymotion" />
|
38
|
+
<meta name="twitter:app:id:iphone" value="336978041" />
|
39
|
+
<meta name="twitter:app:url:iphone" value="dailymotion://video/x12h020" />
|
40
|
+
<meta name="twitter:app:name:ipad" value="Dailymotion" />
|
41
|
+
<meta name="twitter:app:id:ipad" value="336978041" />
|
42
|
+
<meta name="twitter:app:url:ipad" value="dailymotion://video/x12h020" />
|
43
|
+
<meta name="twitter:app:name:googleplay" value="Dailymotion" />
|
44
|
+
<meta name="twitter:app:id:googleplay" value="com.dailymotion.dailymotion" />
|
45
|
+
<meta name="twitter:app:url:googleplay" value="dailymotion://video/x12h020" />
|
46
|
+
<meta name="medium" content="video" />
|
47
|
+
<meta name="video_type" content="application/x-shockwave-flash" />
|
48
|
+
<meta name="video_height" content="564" />
|
49
|
+
<meta name="video_width" content="1000" />
|
50
|
+
<link rel="canonical" href="http://www.dailymotion.com/video/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music" />
|
51
|
+
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Search videos on Dailymotion" />
|
52
|
+
<link rel="apple-touch-icon" href="http://static1.dmcdn.net/images/apple-touch-icon.png.vcbf86c6fe83fbbe19" />
|
53
|
+
<link rel="shortcut icon" type="image/x-icon" href="http://static1.dmcdn.net/images/favicon.ico.v4ea850dd4f7f3de09" />
|
54
|
+
<link rel="alternate" media="only screen and (max-width: 640px)" href="http://touch.dailymotion.com/video/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music" />
|
55
|
+
<link rel="image_src" type="image/jpeg" href="http://www.dailymotion.com/thumbnail/160x120/video/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music" />
|
56
|
+
<link rel="thumbnail" type="image/jpeg" href="/thumbnail/320x240/video/x12h020" />
|
57
|
+
<link rel="alternate" type="application/json+oembed" title="Two Door Cinema Club - Les Vielles Charrues 2013." href="http://www.dailymotion.com/services/oembed?url=http%3A%2F%2Fwww.dailymotion.com%2Fvideo%2Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music&format=json" />
|
58
|
+
<link rel="alternate" type="application/xml+oembed" title="Two Door Cinema Club - Les Vielles Charrues 2013." href="http://www.dailymotion.com/services/oembed?url=http%3A%2F%2Fwww.dailymotion.com%2Fvideo%2Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music&format=xml" />
|
59
|
+
<link rel="video_src" href="http://www.dailymotion.com/swf/video/x12h020?autoPlay=1" />
|
60
|
+
<link rel="stylesheet" href="http://static1.dmcdn.net/css/gen/pack/video.css.v6ac0cdf9b957c88d9" />
|
61
|
+
<script src="http://static1.dmcdn.net/js/gen/widget/pack/mandatory.js.v8fc46947d67ecbf29" type="text/javascript" charset="utf-8"></script>
|
62
|
+
<script type="text/javascript">
|
63
|
+
BOOMRBeaconUrl = "/track-boomerang/";
|
64
|
+
DM_LoginCookie = "login_infos";
|
65
|
+
familyFilterUri = "/family_filter?urlback=%2Fvideo%2Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music";
|
66
|
+
DM_Widget_PageItem_Video_Preview_NO_DESCRIPTION = "This video has no description.";
|
67
|
+
autocomplete_resultsLabel = "Results";
|
68
|
+
facebook_enabled = true;
|
69
|
+
DM_Widget_PageItem_Facebook_Connect_APP_ID = "96937694899";
|
70
|
+
DM_Widget_PageItem_Facebook_Connect_API_KEY = "c428ec775e20b333d99e64040df42c5c";
|
71
|
+
DM_Widget_PageItem_Facebook_Connect_RECEIVER_URI = "/xd_receiver.htm";
|
72
|
+
DM_Widget_PageItem_Facebook_Connect_LOGOUT_CONFIRM_MSG = "A different Dailymotion user is currently logged into Facebook. Do you want to log them out?";
|
73
|
+
DM_MobileVersionAvailableLabel = "A mobile version of Dailymotion is available for your device. Do You want to use it? Your choice will be remembered during 1 day.";
|
74
|
+
DM_CloseLabel = "close";
|
75
|
+
DM_Closex28Label = "Skip Ad";
|
76
|
+
DM_PaidLabel = "✔ paid";
|
77
|
+
DM_Widget_PageItem_Search_language = "us";
|
78
|
+
DM_Widget_PageItem_Search_autocomplete_enabled = "1";
|
79
|
+
DMContext = {"version":"us","content_version":"us","language":"us","rfc1766_language":"en-US","country":"us","country_name":"United States","env":"prod","geoip_country":"US","geoip_as":"AS17057","global_request":{"requestURI":"\/video\/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music","objectFactory":{}},"request":{"requestURI":"\/video\/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music","objectFactory":{}},"reader":null,"real_user":null,"uri":"\/video\/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music","channel":"music","is_logged":false,"route_name":"video_item","is_web_crawler":false};
|
80
|
+
DMSkin = [];
|
81
|
+
DM_Widget_PageItem_Facebook_Connect_AUTOLOGIN = true;
|
82
|
+
BOOMREnabled = true;
|
83
|
+
BOOMRWaitForPlayer = true;
|
84
|
+
masscast_async_call= "http://www.dailymotion.com/masscast/2/dailymotion.us/music/videoplayer/1273584604@Bottom,Right,Middle,Top,x11,Top3,Middle1?DMOWNER=LesVieillesCharrues&WIN7=1&DMAPIPLAYER=0&DMROUTE=video_item&DMLOGGED=0&DMTITLE=Two Door Cinema Club - Les Vielles Charrues 2013.&DMTAGS=Two Door Cinema Club,music,musique,concert,vielles charrues,les vieilles charrues,LVC2013,TDCC&DMVIDEOLANG=fr&DMEXT=0&DMVIDEO=64618632&DMREVSHARE=1&DMPARTNER=1&DMVIDEOTYPE=official&DMMONETISABLE=1&DMDURATION=4435&DMVIDEOAGE=58&DMSTREAMMODE=vod&DMVIEWS=500+&DMNOADFIT=0&DMEXPLICIT=0&DMCHANNEL=music&DMLANG=en&DMTYPE=prod&DMV3=1&DMHANDSET=unknow";
|
85
|
+
DM_CurrentVideoId='64618632';
|
86
|
+
DM_CurrentVideoXID='x12h020';
|
87
|
+
DM_Widget_PageItem_AutoComplete_typeLabel="Email\x20addresses...";
|
88
|
+
showRedBand=false;
|
89
|
+
DM_PlayerLightAndExpander_Shrink="Shrink\x20player";
|
90
|
+
DM_PlayerLightAndExpander_Expand="Expand\x20player";
|
91
|
+
videoHasPartnerPlayer = false;
|
92
|
+
auditudeEnabledForVideo = true;
|
93
|
+
(function()
|
94
|
+
{
|
95
|
+
window.BOOMRPlayerEvents = ['StateChange','VideoProgress','LinearAdStart','LinearAdComplete', 'VideoMetadata'];
|
96
|
+
window.BOOMRPlayerEventsQueue = [];
|
97
|
+
window.BOOMRProxyPlayerHandler = function(eventName)
|
98
|
+
{
|
99
|
+
return function(data)
|
100
|
+
{
|
101
|
+
BOOMRPlayerEventsQueue.push([eventName, data]);
|
102
|
+
}
|
103
|
+
};
|
104
|
+
DM_Player.addReadyCallback(function(id)
|
105
|
+
{
|
106
|
+
if (id != 'video_player_main') return;
|
107
|
+
window.BOOMRPlayer = $j('#' + id).get(0);
|
108
|
+
for (var i = 0, l = BOOMRPlayerEvents.length ; i < l ; i++)
|
109
|
+
{
|
110
|
+
BOOMRPlayer.addEventListener('on' + BOOMRPlayerEvents[i], 'BOOMRProxyPlayerHandler("' + BOOMRPlayerEvents[i] + '")');
|
111
|
+
}
|
112
|
+
});
|
113
|
+
})();
|
114
|
+
</script>
|
115
|
+
<script type="text/javascript">
|
116
|
+
dm_times.env_top = (new Date()).getTime();
|
117
|
+
</script>
|
118
|
+
</head>
|
119
|
+
<body id="bodyall" class=" lt_site resizer_enabled
|
120
|
+
pg_video">
|
121
|
+
<div id="fb-root">
|
122
|
+
<script type="text/javascript">
|
123
|
+
FBScriptLoaded = false;
|
124
|
+
window.fbAsyncInit = function()
|
125
|
+
{
|
126
|
+
FBScriptLoaded = true;if (typeof DM_Widget_PageItem_Facebook_Connect != 'undefined' && typeof FBConnectInit != 'undefined' && !FBConnectInit){DM_Widget_PageItem_Facebook_Connect.initialize(true);}};(function(){if (facebook_enabled){var e = document.createElement('script');e.type = 'text/javascript';e.src="http://connect.facebook.net/en_US/all.js";e.async = true;document.getElementById('fb-root').appendChild(e);}
|
127
|
+
}());
|
128
|
+
</script>
|
129
|
+
</div> <div class="sd_bodytopscripts">
|
130
|
+
<script type="text/javascript">
|
131
|
+
var crtg_nid="1276";
|
132
|
+
var crtg_cookiename="cto_dailyus";
|
133
|
+
var crtg_varname="crtg_content";
|
134
|
+
function crtg_getCookie(c_name)
|
135
|
+
{
|
136
|
+
var i,x,y,ARRCookies=document.cookie.split(";");
|
137
|
+
for(i=0;i<ARRCookies.length;i++)
|
138
|
+
{
|
139
|
+
x=ARRCookies[i].substr(0,ARRCookies[i].indexOf("="));
|
140
|
+
y=ARRCookies[i].substr(ARRCookies[i].indexOf("=")+1);
|
141
|
+
x=x.replace(/^\s+|\s+$/g,"");
|
142
|
+
if(x==c_name)
|
143
|
+
{
|
144
|
+
return unescape(y);
|
145
|
+
}
|
146
|
+
}
|
147
|
+
return "";
|
148
|
+
}
|
149
|
+
function criteoWrapper()
|
150
|
+
{
|
151
|
+
var crtg_content = crtg_getCookie(crtg_cookiename);
|
152
|
+
var crtg_rnd=Math.floor(Math.random()*99999999999);
|
153
|
+
var crtg_url=location.protocol+"//rtax.criteo.com/delivery/rta/rta.js?netId="+escape(crtg_nid);
|
154
|
+
crtg_url+="&cookieName="+escape(crtg_cookiename);
|
155
|
+
crtg_url+="&rnd="+crtg_rnd;
|
156
|
+
crtg_url+="&varName=" + escape(crtg_varname);
|
157
|
+
var crtg_script=document.createElement("script");
|
158
|
+
crtg_script.type="text/javascript";
|
159
|
+
crtg_script.src=crtg_url;
|
160
|
+
crtg_script.id = "criteo_script";
|
161
|
+
crtg_script.async=true;
|
162
|
+
//added that
|
163
|
+
if (document.getElementById("criteo_script"))
|
164
|
+
{
|
165
|
+
document.getElementsByTagName("head")[0].appendChild(crtg_script);
|
166
|
+
}
|
167
|
+
//end added that
|
168
|
+
else if(document.getElementsByTagName("head").length>0)
|
169
|
+
{
|
170
|
+
document.getElementsByTagName("head")[0].appendChild(crtg_script);
|
171
|
+
}
|
172
|
+
else if(document.getElementsByTagName("body").length>0)
|
173
|
+
{
|
174
|
+
document.getElementsByTagName("body")[0].appendChild(crtg_script);
|
175
|
+
}
|
176
|
+
}
|
177
|
+
// call it once here and let OAS do setInterval(criteoWrapper, xxx);
|
178
|
+
criteoWrapper();
|
179
|
+
</script>
|
180
|
+
</div>
|
181
|
+
<div id="mc_x28" class="mc mc_hide "></div>
|
182
|
+
<div id="topwrapper">
|
183
|
+
<div class="sd_header">
|
184
|
+
<div id="header">
|
185
|
+
<a class="logo" href="/us" title="Home">Dailymotion</a>
|
186
|
+
<form action="/" id="header_search" name="header_search" method="get">
|
187
|
+
<input id="input_search" type="text" name="search" maxlength="256" autocomplete="off" spellcheck="false" value="">
|
188
|
+
<input id="search_hitmap" type="hidden" name="hitmap" value="">
|
189
|
+
<input id="search_locale" type="hidden" name="locale" value="us">
|
190
|
+
<button id="search_submit" type="submit" name="submit_button" value=""><span class="icon icon-search"></span></button>
|
191
|
+
</form>
|
192
|
+
<ul class="header_links">
|
193
|
+
<li class="browse"><a class="header_link" href="/us/browse" title="Browse">Browse</a></li>
|
194
|
+
<li><a href="/upload" title="Upload a Video">Upload a Video</a></li>
|
195
|
+
</ul>
|
196
|
+
<div id="login_info" class="login_info">
|
197
|
+
<a href="/register" class="register" title="Create Account">Create Account</a>
|
198
|
+
<span data-href="/pageitem/loginfull?mode=basic&request=/login?request=0" class="linkable ajaxlink action:popup action:arg0:#footer dm_login_info sign_in no_icon_loading" onclick="DM_Ajax.link(this); return false;">Sign in</span>
|
199
|
+
</div>
|
200
|
+
<script type="text/javascript">
|
201
|
+
var usernameLink = '\x20\x20\x20\x20\x0A\x20\x20\x20\x20\x20\x20\x20\x20\x0A\x20\x20\x20\x20\x0A\x20\x20\x20\x20\x20\x20\x20\x20\x0A\x20\x20\x20\x20\x0A\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0A\x20\x20\x20\x20\x0A\x0A\x20\x20\x20\x20\x3Cspan\x20\x20data\x2Dhref\x3D\x22\x2Fcontroller\x2FShared_User_HeaderMenu\x3Frequest\x3D\x252Fvideo\x252Fx12h020_two\x2Ddoor\x2Dcinema\x2Dclub\x2Dles\x2Dvielles\x2Dcharrues\x2D2013_music\x22\x20\x20\x20id\x3D\x22header_user_menu\x22\x20class\x3D\x22linkable\x20ajaxlink\x20action\x3AtoggleOrUpdate\x20action\x3Aarg0\x3A\x23header_login_menu\x20\x22\x20onclick\x3D\x22DM_Ajax.link\x28this\x29\x3B\x20return\x20false\x3B\x22\x3E\x3Cspan\x20class\x3D\x22arrow\x22\x3E\x3Cspan\x20class\x3D\x22icon\x20icon\x2Darrow_down\x22\x3E\x3C\x2Fspan\x3E\x3C\x2Fspan\x3E\x3C\x2Fspan\x3E\x0A';
|
202
|
+
HeaderLogin.update();
|
203
|
+
</script>
|
204
|
+
</div>
|
205
|
+
</div>
|
206
|
+
<div id="wrapper" class="container ">
|
207
|
+
<div id="top_banner">
|
208
|
+
<div id="mc_Top" class="mc mc_hide "></div>
|
209
|
+
</div>
|
210
|
+
<!--[if lt IE 8]>
|
211
|
+
<div class="sd_oldie_notice js-oldie" style="
|
212
|
+
margin: 10px auto 20px;
|
213
|
+
width: 950px;
|
214
|
+
line-height: 40px;
|
215
|
+
padding: 10px;
|
216
|
+
border-radius: 3px;
|
217
|
+
font-size: 17px;
|
218
|
+
text-align: center;
|
219
|
+
-moz-border-radius: 3px;
|
220
|
+
-webkit-border-radius: 3px;
|
221
|
+
background-color: #f7f7f7;
|
222
|
+
color: #333333;
|
223
|
+
box-shadow: 0 2px 2px rgba(0,0,0,0.2);
|
224
|
+
position: relative;
|
225
|
+
display: none;">
|
226
|
+
<div>
|
227
|
+
<h3 style="position:relative;top:-8px;">
|
228
|
+
<img src="http://static1.dmcdn.net/images/8bit/updateie6_icon_8bit.png.ve811766da0b3be379" style="position:relative;top:5px;height:30px;margin-right:10px;">
|
229
|
+
Looking for a safer and more improved viewing experience? Take the time to <a href="#" target="_blank">upgrade</a> to a browser that's more up-to-date and secure. </h3>
|
230
|
+
</div>
|
231
|
+
<span class="icon-close js-oldie-close" style="
|
232
|
+
font-size: 10px;
|
233
|
+
position: absolute;
|
234
|
+
right: 5px;
|
235
|
+
top: 5px;
|
236
|
+
cursor: pointer;
|
237
|
+
display:none;
|
238
|
+
"></span>
|
239
|
+
</div>
|
240
|
+
<script type="text/javascript">
|
241
|
+
$j(function()
|
242
|
+
{
|
243
|
+
if (getCookie('oldieclose') !== null)
|
244
|
+
{
|
245
|
+
return;
|
246
|
+
}
|
247
|
+
$j('.js-oldie').slideDown();
|
248
|
+
var href = 'http://windows.microsoft.com/' + DMContext.rfc1766_language + '/internet-explorer/download-ie';
|
249
|
+
$j('.js-oldie a').attr('href', href).css({color: '#0079b8', 'font-weight': 'bold'});
|
250
|
+
$j('.js-oldie')
|
251
|
+
.on('mouseenter', function() {$j('.js-oldie-close').fadeIn(200);})
|
252
|
+
.on('mouseleave', function() {$j('.js-oldie-close').fadeOut(200);});
|
253
|
+
$j('.js-oldie-close')
|
254
|
+
.on('click', function()
|
255
|
+
{
|
256
|
+
$j(this).closest('.js-oldie').slideUp(200);
|
257
|
+
setCookie('oldieclose', true);
|
258
|
+
});
|
259
|
+
});
|
260
|
+
</script> <![endif]-->
|
261
|
+
<div id="content" class="clearfix">
|
262
|
+
<div class="dmpi_box dmpi_bigbox background clearfix " itemscope itemtype="http://schema.org/VideoObject">
|
263
|
+
<meta itemprop="isFamilyFriendly" content="true"/>
|
264
|
+
<link itemprop="url" href="http://www.dailymotion.com/video/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music" />
|
265
|
+
<link itemprop="thumbnailUrl" href="http://s1.dmcdn.net/CJsYA/x240-4WS.jpg" />
|
266
|
+
<meta itemprop="name" content="Two Door Cinema Club - Les Vielles Charrues 2013." />
|
267
|
+
<meta itemprop="description" content="Vibrez au son de l'electro-pop des Irlandais de Two Door Cinema Club, l'un des groupes les plus cools du moment monte sur la scène des Vieilles Charrues pour un live explosif" />
|
268
|
+
<div itemprop="author" itemscope itemtype="http://schema.org/Person">
|
269
|
+
<link itemprop="url" href="http://www.dailymotion.com/LesVieillesCharrues">
|
270
|
+
</div>
|
271
|
+
<meta itemprop="playerType" content="Flash" />
|
272
|
+
<meta itemprop="width" content="1000" />
|
273
|
+
<meta itemprop="height" content="564" />
|
274
|
+
<meta itemprop="duration" content="PT1H13M55S" />
|
275
|
+
<meta itemprop="uploadDate" content="2013-07-30T19:53:26+02:00" />
|
276
|
+
<meta itemprop="regionsAllowed" content="AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GS,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TK,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW" />
|
277
|
+
<script id="pl_video_componentsloader" type="text/javascript">
|
278
|
+
(function(){
|
279
|
+
var components = {
|
280
|
+
tabs: {
|
281
|
+
replace: "#player_page_tabs_ph",
|
282
|
+
options: {
|
283
|
+
gg_search: false,
|
284
|
+
from_context: ""
|
285
|
+
}
|
286
|
+
},
|
287
|
+
live_comments: {
|
288
|
+
replace: "#live_comments_ph"
|
289
|
+
}
|
290
|
+
};
|
291
|
+
components["related"] = {
|
292
|
+
replace: "#related_ph",
|
293
|
+
callback: function()
|
294
|
+
{
|
295
|
+
window.vsContextInstrument && vsContextInstrument("#related");
|
296
|
+
window.dm_context && dm_context.apply("#related");
|
297
|
+
}
|
298
|
+
};
|
299
|
+
DM_WidgetV3.multiGet("video", document.location.pathname, components);
|
300
|
+
})();
|
301
|
+
</script>
|
302
|
+
<div class="left_content span-8">
|
303
|
+
<div class="player_box span-8" id="player_box">
|
304
|
+
<div class="dmpi_video_playerv4 span-8" data-expand-dims="[940,532]" data-default-dims="[620,348]" id="player_main" style="background-color: #000; height: 348px;">
|
305
|
+
<div class="dmco_html player_box" id="container_player_main"><script>
|
306
|
+
var iframePlayer = null,
|
307
|
+
flashVersion = swfobject.getFlashPlayerVersion(),
|
308
|
+
flashOK = true;
|
309
|
+
if (flashVersion.major >= 10 && flashVersion.minor >= 0)
|
310
|
+
{
|
311
|
+
var swfURL = flashVersion.major >= 11 ? 'http://static1.dmcdn.net/flash/dmplayerv4/dmplayer-prod-compressed.swf.vef0e4fa5ac95daed9' : 'http://static1.dmcdn.net/flash/dmplayerv4/dmplayer-prod.swf.v1ac83eadf7bc89119';
|
312
|
+
var flashvars = {"allowHTTPSRewriting":0,"id":"video_player_main","background":"0x171D1B","foreground":"0xF7FFFD","highlight":"0xFFCC33","enableApi":1,"playerapiid":"video_player_main","apiSequenceURL":"http%3A%2F%2Fwww.dailymotion.com%2Fsequence%2F%25TYPE%2F%25VIDEO_ID%3F%25QUERY_PARAMS","chromeless":0,"parentURL":"","isEmbedded":0,"drmToken":"","logo":"0","APICustomParams":"%7B%22autoplay%22%3Atrue%7D","diagnosticURL":"http:\/\/www.dailymotion.com\/diagnostic_player","sequence":"%7B%22config%22%3A%7B%22metadata%22%3A%7B%22title%22%3A%22Two+Door+Cinema+Club+-+Les+Vielles+Charrues+2013.%22%7D%2C%22skinLegacy%22%3A1%2C%22skinCustomColors%22%3A1%2C%22skinForeground%22%3A%22%22%2C%22skinBackground%22%3A%22%22%2C%22skinHighlight%22%3A%22%22%2C%22skin%22%3A%22%22%2C%22labels%22%3A%7B%22fullscreenDisabled%22%3A%22Fullscreen+has+been+disabled%22%2C%22embed%22%3A%22Embed%22%2C%22link%22%3A%22Link%22%2C%22startAt%22%3A%22Start+at%22%2C%22hotspotCopied%22%3A%22Hotspot+link+copied%21+Press+%5C%22ctrl+%2B+V%5C%22+to+paste.%22%2C%22embedCodeCopied%22%3A%22Embed+code+copied%21+Press+%5C%22ctrl+%2B+V%5C%22+to+paste.%22%2C%22permalinkCopied%22%3A%22Permalink+copied%21+Press+%5C%22ctrl+%2B+V%5C%22+to+paste.%22%7D%2C%22ad%22%3A%7B%22timeout%22%3A6000%7D%2C%22sharing%22%3A%7B%22permalinkURL%22%3A%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fvideo%5C%2Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%22%2C%22embedCode%22%3A%22%3Ciframe+frameborder%3D%5C%220%5C%22+width%3D%5C%22480%5C%22+height%3D%5C%22270%5C%22+src%3D%5C%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fembed%5C%2Fvideo%5C%2Fx12h020%5C%22%3E%3C%5C%2Fiframe%3E%3Cbr+%5C%2F%3E%3Ca+href%3D%5C%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fvideo%5C%2Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%5C%22+target%3D%5C%22_blank%5C%22%3ETwo+Door+Cinema+Club+-+Les+Vielles+Charrues+2013.%3C%5C%2Fa%3E+%3Ci%3Eby+%3Ca+href%3D%5C%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2FLesVieillesCharrues%5C%22+target%3D%5C%22_blank%5C%22%3ELesVieillesCharrues%3C%5C%2Fa%3E%3C%5C%2Fi%3E%22%2C%22facebookURL%22%3A%22http%3A%5C%2F%5C%2Fapi.addthis.com%5C%2Foexchange%5C%2F0.8%5C%2Fforward%5C%2Ffacebook%5C%2Foffer%3Fpubid%3Dra-50aca8a73e88e50a%26ct%3D1%26url%3Dhttp%253A%252F%252Fwww.dailymotion.com%252Fvideo%252Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%26title%3DTwo%2BDoor%2BCinema%2BClub%2B-%2BLes%2BVielles%2BCharrues%2B2013.%22%2C%22twitterURL%22%3A%22http%3A%5C%2F%5C%2Fapi.addthis.com%5C%2Foexchange%5C%2F0.8%5C%2Fforward%5C%2Ftwitter%5C%2Foffer%3Fpubid%3Dra-50aca8a73e88e50a%26ct%3D1%26url%3Dhttp%253A%252F%252Fwww.dailymotion.com%252Fvideo%252Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%26title%3DTwo%2BDoor%2BCinema%2BClub%2B-%2BLes%2BVielles%2BCharrues%2B2013.%2B-%26via%3DDailymotionUSA%22%7D%7D%2C%22sequence%22%3A%5B%7B%22name%22%3A%22root%22%2C%22layerList%22%3A%5B%7B%22name%22%3A%22background%22%2C%22type%22%3A%22Background%22%2C%22param%22%3A%7B%22color%22%3A%22000000%22%2C%22withLoading%22%3Atrue%7D%2C%22sequenceList%22%3A%5B%7B%22name%22%3A%22contextMenu%22%2C%22layerList%22%3A%5B%7B%22name%22%3A%22contextMenu%22%2C%22type%22%3A%22ContextMenu%22%2C%22param%22%3A%7B%22items%22%3A%5B%7B%22label%22%3A%5B%22Share+on+Facebook%22%5D%2C%22type%22%3A%22notification%22%2C%22param%22%3A%7B%22section%22%3A%22share%22%2C%22clickable%22%3Atrue%2C%22enabled%22%3Atrue%2C%22disableAfter%22%3Afalse%2C%22duringLayer%22%3A%22actions%22%2C%22menuItemId%22%3A%22share_facebook%22%2C%22layer%22%3A%22actions%22%2C%22message%22%3A%22shareFacebook%22%7D%7D%2C%7B%22label%22%3A%5B%22Share+on+Twitter%22%5D%2C%22type%22%3A%22notification%22%2C%22param%22%3A%7B%22section%22%3A%22share%22%2C%22clickable%22%3Atrue%2C%22enabled%22%3Atrue%2C%22disableAfter%22%3Afalse%2C%22duringLayer%22%3A%22actions%22%2C%22menuItemId%22%3A%22share_twitter%22%2C%22layer%22%3A%22actions%22%2C%22message%22%3A%22shareTwitter%22%7D%7D%2C%7B%22label%22%3A%5B%22Copy+URL+link%22%5D%2C%22type%22%3A%22copy%22%2C%22param%22%3A%7B%22section%22%3A%22copy%22%2C%22clickable%22%3Atrue%2C%22enabled%22%3Atrue%2C%22disableAfter%22%3Afalse%2C%22duringLayer%22%3A%22%22%2C%22menuItemId%22%3A%22copy_link%22%2C%22data%22%3A%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fvideo%5C%2Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%22%7D%7D%2C%7B%22label%22%3A%5B%22Copy+URL+at+current+time%22%5D%2C%22type%22%3A%22notification%22%2C%22param%22%3A%7B%22section%22%3A%22copy%22%2C%22clickable%22%3Atrue%2C%22enabled%22%3Atrue%2C%22disableAfter%22%3Afalse%2C%22duringLayer%22%3A%22video%22%2C%22menuItemId%22%3A%22copy_link_time%22%2C%22layer%22%3A%22export%22%2C%22message%22%3A%22copyURLAtCurrentTime%22%7D%7D%2C%7B%22label%22%3A%5B%22Copy+embed+code%22%5D%2C%22type%22%3A%22notification%22%2C%22param%22%3A%7B%22section%22%3A%22copy%22%2C%22clickable%22%3Atrue%2C%22enabled%22%3Atrue%2C%22disableAfter%22%3Afalse%2C%22duringLayer%22%3A%22export%22%2C%22menuItemId%22%3A%22copy_embed%22%2C%22layer%22%3A%22export%22%2C%22message%22%3A%22copyEmbedCode%22%7D%7D%2C%7B%22label%22%3A%5B%22Expand+video+on+screen%22%2C%22Fit+video+on+screen%22%5D%2C%22type%22%3A%22notification%22%2C%22param%22%3A%7B%22section%22%3A%22expand_fit%22%2C%22clickable%22%3Atrue%2C%22enabled%22%3Atrue%2C%22disableAfter%22%3Afalse%2C%22duringLayer%22%3A%22video%22%2C%22menuItemId%22%3A%22fit_expand%22%2C%22layer%22%3A%22video%22%2C%22message%22%3A%22expandOrFit%22%7D%7D%2C%7B%22label%22%3A%5B%22Display+video+information%22%2C%22Hide+video+information%22%5D%2C%22type%22%3A%22notification%22%2C%22param%22%3A%7B%22section%22%3A%22display_infos%22%2C%22clickable%22%3Atrue%2C%22enabled%22%3Atrue%2C%22disableAfter%22%3Afalse%2C%22duringLayer%22%3A%22infos%22%2C%22menuItemId%22%3A%22show_hide_infos%22%2C%22layer%22%3A%22infos%22%2C%22message%22%3A%22toggle%22%7D%7D%5D%7D%7D%5D%7D%2C%7B%22name%22%3A%22reporting%22%2C%22layerList%22%3A%5B%7B%22name%22%3A%22reporting%22%2C%22type%22%3A%22Reporting%22%2C%22param%22%3A%7B%22auditude%22%3A1%2C%22URLs%22%3A%7B%22mediaLogView%22%3A%7B%220%22%3A%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Flogger%5C%2Fvideo%5C%2Faccess%5C%2Fx12h020%3Fsession_id%3D%26referer%3D%26country%3DUS%26lon%3D-118.2642000000000%26lat%3D34.0530000000000%26user_agent%3Dcurl%252F7.22.0%2B%2528i686-pc-linux-gnu%2529%2Blibcurl%252F7.22.0%2BOpenSSL%252F1.0.1%2Bzlib%252F1.2.3.4%2Blibidn%252F1.23%2Blibrtmp%252F2.3%26key%3Dcpumu2traj1kpzqlymqw6rc%26v%3D51fb5c38%26i%3Dcc6e0a76%26h%3Dec9616c18f0d35bc90b57e94b59965af%22%2C%22visual_science_video_view%22%3A%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fsense%5C%2Fimages%5C%2Fvs%5C%2Ftag.gif%3Froutename%3Dvideo_item%26pagename%3Dplayer%252Finternal%26video%3D64618632%26vchan%3Dmusic%26streammode%3Dnone%26videotitle%3DTwo%2BDoor%2BCinema%2BClub%2B-%2BLes%2BVielles%2BCharrues%2B2013.%26explicit%3D0%26videotype%3Dofficial%26user%3DLesVieillesCharrues%26usertype%3Dofficial%26revshare%3D1%26locale%3Dus%26asnum%3DAS17057%26country%3DUS%26lat%3D34.0530000000000%26lng%3D-118.2642000000000%26rid%3D1375416869%26urange%3D16%26ff%3Don%26log%3D1%22%2C%22comscore%22%3A%22http%3A%5C%2F%5C%2Fb.scorecardresearch.com%5C%2Fb%3Fc1%3D1%26c2%3D4000005%26c3%3D4000005%26c4%3D030400%26c5%3D030400%26c6%3Dx12h020%22%7D%2C%22mediaComplete0%22%3A%5B%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fhistory%5C%2Fmanage%5C%2Fadd%5C%2Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%22%5D%2C%22mediaComplete25%22%3A%5B%5D%2C%22mediaComplete50%22%3A%5B%5D%2C%22mediaComplete75%22%3A%5B%5D%2C%22mediaComplete100%22%3A%5B%5D%2C%22mediaPlayLive%22%3A%5B%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fsense%5C%2Fimages%5C%2Fvs%5C%2Ftag.gif%3Faction%3Dlive%252Fplay%26locale%3Dus%26asnum%3DAS17057%26country%3DUS%26lat%3D34.0530000000000%26lng%3D-118.2642000000000%26rid%3D1375416869%26urange%3D16%26ff%3Don%26log%3D1%22%5D%2C%22mediaError%22%3A%5B%22http%3A%5C%2F%5C%2Ferroracct.dailymotion.com%5C%2Fxpmon%5C%2Fstreamerror%22%5D%2C%22mediaViewTime%22%3A%7B%2240%25%2C3min%22%3A%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fbehavior%5C%2F%25SESSION_IDus%5C%2Fx12h020%22%7D%7D%2C%22plugins%22%3A%5B%22http%3A%5C%2F%5C%2Fcdn.visiblemeasures.com%5C%2Fswf%5C%2Fas3%5C%2Fv4.9.7%5C%2Fvmcdmplugin.swf%3Fkey%3D7f31e0630b6b11dfb7bd0019b9f1584b%26pixel%3D1%22%5D%2C%22extraParams%22%3A%7B%22playerName%22%3A%22Dailymotion+videoplayer%22%2C%22playerType%22%3A%22insite%22%2C%22playerLang%22%3A%22US%22%2C%22playerAutoPlay%22%3A1%2C%22playerCountryCode%22%3A%22US%22%2C%22playerRemoteIP%22%3A%22204.110.10.118%22%2C%22playerAsNumber%22%3A%22AS17057%22%2C%22playerIsChromeless%22%3A0%2C%22playerEmbedder%22%3A%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fvideo%5C%2Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%22%2C%22playerEstatPlugin%22%3A%220%22%2C%22playerInIframe%22%3A%220%22%2C%22videoId%22%3A%22x12h020%22%2C%22videoTitle%22%3A%22Two+Door+Cinema+Club+-+Les+Vielles+Charrues+2013.%22%2C%22videoDescription%22%3A%22Vibrez+au+son+de+l%27electro-pop+des+Irlandais+de+Two+Door+Cinema+Club%2C+l%27un+des+groupes+les+plus+cools+du+moment+monte+sur+la+sc%5Cu00e8ne+des+Vieilles+Charrues+pour+un+live+explosif%22%2C%22videoTags%22%3A%22Two+Door+Cinema+Club%2Cmusic%2Cmusique%2Cconcert%2Cvielles+charrues%2Cles+vieilles+charrues%2CLVC2013%2CTDCC%22%2C%22videoChannel%22%3A%22music%22%2C%22videoUniqueURL%22%3A%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fvideo%5C%2Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%22%2C%22videoSwfURL%22%3A%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fswf%5C%2Fvideo%5C%2Fx12h020%22%2C%22videoPreviewURL%22%3A%22http%3A%5C%2F%5C%2Fs1.dmcdn.net%5C%2FCJsYA%5C%2Fx240-4WS.jpg%22%2C%22videoOwnerLogin%22%3A%22LesVieillesCharrues%22%2C%22videoParentOwnerLogin%22%3A%22%22%2C%22videoLang%22%3A%22fr%22%2C%22videoCountry%22%3A%22FR%22%2C%22videoType%22%3A%22content%22%2C%22videoAudioOnly%22%3Afalse%2C%22videoIsExplicit%22%3Afalse%2C%22videoIsUserbrand%22%3Afalse%2C%22videoUploadDateTime%22%3A%222013-07-30+19%3A53%3A26%22%2C%22playerIsInstreamAdActivated%22%3Atrue%2C%22mediaDuration%22%3A4435%2C%22scRSID%22%3A%22dailymotionwebvidprod%22%2C%22scSamplingRate%22%3A4%2C%22syndicationId%22%3A0%2C%22streamMode%22%3A%22basic%22%2C%22ownerType%22%3A%22official%22%2C%22videoIsVOD%22%3Afalse%2C%22videoIsAd%22%3Afalse%2C%22bestAvailableQuality%22%3A%22hd+720p%22%2C%22isrcID%22%3Anull%2C%22customSkin%22%3A%22%22%2C%22videoIsPrivate%22%3Afalse%2C%22videoLifetime%22%3A2%2C%22videoProgram%22%3A%22official%22%2C%22videoContext%22%3A%22video+page%22%7D%7D%7D%5D%7D%2C%7B%22name%22%3A%22main%22%2C%22layerList%22%3A%5B%7B%22name%22%3A%22auditudeLoader%22%2C%22type%22%3A%22AuditudeLoader%22%2C%22param%22%3A%7B%22nfvzUrl%22%3A%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fadcb%5C%2FBtP4vfFNhlctvX8vELjl6A%22%2C%22prerollMessage%22%3A%22Advertising+-+Your+video+in+%25d+seconds%22%2C%22postrollMessage%22%3A%22Advertising+-+%25d+seconds+left%22%2C%22allowStageVideo%22%3Afalse%2C%22pluginTimeout%22%3A2%2C%22pluginAdUnitUrl%22%3A%22%22%2C%22enableAudienceManager%22%3Atrue%2C%22externalTargetingParams%22%3A%7B%22ss_partnerId%22%3A56396%2C%22ss_mediaTitle%22%3A%22Two+Door+Cinema+Club+-+Les+Vielles+Charrues+2013.%22%2C%22ss_mediaId%22%3A%22x12h020%22%2C%22ss_mediaDescription%22%3A%22Vibrez+au+son+de+l%27electro-pop+des+Irlandais+de+Two+Door+Cinema+Club%2C+l%27un+des+groupes+les+plus+cools+du+moment+monte+sur+la+sc%5Cu00e8ne+des+Vieilles+Charrues+pour+un+live+explosif%22%2C%22dm_title%22%3A%22Two+Door+Cinema+Club+-+Les+Vielles+Charrues+2013.%22%2C%22video_url%22%3A%22http%253A%252F%252Fwww.dailymotion.com%252Fcdn%252FH264-512x384%252Fvideo%252Fx12h020.mp4%253Fauth%253D1375589669-d37c5f27781bd9890e49d69286ab1f4a%22%2C%22daily_video_link%22%3A%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fvideo%5C%2Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%22%2C%22enc_daily_video_link%22%3A%22http%253A%252F%252Fwww.dailymotion.com%252Fvideo%252Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%22%2C%22dm_owner%22%3A%22LesVieillesCharrues%22%2C%22dm_category%22%3A%22music%22%2C%22dm_videotype%22%3A%22official%22%2C%22dm_ext%22%3A%22onsite%22%2C%22dm_lang%22%3A%22en%22%2C%22dm_city%22%3A%22los+angeles%22%2C%22dm_region%22%3A%22california%22%2C%22yh_pd_x%22%3A%2200%22%7D%2C%22targetingParams%22%3A%7B%22DMAGE%22%3A%220%22%2C%22DMGENDER%22%3A%220%22%2C%22DMPARENTAL%22%3A%220%22%2C%22DMLANG%22%3A%22en%22%2C%22DMCONTEST%22%3A%220%22%2C%22DMPAGE%22%3A%22videoplayer%22%2C%22DMREVSHARE%22%3A%221%22%2C%22DMVIDEO%22%3A%2264618632%22%2C%22DMTYPE%22%3A%22prod%22%2C%22DMEXT%22%3A%220%22%2C%22DMREFEREREXT%22%3A%220%22%2C%22DMSEARCH%22%3A%220%22%2C%22DMTAGS%22%3A%22Two+Door+Cinema+Club%2Cmusic%2Cmusique%2Cconcert%2Cvielles+charrues%2Cles+vieilles+charrues%2CLVC2013%2CTDCC%22%2C%22DMSTREAMMODE%22%3A%22vod%22%2C%22DMMONETISABLE%22%3A%221%22%2C%22DMSITE%22%3A%22dailymotion.us%22%2C%22DMFROMSEARCHENGINE%22%3A%220%22%2C%22DMOWNER%22%3A%22LesVieillesCharrues%22%2C%22WIN7%22%3A%221%22%2C%22DMAPIPLAYER%22%3A%220%22%2C%22DMROUTE%22%3A%22video_item%22%2C%22DMLOGGED%22%3A%220%22%2C%22DMTITLE%22%3A%22Two+Door+Cinema+Club+-+Les+Vielles+Charrues+2013.%22%2C%22DMVIDEOLANG%22%3A%22fr%22%2C%22DMPARTNER%22%3A%221%22%2C%22DMVIDEOTYPE%22%3A%22official%22%2C%22DMDURATION%22%3A%224435%22%2C%22DMVIDEOAGE%22%3A%2258%22%2C%22DMVIEWS%22%3A%22500%2B%22%2C%22DMNOADFIT%22%3A%220%22%2C%22DMEXPLICIT%22%3A%220%22%2C%22DMCHANNEL%22%3A%22music%22%2C%22DMV3%22%3A%221%22%2C%22DMHANDSET%22%3A%22unknow%22%7D%2C%22metadata%22%3A%7B%22type%22%3A%22official%22%2C%22mediaId%22%3A%22x12h020%22%2C%22uploader%22%3A%22LesVieillesCharrues%22%2C%22language%22%3A%22fr%22%2C%22rating%22%3A%22nonadult%22%2C%22category%22%3A%22music%22%2C%22duration%22%3A4435%2C%22site%22%3A%22dailymotion.us%22%7D%7D%7D%2C%7B%22name%22%3A%22auditudeOverlay%22%2C%22type%22%3A%22AuditudeOverlay%22%2C%22param%22%3A%7B%22outsideVideo%22%3Atrue%2C%22adMessage%22%3A%7B%22plural%22%3A%22Advertising+-+Your+video+in+%25d+seconds%22%2C%22singular%22%3A%22Advertising+-+Your+video+in+%25d+second%22%7D%2C%22mute%22%3Afalse%2C%22closeButtonDisplayDelay%22%3A-1%2C%22countdownMessageVisibility%22%3A1%2C%22campaigns%22%3A%7B%2210168%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%7D%2C%2210608%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%7D%2C%2213320%22%3A%7B%22closeButtonDisplayDelay%22%3A15%7D%2C%22809%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%225373%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2216750%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2216176%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2215025%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2215591%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214989%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214600%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%2C%22countdownMessageVisibility%22%3A0%7D%2C%2214814%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%2C%22countdownMessageVisibility%22%3A0%7D%2C%2213905%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214816%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214915%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214448%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2215536%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2213620%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2216223%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216459%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216189%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216290%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216222%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2215988%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2214395%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225686%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225685%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2212964%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%2C%22countdownMessageVisibility%22%3A0%7D%2C%2212453%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215134%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%228050%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215389%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214760%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%226076%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2213436%22%3A%7B%22closeButtonDisplayDelay%22%3A30%7D%2C%222105%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214795%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%222353%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%222386%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%222138%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%224262%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225148%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2213804%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225418%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225402%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%226287%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2212857%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%227678%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2211818%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2216646%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2211414%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2211063%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2212753%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214063%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214127%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214381%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214553%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214614%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214898%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215102%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215286%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215608%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215745%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2216000%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2216177%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2216519%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2213091%22%3A%7B%22closeButtonDisplayDelay%22%3A10%7D%2C%2213266%22%3A%7B%22closeButtonDisplayDelay%22%3A10%7D%2C%2215257%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2215909%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216308%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216640%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216641%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216642%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216643%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216644%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216692%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216694%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216695%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216697%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216699%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%224850%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%7D%2C%222346%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%225053%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%221697%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%228667%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%2C%22countdownMessageVisibility%22%3A0%7D%2C%225326%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%225432%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2213556%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2213759%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2216107%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214949%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2210446%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%22263234%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%2C%22countdownMessageVisibility%22%3A0%7D%2C%2216661%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%2C%22countdownMessageVisibility%22%3A0%7D%7D%2C%22defaultAdMessage%22%3A%22Advertising%22%7D%7D%2C%7B%22name%22%3A%22video%22%2C%22type%22%3A%22VideoFrame%22%2C%22param%22%3A%7B%22autoPlay%22%3A1%2C%22mute%22%3A0%2C%22expandVideo%22%3A0%2C%22end%22%3A0%2C%22mode%22%3A%22vod%22%2C%22stopAtEnd%22%3A1%2C%22clickThroughURL%22%3A%22%22%2C%22clickThroughURLPeriod%22%3A%22%22%2C%22clickThroughURLTarget%22%3A%22_blank%22%2C%22clickThroughURLTag%22%3A%22%22%2C%22clickThroughHotspot%22%3Atrue%2C%22unmuteOnMouseOver%22%3A0%2C%22allowKeyboard%22%3Atrue%2C%22pauseOnClick%22%3Atrue%2C%22fullscreenOnDoubleClick%22%3Atrue%2C%22applicationName%22%3A%22com.dm.player%22%2C%22repeat%22%3A0%2C%22allowAutoDynamicStreamSwitch%22%3Atrue%2C%22video3DType%22%3A%22none%22%2C%22buttonMode%22%3Atrue%2C%22autoURL%22%3A%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fcdn%5C%2Fmanifest%5C%2Fvideo%5C%2Fx12h020.mnft%3Fauth%3D1375589669-55f30a33f8dd3f20c25f5c46ec9fcfc9%22%2C%22allowStageVideo%22%3Atrue%2C%22start%22%3A0%2C%22enableAutoErrorMessages%22%3Atrue%2C%22adConfig%22%3A%5B%5D%7D%2C%22sequenceList%22%3A%5B%7B%22name%22%3A%22qualitySwitcher%22%2C%22layerList%22%3A%5B%7B%22name%22%3A%22qualitySwitcher%22%2C%22type%22%3A%22QualitySwitcher%22%2C%22param%22%3A%7B%22qualities%22%3A%7B%22ld%22%3A%7B%22description%22%3A%22Low%22%2C%22notification%22%3A%22You+are+now+watching+in+low+quality%22%7D%2C%22sd%22%3A%7B%22description%22%3A%22Medium%22%2C%22notification%22%3A%22You+are+now+watching+in+medium+quality+%22%7D%2C%22hq%22%3A%7B%22description%22%3A%22Standard%22%2C%22notification%22%3A%22You+are+now+watching+in+standard+quality%22%7D%2C%22hd720%22%3A%7B%22description%22%3A%22HD%22%2C%22notification%22%3A%22You+are+now+watching+in+High+Definition%22%7D%2C%22hd1080%22%3A%7B%22description%22%3A%22Full+HD%22%2C%22notification%22%3A%22You+are+now+watching+in+Full+HD%22%7D%2C%22auto%22%3A%7B%22description%22%3A%22Optimal%22%2C%22notification%22%3A%22You+are+now+watching+in+dynamic+quality+mode%22%7D%7D%7D%7D%5D%7D%2C%7B%22name%22%3A%22export%22%2C%22layerList%22%3A%5B%7B%22name%22%3A%22export%22%2C%22type%22%3A%22Export%22%2C%22param%22%3A%7B%22permalink%22%3A%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fvideo%5C%2Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%22%2C%22hideHotspot%22%3Afalse%2C%22embedCode%22%3A%22%3Ciframe+frameborder%3D%5C%220%5C%22+width%3D%5C%22480%5C%22+height%3D%5C%22270%5C%22+src%3D%5C%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fembed%5C%2Fvideo%5C%2Fx12h020%5C%22%3E%3C%5C%2Fiframe%3E%3Cbr+%5C%2F%3E%3Ca+href%3D%5C%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fvideo%5C%2Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%5C%22+target%3D%5C%22_blank%5C%22%3ETwo+Door+Cinema+Club+-+Les+Vielles+Charrues+2013.%3C%5C%2Fa%3E+%3Ci%3Eby+%3Ca+href%3D%5C%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2FLesVieillesCharrues%5C%22+target%3D%5C%22_blank%5C%22%3ELesVieillesCharrues%3C%5C%2Fa%3E%3C%5C%2Fi%3E%22%7D%7D%5D%7D%2C%7B%22name%22%3A%22actions%22%2C%22layerList%22%3A%5B%7B%22name%22%3A%22actions%22%2C%22type%22%3A%22VideoActions%22%2C%22param%22%3A%7B%22videoId%22%3A64618632%2C%22logged%22%3Afalse%2C%22autoHide%22%3Atrue%2C%22showCustomRightButton%22%3Atrue%2C%22displayDelay%22%3A0%2C%22redirectionErrorMessage%22%3A%22impossible+to+open+redirection%22%2C%22onMouseOutHideControlsDelay%22%3A500%2C%22hoverCloseLabel%22%3A%22Close+the+player%22%2C%22loginURL%22%3A%22%5C%2Fpageitem%5C%2Floginfull%3Furlback%3D%22%2C%22showExportButton%22%3Atrue%2C%22exportButtonMessage%22%3A%22Export+via+permalink%2C+embed+code%2C+or+hotspot%22%2C%22showFacebookButton%22%3Atrue%2C%22facebookURL%22%3A%22http%3A%5C%2F%5C%2Fapi.addthis.com%5C%2Foexchange%5C%2F0.8%5C%2Fforward%5C%2Ffacebook%5C%2Foffer%3Fpubid%3Dra-50aca8a73e88e50a%26ct%3D1%26url%3Dhttp%253A%252F%252Fwww.dailymotion.com%252Fvideo%252Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%26title%3DTwo%2BDoor%2BCinema%2BClub%2B-%2BLes%2BVielles%2BCharrues%2B2013.%22%2C%22facebookButtonMessage%22%3A%22Post+to+my+Facebook+profile%22%2C%22thirdSocialService%22%3A%22twitter%22%2C%22showTwitterButton%22%3Atrue%2C%22twitterURL%22%3A%22http%3A%5C%2F%5C%2Fapi.addthis.com%5C%2Foexchange%5C%2F0.8%5C%2Fforward%5C%2Ftwitter%5C%2Foffer%3Fpubid%3Dra-50aca8a73e88e50a%26ct%3D1%26url%3Dhttp%253A%252F%252Fwww.dailymotion.com%252Fvideo%252Fx12h020_two-door-cinema-club-les-vielles-charrues-2013_music%26title%3DTwo%2BDoor%2BCinema%2BClub%2B-%2BLes%2BVielles%2BCharrues%2B2013.%2B-%26via%3DDailymotionUSA%22%2C%22twitterButtonMessage%22%3A%22Post+to+Twitter%22%2C%22showQualityButton%22%3Atrue%2C%22qualityText%22%3A%22Quality%22%2C%22qualityButtonMessage%22%3A%22Select+video+quality%22%7D%7D%5D%7D%2C%7B%22name%22%3A%22controls%22%2C%22layerList%22%3A%5B%7B%22name%22%3A%22controls%22%2C%22type%22%3A%22MediaControls%22%2C%22param%22%3A%7B%22autoHide%22%3A1%2C%22audienceMessage%22%3A%22%25s+viewers%22%2C%22onMouseOutHideControlsDelay%22%3A500%2C%22mode%22%3A%22vod%22%2C%22contactSheetURL%22%3A%22http%3A%5C%2F%5C%2Fstatic2.dmcdn.net%5C%2Fstatic%5C%2Fvideo%5C%2F236%5C%2F816%5C%2F64618632%3Ajpeg_preview_contact.jpg%3F20130731125017%22%2C%22logoFeedbackLabel%22%3A%22Watch+on+Dailymotion%22%7D%7D%5D%7D%2C%7B%22name%22%3A%22auditudeOverlay%22%2C%22layerList%22%3A%5B%7B%22name%22%3A%22auditudeOverlay%22%2C%22type%22%3A%22AuditudeOverlay%22%2C%22param%22%3A%7B%22mute%22%3Afalse%2C%22closeButtonDisplayDelay%22%3A-1%2C%22countdownMessageVisibility%22%3A1%2C%22campaigns%22%3A%7B%2210168%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%7D%2C%2210608%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%7D%2C%2213320%22%3A%7B%22closeButtonDisplayDelay%22%3A15%7D%2C%22809%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%225373%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2216750%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2216176%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2215025%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2215591%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214989%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214600%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%2C%22countdownMessageVisibility%22%3A0%7D%2C%2214814%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%2C%22countdownMessageVisibility%22%3A0%7D%2C%2213905%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214816%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214915%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214448%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2215536%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2213620%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2216223%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216459%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216189%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216290%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216222%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2215988%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2214395%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225686%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225685%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2212964%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%2C%22countdownMessageVisibility%22%3A0%7D%2C%2212453%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215134%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%228050%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215389%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214760%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%226076%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2213436%22%3A%7B%22closeButtonDisplayDelay%22%3A30%7D%2C%222105%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214795%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%222353%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%222386%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%222138%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%224262%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225148%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2213804%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225418%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225402%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%226287%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2212857%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%227678%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2211818%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2216646%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2211414%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2211063%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2212753%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214063%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214127%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214381%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214553%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214614%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214898%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215102%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215286%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215608%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215745%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2216000%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2216177%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2216519%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2213091%22%3A%7B%22closeButtonDisplayDelay%22%3A10%7D%2C%2213266%22%3A%7B%22closeButtonDisplayDelay%22%3A10%7D%2C%2215257%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2215909%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216308%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216640%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216641%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216642%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216643%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216644%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216692%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216694%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216695%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216697%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216699%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%224850%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%7D%2C%222346%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%225053%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%221697%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%228667%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%2C%22countdownMessageVisibility%22%3A0%7D%2C%225326%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%225432%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2213556%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2213759%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2216107%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214949%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2210446%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%22263234%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%2C%22countdownMessageVisibility%22%3A0%7D%2C%2216661%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%2C%22countdownMessageVisibility%22%3A0%7D%7D%2C%22defaultAdMessage%22%3A%22Advertising%22%2C%22adMessage%22%3A%7B%22plural%22%3A%22Advertising+-+Your+video+in+%25d+seconds%22%2C%22singular%22%3A%22Advertising+-+Your+video+in+%25d+second%22%7D%7D%7D%5D%7D%5D%7D%2C%7B%22name%22%3A%22auditudeOverlay%22%2C%22type%22%3A%22AuditudeOverlay%22%2C%22param%22%3A%7B%22outsideVideo%22%3Atrue%2C%22adMessage%22%3A%7B%22plural%22%3A%22Advertising+-+Your+video+in+%25d+seconds%22%2C%22singular%22%3A%22Advertising+-+Your+video+in+%25d+second%22%7D%2C%22mute%22%3Afalse%2C%22closeButtonDisplayDelay%22%3A-1%2C%22countdownMessageVisibility%22%3A1%2C%22campaigns%22%3A%7B%2210168%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%7D%2C%2210608%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%7D%2C%2213320%22%3A%7B%22closeButtonDisplayDelay%22%3A15%7D%2C%22809%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%225373%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2216750%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2216176%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2215025%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2215591%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214989%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214600%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%2C%22countdownMessageVisibility%22%3A0%7D%2C%2214814%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%2C%22countdownMessageVisibility%22%3A0%7D%2C%2213905%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214816%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214915%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214448%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2215536%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2213620%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2216223%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216459%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216189%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216290%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216222%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2215988%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2214395%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225686%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225685%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2212964%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%2C%22countdownMessageVisibility%22%3A0%7D%2C%2212453%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215134%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%228050%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215389%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214760%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%226076%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2213436%22%3A%7B%22closeButtonDisplayDelay%22%3A30%7D%2C%222105%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214795%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%222353%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%222386%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%222138%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%224262%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225148%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2213804%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225418%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%225402%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%226287%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2212857%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%227678%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2211818%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2216646%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2211414%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2211063%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2212753%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214063%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214127%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214381%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214553%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214614%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2214898%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215102%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215286%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215608%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2215745%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2216000%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2216177%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2216519%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%7D%2C%2213091%22%3A%7B%22closeButtonDisplayDelay%22%3A10%7D%2C%2213266%22%3A%7B%22closeButtonDisplayDelay%22%3A10%7D%2C%2215257%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2215909%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216308%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216640%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216641%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216642%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216643%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216644%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216692%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216694%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216695%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216697%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%2216699%22%3A%7B%22closeButtonDisplayDelay%22%3A10000%7D%2C%224850%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%7D%2C%222346%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%225053%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%221697%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%228667%22%3A%7B%22closeButtonDisplayDelay%22%3A-1%2C%22countdownMessageVisibility%22%3A0%7D%2C%225326%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%225432%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2213556%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2213759%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2216107%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2214949%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%2210446%22%3A%7B%22countdownMessageVisibility%22%3A0%7D%2C%22263234%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%2C%22countdownMessageVisibility%22%3A0%7D%2C%2216661%22%3A%7B%22closeButtonDisplayDelay%22%3A5000%2C%22countdownMessageVisibility%22%3A0%7D%7D%2C%22defaultAdMessage%22%3A%22Advertising%22%7D%7D%2C%7B%22name%22%3A%22relatedBackground%22%2C%22type%22%3A%22Background%22%2C%22param%22%3A%7B%22color%22%3A%22212121%22%7D%2C%22sequenceList%22%3A%5B%7B%22name%22%3A%22end%22%2C%22layerList%22%3A%5B%7B%22name%22%3A%22related%22%2C%22type%22%3A%22Related%22%2C%22param%22%3A%7B%22dataURL%22%3A%22http%3A%5C%2F%5C%2Fwww.dailymotion.com%5C%2Fjson%5C%2Frelated%5C%2F64618632%3Fendscreen%3D1%22%2C%22clickTarget%22%3A%22_top%22%2C%22loadInPlace%22%3Afalse%7D%7D%5D%7D%2C%7B%22name%22%3A%22replay%22%2C%22layerList%22%3A%5B%7B%22name%22%3A%22replaybar%22%2C%22type%22%3A%22ReplayBar%22%2C%22param%22%3A%7B%22imageURL%22%3A%22http%3A%5C%2F%5C%2Fs1.dmcdn.net%5C%2FCJsYA%5C%2F100x57-MIp.jpg%22%7D%7D%5D%7D%5D%7D%5D%7D%2C%7B%22name%22%3A%22feedback%22%2C%22layerList%22%3A%5B%7B%22name%22%3A%22feedback%22%2C%22type%22%3A%22Feedback%22%7D%5D%7D%5D%7D%5D%7D%5D%7D"};
|
313
|
+
flashvars.skin = '';
|
314
|
+
swfobject.switchOffAutoHideShow();
|
315
|
+
swfobject.embedSWF(swfURL, 'container_player_main', '100%', '100%', '10.0.0', 'http://static1.dmcdn.net/flash/dmmisc/expressinstall.swf.v8c4bdc47410fc7c09', flashvars, {"bgcolor":"0x000000","allowfullscreen":true,"allowscriptaccess":"always","wmode":"direct"}, {"id":"video_player_main","name":"video_player_main"});
|
316
|
+
}
|
317
|
+
else if (flashVersion > 0)
|
318
|
+
{
|
319
|
+
flashOK = false;
|
320
|
+
DM_Player.showWarning('player_main', 'You need to upgrade your Adobe Flash Player to watch this video.', '<a href="http://get.adobe.com/flashplayer/" target="_blank">Download it from Adobe</a>');
|
321
|
+
}
|
322
|
+
else
|
323
|
+
{
|
324
|
+
flashOK = false;
|
325
|
+
window.DM_API && DM_API.onReady(function()
|
326
|
+
{
|
327
|
+
DM._domain.www = 'http://www.dailymotion.com';
|
328
|
+
iframePlayer = DM.player('container_player_main', {video: 'x12h020_two-door-cinema-club-les-vielles-charrues-2013_music', width: '100%', height: '100%', params: {'autoplay' : 1}});
|
329
|
+
});
|
330
|
+
}
|
331
|
+
</script>
|
332
|
+
</div>
|
333
|
+
</div>
|
334
|
+
</div>
|
335
|
+
<div class="pl_video_infos span-8">
|
336
|
+
<h1 class="pl_video_pagetitle">
|
337
|
+
<span
|
338
|
+
id="video_title"
|
339
|
+
class="title small"
|
340
|
+
title="Two Door Cinema Club - Les Vielles Charrues 2013."
|
341
|
+
>
|
342
|
+
Two Door Cinema Club - Les Vielles Charrues 2013.
|
343
|
+
</span>
|
344
|
+
<a href="/us/content/official" class="badge badge-blue" title="Official content">official</a>
|
345
|
+
<button
|
346
|
+
class="button expand_button"
|
347
|
+
title="Expand player"
|
348
|
+
onclick="DM_JS.get('DM_PlayerLightAndExpander',function(){DM_PlayerLightAndExpander.togglePlayerExpand2();});"
|
349
|
+
id="player_expander">
|
350
|
+
<span class="icon icon-expand"></span>
|
351
|
+
</button>
|
352
|
+
</h1>
|
353
|
+
<div class="video_infos">
|
354
|
+
<a class="regular_avatar" href="/LesVieillesCharrues" data-vszone="uploader-avatar-top">
|
355
|
+
<img alt="LesVieillesCharrues" src="http://static2.dmcdn.net/static/user/315/704/79407513:avatar_small.jpg?20130718171600" />
|
356
|
+
</a>
|
357
|
+
<div class="infos">
|
358
|
+
<div class="first_bar">
|
359
|
+
<span class="owner foreground2">
|
360
|
+
By <b><a class="foreground2" data-vszone="uploader-link-top" rel="author" title="go to LesVieillesCharrues's profile" href="/LesVieillesCharrues">LesVieillesCharrues</a></b>
|
361
|
+
</span>
|
362
|
+
<span class="geoblocking">
|
363
|
+
</span>
|
364
|
+
<span data-tool="stats" title="834 views" class="foreground2 no_button" id="video_views_count">
|
365
|
+
<b class="video_views_value foreground2">834</b> views </span>
|
366
|
+
<div class="clear"></div>
|
367
|
+
</div>
|
368
|
+
<div class="social_bar">
|
369
|
+
<div class="sd_user_subscribe">
|
370
|
+
<button
|
371
|
+
class="icn_left popup_ie_width width_500 button_green button action:popup button_small"
|
372
|
+
title="LesVieillesCharrues rocks! Follow this user and watch her new video uploads!"
|
373
|
+
onclick="DM_Ajax.link(this); return false;"
|
374
|
+
data-href="/pageitem/user/subscribeUnlogged?request=%2FLesVieillesCharrues">
|
375
|
+
<span class="button_icon icon-plus"></span>Follow
|
376
|
+
</button>
|
377
|
+
<span class="fan_count button_tooltip">
|
378
|
+
<a href="/users/subscribedto/LesVieillesCharrues" target="_parent">10</a>
|
379
|
+
</span>
|
380
|
+
</div>
|
381
|
+
<div class="sd_video_socialbuttons">
|
382
|
+
<div id="addthis-x12h020" class="addthis_toolbox addthis_default_style addthis_20x20_style" addthis:url="http://www.dailymotion.com/video/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music" data-title="Two Door Cinema Club - Les Vielles Charrues 2013." data-content_version="us" data-video_xid="x12h020" data-user_xid="">
|
383
|
+
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
|
384
|
+
<a class="addthis_button_tweet" data-url="http://www.dailymotion.com/video/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music" data-counturl="http://www.dailymotion.com/video/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music" data-via="DailymotionUSA" data-lang="us" data-text="Two Door Cinema Club - Les Vielles Charrues 2013. -" data-related="DailymotionUSA,Dailymotion" tw:lang="en-US"></a>
|
385
|
+
<a class="addthis_button_preferred_1"></a>
|
386
|
+
<a class="addthis_button_compact custom"><span class="icon-share"></span></a>
|
387
|
+
</div>
|
388
|
+
<script type="text/javascript">
|
389
|
+
Sd_Video_Socialbuttons.buildAddthisButton({'video_xid': 'x12h020', 'content_version':'us'});
|
390
|
+
</script>
|
391
|
+
</div>
|
392
|
+
<div class="clear"></div>
|
393
|
+
</div>
|
394
|
+
<div class="sd_video_extralink">
|
395
|
+
<div class="clear"></div>
|
396
|
+
</div>
|
397
|
+
</div>
|
398
|
+
<div class="clear"></div>
|
399
|
+
</div>
|
400
|
+
</div>
|
401
|
+
<div class="pl_video_bottombox dmco_box column bottom_box">
|
402
|
+
<div id="player_page_tabs_ph" style="min-height:175px">
|
403
|
+
</div>
|
404
|
+
<div id="mc_BottomLeft" class="mc mc_hide "></div>
|
405
|
+
</div>
|
406
|
+
<script type="text/javascript">
|
407
|
+
DM_Widget_PageItem_Adsense.title = "Ads by Google";
|
408
|
+
google_ad_channel = "us music";
|
409
|
+
google_ad_client = "ca-dailymotion_js";
|
410
|
+
google_ad_output = "js";
|
411
|
+
google_ad_type = "text";
|
412
|
+
google_feedback = "off";
|
413
|
+
google_language = "en";
|
414
|
+
google_max_num_ads = "4";
|
415
|
+
google_hints = "Two Door Cinema Club,music,musique,concert,vielles charrues";
|
416
|
+
</script>
|
417
|
+
<div class="dmpi_adsense dmpi_adsense_forcontent background_3 light_border" id="adsense_on_player_page" style="display: none;"></div> </div>
|
418
|
+
<div id="mc_Right" class="mc mc_hide "></div>
|
419
|
+
<div class="right_content" id="right_content_box" data-margin-top="0">
|
420
|
+
<div id="mc_Middle" class="mc mc_hide "></div>
|
421
|
+
<div id="mc_Middle1" class="mc mc_hide "></div>
|
422
|
+
<div id="live_comments_ph"></div>
|
423
|
+
<div id="related">
|
424
|
+
<div id="related_ph">
|
425
|
+
</div>
|
426
|
+
</div>
|
427
|
+
</div> <div id="mc_x70" class="mc mc_hide "></div>
|
428
|
+
</div>
|
429
|
+
<div id="bottom_banner"></div>
|
430
|
+
<div id="mc_Bottom" class="mc mc_hide "></div>
|
431
|
+
</div>
|
432
|
+
</div>
|
433
|
+
<div class="dmco_box" id="push_footer"></div>
|
434
|
+
</div>
|
435
|
+
<div class="sd_footer background_3 light_border_top foreground2" id="footer">
|
436
|
+
<div class="dmco_box" id="footer_centered">
|
437
|
+
<ul class="dmco_menu column span-2 footer_menu ">
|
438
|
+
<li><span class="footer_title">Dailymotion</span></li>
|
439
|
+
<li><a class="foreground2" href="/us/about">About</a></li>
|
440
|
+
<li><a class="foreground2" href="http://press.dailymotion.com/us">Press</a></li>
|
441
|
+
<li><a class="foreground2" href="http://jobs.dailymotion.com/en/home">Jobs</a></li>
|
442
|
+
<li><a class="foreground2" href="http://blog.dailymotion.com/en">Blog</a></li>
|
443
|
+
<li><a class="foreground2" href="/archived/index.html">All videos</a></li>
|
444
|
+
</ul>
|
445
|
+
<ul class="dmco_menu column span-2 footer_menu ">
|
446
|
+
<li><span class="footer_title">Participate</span></li>
|
447
|
+
<li><a class="foreground2" href="http://advertising.dailymotion.com/">Advertise</a></li>
|
448
|
+
<li><a class="foreground2" href="/us/motionmaker">Become a motionmaker</a></li>
|
449
|
+
<li><a class="foreground2" href="http://official.dailymotion.com" target="_blank" >Become an Official User</a></li>
|
450
|
+
<li><a class="foreground2" href="http://www.dmcloud.net/en">B2B Solution</a></li>
|
451
|
+
<li><a class="foreground2" href="http://publisher.dailymotion.com/?l=en">Dailymotion Publisher</a></li>
|
452
|
+
<li><a class="foreground2" href="/us/openvod">OpenVoD</a></li>
|
453
|
+
</ul>
|
454
|
+
<ul class="dmco_menu column span-2 footer_menu ">
|
455
|
+
<li><span class="footer_title">Help</span></li>
|
456
|
+
<li>Age Gate <span class="family_filter_link name linkable" onclick="this.href = familyFilterUri" data-href="">ON</span></li>
|
457
|
+
<li><a class="foreground2" href="/us/faq">FAQ</a></li>
|
458
|
+
<li><a class="foreground2" href="/us/feedback">Contact</a></li>
|
459
|
+
</ul>
|
460
|
+
<ul class="dmco_menu column span-2 footer_menu ">
|
461
|
+
<li><span class="footer_title">Legal terms</span></li>
|
462
|
+
<li><a class="foreground2" href="/legal/terms">Terms of use</a></li>
|
463
|
+
<li><a class="foreground2" href="/legal/privacy">Privacy policy</a></li>
|
464
|
+
<li><a class="foreground2" href="/legal/prohibited">Prohibited content</a></li>
|
465
|
+
<li><a class="foreground2" href="/legal/copyright">Copyright notification</a></li>
|
466
|
+
<li><a class="foreground2" href="/legal/childprotection">Child protection</a></li>
|
467
|
+
</ul>
|
468
|
+
<ul class="dmco_menu column span-2 footer_menu ">
|
469
|
+
<li><span class="footer_title">Extras</span></li>
|
470
|
+
<li><a class="foreground2" href="/us/contests/official">Contests</a></li>
|
471
|
+
<li><a class="foreground2" href="/us/apps">Mobile</a></li>
|
472
|
+
<li><a class="foreground2" href="/stream" id="footer_stream" >Dailymotion Stream</a></li>
|
473
|
+
<li><a class="foreground2" href="/us/factory/massuploader">Mass Uploader</a></li>
|
474
|
+
<li><a class="foreground2" href="/us/factory/jukebox">Jukebox</a></li>
|
475
|
+
<li><a class="foreground2" href="/us/extras">more …</a></li>
|
476
|
+
</ul>
|
477
|
+
<ul class="dmco_menu column span-2 footer_menu last">
|
478
|
+
<li><span class="footer_title">Developers</span></li>
|
479
|
+
<li><a class="foreground2" href="/developer">Developer Area</a></li>
|
480
|
+
<li><a class="foreground2" href="/doc/api/graph-api.html">Data API</a></li>
|
481
|
+
<li><a class="foreground2" href="/doc/api/player.html">Player API</a></li>
|
482
|
+
</ul>
|
483
|
+
<div id="footer_copyright">© 2005 - 2013 Dailymotion
|
484
|
+
<span data-href="/pageitem/localeSelector?request=0" title="Change your language" id="selected_locale" class="linkable ajaxlink action:toggleOrUpdate action:arg0:#flag_select dmco_flag dmco_flag_us language_us" onclick="DM_Ajax.link(this); return false;"><span>Country:</span> <span>United States<span class="icon icon-arrow_down"></span></span></span>
|
485
|
+
</div>
|
486
|
+
<div class="background_3" style="display:none;" id="flag_select"></div>
|
487
|
+
<div id="footer_follow_us">
|
488
|
+
<div>Follow us</div><a href="/rss/us" class="dmco_simplelink rss" target="_blank" title="RSS"><span class="icon icon-rss"></span></a>
|
489
|
+
<a href="http://www.twitter.com/DailymotionUSA" class="dmco_simplelink twitter" target="_blank" title="Twitter"><span class="icon icon-twitter"></span></a>
|
490
|
+
<a href="http://www.facebook.com/pages/Dailymotion-USA/114385755252085 " class="dmco_simplelink facebook" target="_blank" title="Facebook"><span class="icon icon-facebook"></span></a>
|
491
|
+
</div>
|
492
|
+
</div>
|
493
|
+
</div>
|
494
|
+
<script type="text/javascript">
|
495
|
+
dm_times.script_bottom = (new Date()).getTime();
|
496
|
+
</script>
|
497
|
+
<script type="text/javascript" src="http://static1.dmcdn.net/js/gen/widget/pack/video.js.v101f1ce57e20c6cc9"></script>
|
498
|
+
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
|
499
|
+
<script type="text/javascript">
|
500
|
+
DM_EditInPlace.enabled = false;
|
501
|
+
DM_Masscast_TIMEOUT_EACH = true;
|
502
|
+
DM_Masscast_TIMEOUT_ALL = true;
|
503
|
+
userIsAdmin = false;
|
504
|
+
DM_ENV.Pg_Video = {"customizePlayer":"customize player...","url":"\/video\/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music","urlFull":"http:\/\/www.dailymotion.com\/video\/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music","nowPlayingLabel":"now playing"};
|
505
|
+
DM_ENV.Pl_Video_Comments = {"markAsSpam":"Are you sure you want to mark this comment as spam?"};
|
506
|
+
DM_ENV.Sd_Video_PreviewTwig = {"NO_DESCRIPTION":"This video has no description.","nowPlayingLabel":"now playing"};
|
507
|
+
</script>
|
508
|
+
<div style="display:none">
|
509
|
+
<script type="text/javascript" id="vstag">
|
510
|
+
vskeys= {vs_urange:"16",vs_asnum:"AS17057",vs_lat:"34.0530000000000",vs_lng:"-118.2642000000000",vs_country:"US",vs_rid:"7zKxz74vxVyMgnDVC",vs_log:"1",vs_ff:"on",vs_locale:"us",vs_player:"internal/dailymotion",vs_pagename:"player_page/internal/dailymotion/recent",vs_routename:"video_item"};vsUrl= "http://www.dailymotion.com/sense/images/vs/tag.gif?";vsRedUrl= "http://www.dailymotion.com/images/vs/tag.gif?";
|
511
|
+
</script>
|
512
|
+
</div>
|
513
|
+
<script>Event.onDOMReady(function(){DM_Skin.applySkin();});</script>
|
514
|
+
<!-- Begin comScore Tag -->
|
515
|
+
<script>
|
516
|
+
document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ?"https://sb" : "http://b") + ".scorecardresearch.com/beacon.js' %3E%3C/script%3E"));
|
517
|
+
</script>
|
518
|
+
<script>
|
519
|
+
COMSCORE.beacon({
|
520
|
+
c1:2,
|
521
|
+
c2:"4000005",
|
522
|
+
c3:"4000005",
|
523
|
+
c4:"030400",
|
524
|
+
c5:"030400",
|
525
|
+
c6:"x12h020_two-door-cinema-club-les-vielles-charrues-2013_music"
|
526
|
+
});
|
527
|
+
</script>
|
528
|
+
<noscript>
|
529
|
+
<img src="http://b.scorecardresearch.com/b?c1=2&c2=4000005&c3=4000005&c4=030400&c5=030400&c6=x12h020_two-door-cinema-club-les-vielles-charrues-2013_music&cv=1.3&cj=1" style="display:none" width="0" height="0" alt="" />
|
530
|
+
</noscript>
|
531
|
+
<!-- End comScore Tag --><script type="text/javascript">//<![CDATA[
|
532
|
+
var e=document.createElement('img');
|
533
|
+
e.id='erroraccounting';
|
534
|
+
if (document.getElementById('footer'))
|
535
|
+
{
|
536
|
+
document.getElementById('footer').appendChild(e);
|
537
|
+
if(e.offsetWidth!=1 && document.location.href.match(/\bfb_xd_fragment\b/)===null)
|
538
|
+
e.src='http://erroracct.dailymotion.com/xpmon/cssabsent';
|
539
|
+
}
|
540
|
+
//]]></script><script type="text/javascript">
|
541
|
+
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
542
|
+
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
543
|
+
</script>
|
544
|
+
<script type="text/javascript">
|
545
|
+
var ot = document.title; document.title = "video_item";
|
546
|
+
try {
|
547
|
+
var ga = _gat._getTracker("UA-64443-1");
|
548
|
+
ga._addIgnoredOrganic("dailymotion");
|
549
|
+
ga._addIgnoredOrganic("daily motion");
|
550
|
+
ga._addIgnoredOrganic("daylimotion");
|
551
|
+
ga._addIgnoredOrganic("dailymotion.com");
|
552
|
+
ga._addIgnoredOrganic("dailymotion.fr");
|
553
|
+
ga._addIgnoredOrganic("daily");
|
554
|
+
ga._addIgnoredOrganic("daylymotion");
|
555
|
+
ga._addIgnoredOrganic("dailimotion");
|
556
|
+
ga._addIgnoredOrganic("dalimotion");
|
557
|
+
ga._addIgnoredOrganic("dailymation");
|
558
|
+
ga._setCustomVar(3, "page_type", "video_item", 3);
|
559
|
+
ga._setCustomVar(1, "channel", "music", 3);
|
560
|
+
ga._setCustomVar(2, "video_type", "official", 3);
|
561
|
+
ga._setCustomVar(4, "segment", "16", 1);
|
562
|
+
ga._trackPageview("/video/x12h020_two-door-cinema-club-les-vielles-charrues-2013_music?site_version=us");
|
563
|
+
var timeTracker = new TimeTracker();
|
564
|
+
timeTracker._recordStartTime();
|
565
|
+
setTimeout('timeTracker._recordEndTime(); timeTracker._track(ga, "Time spent", "5 mn");', 300000);
|
566
|
+
ga._trackPageLoadTime();
|
567
|
+
} catch(err) {}
|
568
|
+
document.title = ot;
|
569
|
+
</script>
|
570
|
+
<!-- TWIG -->
|
571
|
+
<script type="text/javascript">
|
572
|
+
window.bottomBOOMR && bottomBOOMR();
|
573
|
+
</script>
|
574
|
+
</body>
|
575
|
+
</html>
|