Merge with 835f5f454595a1097dc0cef85b987541c3b707ac popcorn-port
authorveltr
Wed, 18 Jan 2012 17:44:55 +0100
branchpopcorn-port
changeset 676 499d9693d066
parent 675 82a5ebbedc83 (current diff)
parent 674 835f5f454595 (diff)
child 677 2f3ab8896fa1
Merge with 835f5f454595a1097dc0cef85b987541c3b707ac
src/js/site.js.templ
src/js/widgets/stackGraphWidget.js
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/implementer-un-player.txt	Wed Jan 18 17:44:55 2012 +0100
@@ -0,0 +1,14 @@
+API qu'un player doit implémenter pour espérer être supporté facilement par le
+metadataplayer :
+
+En gros, il faut une api similaire à celle du jwplayer 
+(cf : http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v5/12540/javascript-api-reference).
+Cependant on n'a besoin que des fonctions suivantes :
+- play, pause, seek, getMute, setMute, getPosition, seek
+
+On a également besoin des évenements suivants :
+- onReady quand le lecteur a fini d'être initialisé
+- onTime declenché à chaque fois que le player change d'image
+- onPlay declenché quand la lecture de la vidéo commence
+- onPause declenché quand la vidéo est mise sur pause
+- onSeek  declenché quand l'utilisateur seek
\ No newline at end of file
--- a/src/js/serializers/JSONSerializer.js	Wed Jan 18 17:40:14 2012 +0100
+++ b/src/js/serializers/JSONSerializer.js	Wed Jan 18 17:44:55 2012 +0100
@@ -92,22 +92,23 @@
     /* the next two lines are a bit verbose because for some test data, _serializer.data.view is either
        null or undefined.
     */
-    var view;
-
-    if (typeof(this._data.views) !== "undefined" && this._data.views !== null)
-       view = this._data.views[0];
+    
+    var searchViewType = this.getTweets();
+    if (typeof(searchViewType) === "undefined") {
+      var view;
+      
+      if (typeof(this._data.views) !== "undefined" && this._data.views !== null)
+         view = this._data.views[0];    
 
-    var searchViewType = "";
-
-    if(typeof(view) !== "undefined" && typeof(view.annotation_types) !== "undefined" && view.annotation_types.length > 1) {
-            searchViewType = view.annotation_types[0];
+      if(typeof(view) !== "undefined" && typeof(view.annotation_types) !== "undefined" && view.annotation_types.length > 1) {
+              searchViewType = view.annotation_types[0];
+      }
     }
-
     var filterfn = function(annotation) {
       if( searchViewType  != "" && 
           typeof(annotation.meta) !== "undefined" && 
           typeof(annotation.meta["id-ref"]) !== "undefined" &&
-          annotation.meta["id-ref"] !== searchViewType) {
+          annotation.meta["id-ref"] === searchViewType) {
         return false; // pass
       } else {
           return true;
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/js/site.js	Wed Jan 18 17:44:55 2012 +0100
@@ -0,0 +1,78 @@
+/* site.js - all our site-dependent config : player chrome, cdn locations, etc...*/
+
+IriSP.libdir = "/mdp/src/js/libs/";
+IriSP.jwplayer_swf_path = "/mdp/test/libs/player.swf";
+IriSP.platform_url = "http://localhost/pf";
+
+IriSP.lib = { 
+		jQuery : "http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js",
+		jQueryUI : "http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/jquery-ui.js",
+		jQueryToolTip : "http://cdn.jquerytools.org/1.2.4/all/jquery.tools.min.js",
+		swfObject : "http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js",
+		cssjQueryUI : "http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/base/jquery-ui.css",
+    popcorn : IriSP.libdir + "popcorn.js",
+    jwplayer : IriSP.libdir + "jwplayer.js",
+    popcornReplacement: IriSP.libdir + "pop.js",
+    raphael: IriSP.libdir + "raphael.js",
+    jquery_sparkline: IriSP.libdir + "jquery.sparkline.js",
+    "popcorn.mediafragment" : IriSP.libdir + "popcorn.mediafragment.js",
+    "popcorn.code" : IriSP.libdir + "popcorn.code.js",
+    "popcorn.jwplayer": IriSP.libdir + "popcorn.jwplayer.js",
+    "popcorn.youtube": IriSP.libdir + "popcorn.youtube.js"    
+};
+
+//Configuration for the player and utility functions.
+IriSP.config = {};
+
+IriSP.config.shortener = {
+  // function to call to shorten an url.
+  //shortening_function : IriSP.platform_shorten_url
+};
+
+IriSP.widgetsDefaults = {
+  "LayoutManager" : {spacer_div_height : "0px" },
+  "PlayerWidget" : {},
+  "AnnotationsWidget": {
+    "share_text" : "I'm watching ",     
+    "fb_link" : "http://www.facebook.com/share.php?u=",
+    "tw_link" : "http://twitter.com/home?status=",
+    "gplus_link" : ""
+    },
+  "TweetsWidget" : {
+      default_profile_picture : "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png",
+      tweet_display_period: 10000, // how long do we show a tweet ?
+      
+  },
+  "SliderWidget" : {
+      minimize_period: 850 // how long does the slider stays maximized after the user leaves the zone ?
+  },
+  "createAnnotationWidget" : {
+      keywords: ["#faux-raccord", "#mot-clef"],
+      cinecast_version: true /* put to false to enable the platform version, true for the festival cinecast one. */
+  },
+  "SparklineWidget" : {
+      column_width: 10 // the width of a column in pixels.
+  },
+  "Main" : {
+      autoplay: true
+  }
+  "AnnotationsListWidget" : {
+      ajax_mode: true, /* use ajax to get information about the annotations.
+                         if set to false, only search in the annotations for the
+                         current project. */
+      ajax_url: IriSP.platform_url + "ldtplatform/api/ldt/segments/" /* partial
+                                                                        url of 
+                                                                        where to
+                                                                        get the 
+                                                                        ajax */
+  },  
+};
+
+IriSP.paths = {
+//  "imgs": "/tweetlive/res/metadataplayer/src/css/imgs"
+  "imgs": "/mdp/src/css/imgs"
+};
+IriSP.default_templates_vars = {
+  "img_dir" : IriSP.paths.imgs 
+};
+
--- a/src/js/site.js.templ	Wed Jan 18 17:40:14 2012 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,65 +0,0 @@
-/* EDIT THIS FILE AND RENAME IT TO site.js TO BUILD THE METADATAPLAYER
-   site.js - all our site-dependent config : player chrome, cdn locations, etc...*/
-
-IriSP.libdir = "/mdp/src/js/libs/";
-IriSP.jwplayer_swf_path = "http://localhost/mdp/test/libs/player.swf";
-
-IriSP.lib = { 
-    jQuery : "http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js",
-		jQueryUI : "http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/jquery-ui.js",
-		jQueryToolTip : "http://cdn.jquerytools.org/1.2.4/all/jquery.tools.min.js",
-		swfObject : "http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js",
-		cssjQueryUI : "http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/base/jquery-ui.css",
-    popcorn : IriSP.libdir + "popcorn.js",
-    jwplayer : IriSP.libdir + "jwplayer.js",
-    popcornReplacement: IriSP.libdir + "pop.js",
-    raphael: IriSP.libdir + "raphael.js",
-    jquery_sparkline: IriSP.libdir + "jquery.sparkline.js",
-    "popcorn.mediafragment" : IriSP.libdir + "popcorn.mediafragment.js",
-    "popcorn.code" : IriSP.libdir + "popcorn.code.js",
-    "popcorn.jwplayer": IriSP.libdir + "popcorn.jwplayer.js",
-    "popcorn.youtube": IriSP.libdir + "popcorn.youtube.js"
-};
-
-//Player Configuration 
-IriSP.config = undefined;
-
-IriSP.widgetsDefaults = {
-  "LayoutManager" : {spacer_div_height : "0px" },
-  "PlayerWidget" : {},
-  "AnnotationsWidget": {
-    "share_text" : "I'm watching ",     
-    "fb_link" : "http://www.facebook.com/share.php?u=",
-    "tw_link" : "http://twitter.com/home?status=",
-    "gplus_link" : ""
-    },
-  "TweetsWidget" : {
-      default_profile_picture : "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png",
-      tweet_display_period: 10000 // how long do we show a tweet ?
-  },
-  "SliderWidget" : {
-      minimize_period: 850 // how long does the slider stays maximized after the user leaves the zone ?
-  },
-  "createAnnotationWidget" : {
-      keywords: ["#faux-raccord", "#mot-clef"],
-      cinecast_version: true /* put to false to enable the platform version, true for the festival cinecast one. */
-  },
-  "SparkLineWidget" : {
-      column_width: 10 // the width of a column in pixels.
-  },
-  "Main" : {
-      autoplay: true
-  }
-  
-};
-
-/* ! Must not end with a trailing slash */
-IriSP.platform_url = "http://localhost/pf/";
-
-IriSP.paths = {
-  "imgs": "/mdp/src/css/imgs"
-};
-IriSP.default_templates_vars = {
-  "img_dir" : IriSP.paths.imgs 
-};
-
--- a/src/js/widgets/annotationsListWidget.js	Wed Jan 18 17:40:14 2012 +0100
+++ b/src/js/widgets/annotationsListWidget.js	Wed Jan 18 17:44:55 2012 +0100
@@ -2,6 +2,8 @@
   IriSP.Widget.call(this, Popcorn, config, Serializer);
   this.__counter = 0;
   this.__oldList = [];
+  
+  this.ajax_mode = IriSP.widgetsDefaults["AnnotationsListWidget"].ajax_mode;
 };
 
 
@@ -22,7 +24,7 @@
 /** draw the annotation list */
 IriSP.AnnotationsListWidget.prototype.drawList = function(force_redraw) {
   var _this = this;
-
+  
   var view_type = this._serializer.getContributions();
   var annotations = this._serializer._data.annotations;
   var currentTime = this._Popcorn.currentTime();
@@ -88,10 +90,20 @@
   
 };
 
+IriSP.AnnotationsListWidget.prototype.ajaxRedraw = function(timecode) {
+  var pre_url = IriSP.widgetsDefaults["AnnotationsListWidget"].ajax_url;
+  var templ = "{{pre_url}}/{{content_id}}/{{begin_timecode}}/{{end_timecode}}/";
+};
+
 IriSP.AnnotationsListWidget.prototype.draw = function() {
 
   this.drawList();
-  this._Popcorn.listen("IriSP.createAnnotationWidget.addedAnnotation", IriSP.wrap(this, function() { this.drawList(true); }));
+    
+  if (!this._ajax_mode) {    
+    this._Popcorn.listen("IriSP.createAnnotationWidget.addedAnnotation", IriSP.wrap(this, function() { this.drawList(true); }));
+  } else {
+    this._Popcorn.listen("IriSP.StackGraphWidget.mouseOver", IriSP.wrap(this, this.ajaxRedraw));
+  }
   this._Popcorn.listen("timeupdate", IriSP.wrap(this, this.redraw));
 };
 
--- a/src/js/widgets/arrowWidget.js	Wed Jan 18 17:40:14 2012 +0100
+++ b/src/js/widgets/arrowWidget.js	Wed Jan 18 17:44:55 2012 +0100
@@ -29,7 +29,9 @@
     return;
   
   var currentTime = this._Popcorn.currentTime();
-  var currentAnnotation = this._serializer.currentAnnotations(currentTime)[0]; // FIXME : use the others ?
+  var currentAnnotation = this._serializer.currentChapitre(currentTime);
+  if (IriSP.null_or_undefined(currentAnnotation))
+    var currentAnnotation = this._serializer.currentAnnotation(currentTime)[0]; // FIXME : use the others ?
 
   /* move the arrow only if the current annotation changes */
   if (currentAnnotation != this._oldAnnotation) {
@@ -43,7 +45,7 @@
     // we need to apply a fix because the arrow has a certain length
     // it's half the length of the arrow (27 / 2). We need to convert
     // it in percents though.
-    var totalWidth = this.selector.width();
+    var totalWidth = this.selector.width();    
     var pixels = percents * totalWidth;
     var correction = (27 / 2);
     var corrected_pixels = pixels - correction;
--- a/src/js/widgets/stackGraphWidget.js	Wed Jan 18 17:40:14 2012 +0100
+++ b/src/js/widgets/stackGraphWidget.js	Wed Jan 18 17:44:55 2012 +0100
@@ -161,6 +161,13 @@
         })
         .mousemove(function(_e) {
             _this.updateTooltip(_e);
+            
+            // Also tell the world where the mouse is hovering.
+            var relX = event.pageX - this.selector.offset().left;
+            var duration = this._serializer.currentMedia().meta["dc:duration"];
+            var Time = ((relX / _this.width) * duration).toFixed(2);
+            _this._Popcorn.trigger("IriSP.StackGraphWidget.mouseOver", Time);
+
         })
         .mouseout(function() {
             _this.TooltipWidget.hide();
--- a/test/integration/polemic-platform.htm	Wed Jan 18 17:40:14 2012 +0100
+++ b/test/integration/polemic-platform.htm	Wed Jan 18 17:44:55 2012 +0100
@@ -23,13 +23,13 @@
   <script  type="text/javascript">
     var platf_url = "http://localhost/pf/ldtplatform/ldt/";
     //var project_id = "47e3eef0-3ab4-11e1-9423-001d7d7c6d1d";
-    var project_id = "67d92570-4024-11e1-b8b0-001d7d7c6d1d";
+    http://localhost/pf/ldtplatform/ldt/cljson/id/
+    var project_id = "1771a6cf-3dfd-11e1-a3d8-001d7d7c6d1d";
     
     IriSP.widgetsDefaults["createAnnotationWidget"].cinecast_version = false;
     var config = {            
         gui:{
-            width:650,
-            height:2100,              
+            width:650,        
             container:'LdtPlayer',
             css:'../../src/css/LdtPlayer.css',
             widgets: [
--- a/test/integration/polemic.htm	Wed Jan 18 17:40:14 2012 +0100
+++ b/test/integration/polemic.htm	Wed Jan 18 17:44:55 2012 +0100
@@ -21,6 +21,7 @@
   <div id="LdtPlayer"></div>
   
   <script  type="text/javascript">
+    var file = "twitterized.json";
     var config = {            
         gui:{
             width:650,
@@ -33,7 +34,7 @@
              height: 50,
              metadata:{
               format:'cinelab',
-              src:'polemic_fr.json',
+              src:file,
               type:'json'},
               
              requires: [{
@@ -51,7 +52,7 @@
                 type: "StackGraphWidget",
                 metadata: {
                     format:'cinelab',
-                    src:'polemic_fr.json',
+                    src:file,
                     type:'json'
                 },requires: [{
                   type: "TooltipWidget",
@@ -68,33 +69,33 @@
              height: 50,
 						 metadata:{
 						  format:'cinelab',
-						  src:'polemic_fr.json',
+						  src:file,
 						  type:'json'}
 						},
             {type: "SliderWidget",
 						 metadata:{
 						  format:'cinelab',
-						  src:'polemic_fr.json',
+						  src:file,
 						  type:'json'}
 						},
             {type: "AnnotationsListWidget",
              container: "AnnotationsListContainer",             
 						 metadata:{
 						  format:'cinelab',
-						  src:'polemic_fr.json',
+						  src:file,
 						  type:'json'}
 						},
             {type: "PlayerWidget", // please note that type refers directly to the constructor of the widget.
              mode: "radio",
              metadata:{
               format:'cinelab',
-              src:'polemic_fr.json',
+              src:file,
               type:'json'}
             },
             {type: "SegmentsWidget",
              metadata:{
               format:'cinelab',
-              src:'polemic_fr.json',
+              src:file,
               type:'json'},
              requires: [{
               type: "TooltipWidget",
@@ -108,13 +109,13 @@
             {type: "SliceWidget",
              metadata:{
               format:'cinelab',
-              src:'polemic_fr.json',
+              src:file,
               type:'json'}
             },            
             {type: "ArrowWidget",
              metadata:{
               format:'cinelab',
-              src:'polemic_fr.json',
+              src:file,
               type:'json'}
             },
 
@@ -122,19 +123,19 @@
             {type: "AnnotationsWidget",
 						 metadata:{
 						  format:'cinelab',
-						  src:'polemic_fr.json',
+						  src:file,
 						  type:'json'}
 						},
             {type: "TweetsWidget",
 						 metadata:{
 						  format:'cinelab',
-						  src:'polemic_fr.json',
+						  src:file,
 						  type:'json'}
 						},
             {type: "createAnnotationWidget",
 						 metadata:{
 						  format:'cinelab',
-						  src:'polemic_fr.json',
+						  src:file,
 						  type:'json'}
 						}      
             ]
@@ -150,7 +151,7 @@
                { type: "MediaFragment",
   			     		 metadata:{
 	  	  			   format:'cinelab',
-		  				   src:'polemic_fr.json',
+		  				   src:file,
 						     type:'json'}
 						}]
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/integration/twitterized.json	Wed Jan 18 17:44:55 2012 +0100
@@ -0,0 +1,51075 @@
+{
+"views": [
+{
+"id": "0",
+"contents": [
+"laurentcantet_entrelesmurs"
+],
+"annotation_types": [
+"c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"c_2344556E-A818-EA23-37FC-0E47A150EACD"
+]
+}
+],
+"tags": [
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.373170",
+"dc:title": "fénêtre",
+"dc:modified": "2012-01-18T14:31:18.373170",
+"dc:creator": "IRI"
+},
+"id": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.481081",
+"dc:title": "fénêtre",
+"dc:modified": "2012-01-18T14:31:18.481081",
+"dc:creator": "IRI"
+},
+"id": "15ab2fe6-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.777230",
+"dc:title": "auteur",
+"dc:modified": "2012-01-18T14:31:18.777230",
+"dc:creator": "IRI"
+},
+"id": "15d85f84-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.356565",
+"dc:title": "apprentissage",
+"dc:modified": "2012-01-18T14:31:18.356565",
+"dc:creator": "IRI"
+},
+"id": "15982e32-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.503387",
+"dc:title": "Argumentation",
+"dc:modified": "2012-01-18T14:31:18.503387",
+"dc:creator": "IRI"
+},
+"id": "15ae9230-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.673351",
+"dc:title": "dévalorisation",
+"dc:modified": "2012-01-18T14:31:18.673351",
+"dc:creator": "IRI"
+},
+"id": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.260319",
+"dc:title": "café",
+"dc:modified": "2012-01-18T14:31:18.260319",
+"dc:creator": "IRI"
+},
+"id": "158a7cb0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.373170",
+"dc:title": "devoir sur table",
+"dc:modified": "2012-01-18T14:31:18.373170",
+"dc:creator": "IRI"
+},
+"id": "159ab436-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.673351",
+"dc:title": "conseil de classe",
+"dc:modified": "2012-01-18T14:31:18.673351",
+"dc:creator": "IRI"
+},
+"id": "15c88230-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.620884",
+"dc:title": "cour",
+"dc:modified": "2012-01-18T14:31:18.620884",
+"dc:creator": "IRI"
+},
+"id": "15c07e28-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.589375",
+"dc:title": "pédagogie",
+"dc:modified": "2012-01-18T14:31:18.589375",
+"dc:creator": "IRI"
+},
+"id": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.406561",
+"dc:title": "raison",
+"dc:modified": "2012-01-18T14:31:18.406561",
+"dc:creator": "IRI"
+},
+"id": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.302927",
+"dc:title": "élèves",
+"dc:modified": "2012-01-18T14:31:18.302927",
+"dc:creator": "IRI"
+},
+"id": "158ffabe-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.516512",
+"dc:title": "portrait",
+"dc:modified": "2012-01-18T14:31:18.516512",
+"dc:creator": "IRI"
+},
+"id": "15b0963e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.301137",
+"dc:title": "cercle vicieux",
+"dc:modified": "2012-01-18T14:31:18.301137",
+"dc:creator": "IRI"
+},
+"id": "158fb504-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.673351",
+"dc:title": "défense",
+"dc:modified": "2012-01-18T14:31:18.673351",
+"dc:creator": "IRI"
+},
+"id": "15c88780-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.260319",
+"dc:title": "François Marin",
+"dc:modified": "2012-01-18T14:31:18.260319",
+"dc:creator": "IRI"
+},
+"id": "158b6fda-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.589375",
+"dc:title": "discipline",
+"dc:modified": "2012-01-18T14:31:18.589375",
+"dc:creator": "IRI"
+},
+"id": "15bbb500-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.306893",
+"dc:title": "salle de cours",
+"dc:modified": "2012-01-18T14:31:18.306893",
+"dc:creator": "IRI"
+},
+"id": "15909712-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.310333",
+"dc:title": "suicide",
+"dc:modified": "2012-01-18T14:31:18.310333",
+"dc:creator": "IRI"
+},
+"id": "1591206a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.601399",
+"dc:title": "arrivée",
+"dc:modified": "2012-01-18T14:31:18.601399",
+"dc:creator": "IRI"
+},
+"id": "15bd85a6-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.260319",
+"dc:title": "rentrée",
+"dc:modified": "2012-01-18T14:31:18.260319",
+"dc:creator": "IRI"
+},
+"id": "158c4c52-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.291685",
+"dc:title": "salle des profs",
+"dc:modified": "2012-01-18T14:31:18.291685",
+"dc:creator": "IRI"
+},
+"id": "158f34ee-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.291685",
+"dc:title": "école",
+"dc:modified": "2012-01-18T14:31:18.291685",
+"dc:creator": "IRI"
+},
+"id": "158f4394-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.517379",
+"dc:title": "autoportrait",
+"dc:modified": "2012-01-18T14:31:18.517379",
+"dc:creator": "IRI"
+},
+"id": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.308773",
+"dc:title": "tableau",
+"dc:modified": "2012-01-18T14:31:18.308773",
+"dc:creator": "IRI"
+},
+"id": "1590de5c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.356565",
+"dc:title": "plus-value",
+"dc:modified": "2012-01-18T14:31:18.356565",
+"dc:creator": "IRI"
+},
+"id": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.748965",
+"dc:title": "cantine",
+"dc:modified": "2012-01-18T14:31:18.748965",
+"dc:creator": "IRI"
+},
+"id": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.321747",
+"dc:title": "François Marin",
+"dc:modified": "2012-01-18T14:31:18.321747",
+"dc:creator": "IRI"
+},
+"id": "1592dd38-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.602229",
+"dc:title": "Souleymane",
+"dc:modified": "2012-01-18T14:31:18.602229",
+"dc:creator": "IRI"
+},
+"id": "15bda57c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.777230",
+"dc:title": "problème principal",
+"dc:modified": "2012-01-18T14:31:18.777230",
+"dc:creator": "IRI"
+},
+"id": "15d86696-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.712664",
+"dc:title": "gravité",
+"dc:modified": "2012-01-18T14:31:18.712664",
+"dc:creator": "IRI"
+},
+"id": "15ce845a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.415799",
+"dc:title": "salle",
+"dc:modified": "2012-01-18T14:31:18.415799",
+"dc:creator": "IRI"
+},
+"id": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.620353",
+"dc:title": "exterieur",
+"dc:modified": "2012-01-18T14:31:18.620353",
+"dc:creator": "IRI"
+},
+"id": "15c06f1e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.310333",
+"dc:title": "préjudice",
+"dc:modified": "2012-01-18T14:31:18.310333",
+"dc:creator": "IRI"
+},
+"id": "15911bec-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.441457",
+"dc:title": "regard",
+"dc:modified": "2012-01-18T14:31:18.441457",
+"dc:creator": "IRI"
+},
+"id": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.301137",
+"dc:title": "jugement social",
+"dc:modified": "2012-01-18T14:31:18.301137",
+"dc:creator": "IRI"
+},
+"id": "158fc12a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.315717",
+"dc:title": "temps",
+"dc:modified": "2012-01-18T14:31:18.315717",
+"dc:creator": "IRI"
+},
+"id": "1591f15c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.483696",
+"dc:title": "normes",
+"dc:modified": "2012-01-18T14:31:18.483696",
+"dc:creator": "IRI"
+},
+"id": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.620884",
+"dc:title": "foot",
+"dc:modified": "2012-01-18T14:31:18.620884",
+"dc:creator": "IRI"
+},
+"id": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.777230",
+"dc:title": "personnage",
+"dc:modified": "2012-01-18T14:31:18.777230",
+"dc:creator": "IRI"
+},
+"id": "15d863b2-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.315717",
+"dc:title": "heure",
+"dc:modified": "2012-01-18T14:31:18.315717",
+"dc:creator": "IRI"
+},
+"id": "1591ef2c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.598594",
+"dc:title": "carte scolaire",
+"dc:modified": "2012-01-18T14:31:18.598594",
+"dc:creator": "IRI"
+},
+"id": "15bd18e6-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.712664",
+"dc:title": "saillance des problèmes",
+"dc:modified": "2012-01-18T14:31:18.712664",
+"dc:creator": "IRI"
+},
+"id": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.483696",
+"dc:title": "faute",
+"dc:modified": "2012-01-18T14:31:18.483696",
+"dc:creator": "IRI"
+},
+"id": "15ab962a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.310333",
+"dc:title": "temps de cours effectif",
+"dc:modified": "2012-01-18T14:31:18.310333",
+"dc:creator": "IRI"
+},
+"id": "15912380-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.483696",
+"dc:title": "bruit",
+"dc:modified": "2012-01-18T14:31:18.483696",
+"dc:creator": "IRI"
+},
+"id": "15ab92b0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.655059",
+"dc:title": "bureau du Proviseur",
+"dc:modified": "2012-01-18T14:31:18.655059",
+"dc:creator": "IRI"
+},
+"id": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.300270",
+"dc:title": "le Proviseur",
+"dc:modified": "2012-01-18T14:31:18.300270",
+"dc:creator": "IRI"
+},
+"id": "158f9240-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.506891",
+"dc:title": "Passions tristes et solidarité mécanique",
+"dc:modified": "2012-01-18T14:31:18.506891",
+"dc:creator": "IRI"
+},
+"id": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.492846",
+"dc:title": "Koumba",
+"dc:modified": "2012-01-18T14:31:18.492846",
+"dc:creator": "IRI"
+},
+"id": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.465191",
+"dc:title": "Enonciation",
+"dc:modified": "2012-01-18T14:31:18.465191",
+"dc:creator": "IRI"
+},
+"id": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.777230",
+"dc:title": "Propos central",
+"dc:modified": "2012-01-18T14:31:18.777230",
+"dc:creator": "IRI"
+},
+"id": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.481081",
+"dc:title": "élèves",
+"dc:modified": "2012-01-18T14:31:18.481081",
+"dc:creator": "IRI"
+},
+"id": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.604210",
+"dc:title": "salle informatique",
+"dc:modified": "2012-01-18T14:31:18.604210",
+"dc:creator": "IRI"
+},
+"id": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.282457",
+"dc:title": "couloir",
+"dc:modified": "2012-01-18T14:31:18.282457",
+"dc:creator": "IRI"
+},
+"id": "158dc082-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.301137",
+"dc:title": "inertie des rôles",
+"dc:modified": "2012-01-18T14:31:18.301137",
+"dc:creator": "IRI"
+},
+"id": "158fbe46-41e1-11e1-b830-08002791f1b7"
+},
+{
+"meta": {
+"dc:contributor": "IRI",
+"dc:created": "2012-01-18T14:31:18.322531",
+"dc:title": "silence",
+"dc:modified": "2012-01-18T14:31:18.322531",
+"dc:creator": "IRI"
+},
+"id": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"lists": [
+{
+"items": [
+{
+"id-ref": "c_2344556E-A818-EA23-37FC-0E47A150EACD"
+}
+],
+"meta": {
+"dc:contributor": "undefined",
+"dc:created": "2012-01-18T14:31:18.253513",
+"dc:creator": "undefined",
+"id-ref": "laurentcantet_entrelesmurs",
+"dc:title": "Découpages personnels",
+"editable": "false",
+"dc:modified": "2012-01-18T14:31:18.253513",
+"dc:description": ""
+},
+"id": "g_EC198E56-925D-C733-5ADD-0E47A1505731"
+},
+{
+"items": [
+{
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54"
+}
+],
+"meta": {
+"dc:contributor": "undefined",
+"dc:created": "2012-01-18T14:31:18.255675",
+"dc:creator": "undefined",
+"id-ref": "laurentcantet_entrelesmurs",
+"dc:title": "twitter",
+"editable": "false",
+"dc:modified": "2012-01-18T14:31:18.255675",
+"dc:description": ""
+},
+"id": "laurentcantet_entrelesmurs"
+}
+],
+"medias": [
+{
+"origin": "0",
+"http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
+"href": "rtmp://media.iri.centrepompidou.fr/ddc_player/video/regardssignes/laurentcantet_entrelesmurs.flv",
+"meta": {
+"dc:contributor": "IRI",
+"item": {
+"name": "streamer",
+"value": "rtmp://media.iri.centrepompidou.fr/ddc_player/video/regardssignes/"
+},
+"dc:created": "2011-08-12T14:57:01",
+"dc:duration": 7454880,
+"dc:creator": "IRI",
+"dc:created.contents": "2012-01-18",
+"dc:title": "Entre Les Murs",
+"dc:creator.contents": "IRI",
+"dc:modified": "2012-01-18T11:14:05.915460",
+"dc:description": ""
+},
+"id": "laurentcantet_entrelesmurs",
+"unit": "ms"
+}
+],
+"meta": {
+"dc:contributor": "admin",
+"dc:created": "2012-01-18T11:11:04.645709",
+"dc:creator": "admin",
+"main_media": {
+"id-ref": "laurentcantet_entrelesmurs"
+},
+"dc:description": "<p>Demo pour Cinecast</p>",
+"dc:title": "Entre les murs demo Cinecast",
+"id": "bb18dcdc-41bc-11e1-91b2-08002791f1b7",
+"dc:modified": "2012-01-18T11:13:20.218406"
+},
+"annotations": [
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Générique\n\n\n\n\n\nPalme d'or à Cannes\n\n\n\n\n\nCoprod france 2\n\n\n\n\n\nAide de la Région Idf",
+"img": {
+"src": ""
+},
+"title": "Générique",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 0,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 0,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D1A9D98A-5316-4266-F17E-E0B53788250F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "pas de musique, juste des bruits mixés modulés en dynamique. Très peu de réalisateur ont utilisé ce choix radical : Clouzot et Cavalier par exemple , à chaque fois dans un but de radicaliser l'esthétique et l'univers diégétique. Ici pas d'intériorité des images exprimée par la musique, juste une volonté de faire réaliste... voir aussi le choix de prise de vue pour calquer les codes du documentaire",
+"img": {
+"src": ""
+},
+"title": "introduction",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 0,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 0,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_913C21AD-8400-2C11-74E2-03E5BBE355F0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 0,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 0,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_24629288-261B-B71A-F1DA-DF434B326A0E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "générique",
+"color": "0",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 453,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 453,
+"tags": null,
+"color": "0",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0BDAC8F0-0B5D-05D0-AE30-A414BB16128E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Arrivée du prof",
+"img": {
+"src": ""
+},
+"title": "Entrée dans l'arène ++",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 43152,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 43152,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0ABF3195-D342-371C-B848-E0B537887078"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "café\nchemin vers le collège",
+"img": {
+"src": ""
+},
+"title": "hors les murs",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 43504,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 43504,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E908CFC5-EB63-A11A-90C9-A415AA972F19"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Gros plan de François Marin au café.",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 43929,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 43929,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_824BD9E2-D695-8573-5224-FE0A24025712"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Sujet du film, la matière enseignée et l'enseignant. Le générique et les plans fixent la matière du film ( tableau noir et écrit à la craie)",
+"img": {
+"src": ""
+},
+"title": "le tableau noir -le visage",
+"color": "3342387",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 43929,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 43929,
+"tags": null,
+"color": "3342387",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4C7D1893-EACB-DE25-B362-7E15DD239522"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "le prof est pris en gros plan, seul dans ses pensées, à quoi pense-t-il ? il nous renvoie à nous même, intériorité du personnage dans son temps propre. ??",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1_in.jpg"
+},
+"title": "plan 1",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 44600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 44600,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_08DE7C96-042C-20A6-68B0-ACBE57361694"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 44800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 44800,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BA233807-8809-308E-C611-CBE91F63D957"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Arrivée au collège",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 44892,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 44892,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9B7CB0EC-953A-8C74-DFC2-7CB6D5BD8D72"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "L'arrivée à l'école",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 45000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 45000,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3416DF85-89E9-3339-BC3E-D13600305655"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan, le fond est flou; F.M. se lève et sort du café, la caméra effectue un leger panoramique pour le suivre, reste fixe pendant qu'il s'éloigne en gardant le point sur lui.",
+"img": {
+"src": ""
+},
+"title": "Le professeur entre dans l'établissement scolaire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 45048,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 45048,
+"tags": [
+{
+"id-ref": "158a7cb0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158b6fda-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158c4c52-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_48F81E77-0DE8-146F-D928-B15BCEC09421"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 46760,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 46760,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3130419D-5D95-8075-D058-08F1CF7EA0BE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Le héros avance vers le feu rouge... On est dans le symbolisme lourdingue.",
+"img": {
+"src": ""
+},
+"title": "Le Feu Rouge --",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 58284,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 58284,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8F9C2737-3115-9ACD-49D5-0EC922A80CCA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 61450,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 61450,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_ED0C4D6C-11CC-4102-A6D2-08F1E6EEA439"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "il traverse au feu rouge",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 67584,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 67584,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E525B1B0-FD68-E8E7-F07B-229A7322462B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "La caméra le cadre en plan rapproché taille, le suit à l'aide d'un panoramique. ==",
+"img": {
+"src": ""
+},
+"title": "F.M. s'approche de l'établissement scolaire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 75469,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 75469,
+"tags": [
+{
+"id-ref": "158c4c52-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158c4c52-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8F9D9229-0047-D7B9-5ED6-03418C99DCB4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "grille, barreaux, la prison école ++",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/2_in.jpg"
+},
+"title": "plan 2",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 77000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 77000,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CBB96BB8-20A4-4912-9AAA-099569156C79"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 77480,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 77480,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DD22CE91-283B-6213-1BCD-09A5270DA6A2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "rencontre en rentrant au collège",
+"color": "26112",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 85614,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 85614,
+"tags": null,
+"color": "26112",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7DE05471-6A58-8B54-E593-31D0ED40DEE0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 90561,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 90561,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2431AC6A-2261-7702-3B97-09A506182A89"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "F.M. monte les escaliers",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 91239,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 91239,
+"tags": [
+{
+"id-ref": "158dc082-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158dc082-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158dc082-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_73ECC01B-3B97-4B31-B965-03430F3FDFBC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "La séquence s'ouvre sur le prof de français de dos et se clot sur sa présentation et donc son visage ++",
+"img": {
+"src": ""
+},
+"title": "présentation profs, membres de l'équipe pédagoi et  employés du collège",
+"color": "26112",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 93397,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 93397,
+"tags": null,
+"color": "26112",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_19849067-5722-0961-0B9B-31D2CAAEED72"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Les profs se présentent et sont présentés dans leur humanité, leur regard sur la fonction, ou bien leur parcours. Certains evitent de parler du \"bahut\" ou rentrent dans le vif du sujet. François clôt la série des présentation, après la cuisinière et Gille le prof de Math. Cesure visuelle. Il est de face. ++",
+"img": {
+"src": ""
+},
+"title": "le professeur - son contexte et la rentrée",
+"color": "3342387",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 94618,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 94618,
+"tags": null,
+"color": "3342387",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_826A1064-CC32-256F-A317-7E18F898B737"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "La caméra nous montre le travail dans la salle, en attendant le passage de F.M. qu'elle suit en panoramique. ++",
+"img": {
+"src": ""
+},
+"title": "F.M. en passant, jette un coup d'oeil à une salle qu'on est en train d'amenager",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 99800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 99800,
+"tags": [
+{
+"id-ref": "158dc082-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158dc082-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158dc082-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2B67444C-5361-2BA6-5620-B15DAFF621E8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Les profs sont habillés en élève (cela se confirmera)... Les \"pros\", ce sont les ouvriers. Deux montent se côtoient. ++",
+"img": {
+"src": ""
+},
+"title": "Habillage",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 99980,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 99980,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AF0416A8-94AC-4884-0874-0ECA365AC6F4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "rouge de la borne incendie",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 112641,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 112641,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A0BAEDDD-D825-7EC5-37BF-229B18E433C6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "salle des profs",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 113788,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 113788,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C9731ED0-47A7-8BF7-9CF8-A4198D387025"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Présentations de rentrée",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 115631,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 115631,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B10A00BE-B043-9034-D349-7CB996C44B5D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Présentation des enseignants",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 116600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 116600,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CCD89DB5-27C5-9CE4-0D2D-D136CAE0F061"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Présentation des enseignants",
+"color": "16737843",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 118400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 118400,
+"tags": null,
+"color": "16737843",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E712C16A-7A6E-DBDA-2F06-D139C4482319"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Réunion des profs.\n\nTout le monde se présente - Effet de naturel - Un mot de François (réserve) --",
+"img": {
+"src": ""
+},
+"title": "Réunion de rentrée",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 119760,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 119760,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_67119438-6013-9B69-3193-E0B53788A631"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "La caméra effectue un panoramique horizontal et puis vertical pour cadrer F.M. qui, dos à la fénêtre, se présente, cadré en plan rapproché poitrine.",
+"img": {
+"src": ""
+},
+"title": "F.M. se présente aux autres enseignants",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 205155,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 205155,
+"tags": [
+{
+"id-ref": "158dc082-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158f34ee-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158f4394-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9F94ED98-9924-A580-4351-B15F7E6F8D2D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "lui face aux autres, à ses collègues, pas vraiment à l'aise, il se désigne, s'identifie, une situation conventionnelle où on l'on perçoit pourtant poindre un certain malaise. --",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/22_in.jpg"
+},
+"title": "plan 22",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 205320,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 205320,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DF009602-C440-FCC1-5EDD-ACC014A61464"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Les horaires",
+"color": "16737843",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 216800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 216800,
+"tags": null,
+"color": "16737843",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_97237AD3-C369-31B3-A646-D13A37F65E46"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Distribution des plannings - Gentils pas gentils --",
+"img": {
+"src": ""
+},
+"title": "Les plannings",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 221520,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 221520,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4041B4A6-9CC2-FFB0-A225-E0B537881436"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "la feuille de TPS",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 225282,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 225282,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E8ECFB58-C4B3-889D-10F5-229CBF15886B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "salle des profs (emplois du temps)",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 227577,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 227577,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_300A0EC6-B0F6-A1D4-0DB0-A419B968A57C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "En premier plan des enseignants, F.M. apparaît sur le fond, cadré en plan américain.",
+"img": {
+"src": ""
+},
+"title": "F.M.s'approche du Proviseur",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 227945,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 227945,
+"tags": [
+{
+"id-ref": "158f4394-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158f9240-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_19303891-E71A-96B2-892F-034895558D46"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Raccord sur l'axe, la focale est plus longue que dans le plan précedent. ++",
+"img": {
+"src": ""
+},
+"title": "F.M. regarde ses horaires avec le Proviseur",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 229795,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 229795,
+"tags": [
+{
+"id-ref": "158f9240-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158f9240-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_28B644F6-6E91-498C-B967-B1618A24510A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/32_in.jpg"
+},
+"title": "plan 32",
+"color": "3342591",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 248680,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 248680,
+"tags": null,
+"color": "3342591",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F2D44351-CED6-C388-F291-0A2875BD8002"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Très marrant ici, probablement incontournable (si ce n'est pas entre profs ce sera entre profs et administration), mais rend difficile les \"changements\" de rôle des élèves --",
+"img": {
+"src": ""
+},
+"title": "gentil/pas gentil",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 258384,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 258384,
+"tags": [
+{
+"id-ref": "158fb504-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158fbe46-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158fc12a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_07BB3EE1-93CE-543F-0D3B-B728312CF37D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "lui face aux élèves, trier selon le critère \"gentil pas gentil\",  il est à son poste, sur le pas de la porte. ++",
+"img": {
+"src": ""
+},
+"title": "\"seul\" à la porte : le passeur",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 263000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 263000,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EB5353AB-BBD2-01C7-0731-EF21C0F4E8B7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "la séquence de rentrée depuis la salle des profs ou un prof fait le tri entre les énéves, gentil pas gentil... --",
+"img": {
+"src": ""
+},
+"title": "séquence rentrée",
+"color": "13369395",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 263006,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 263006,
+"tags": null,
+"color": "13369395",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B2493893-8494-73DB-4B37-03DD100AC570"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/33_in.jpg"
+},
+"title": "plan 33",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 263200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 263200,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2E557CF1-3CE1-C723-4E05-FAF09E1B452F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. cadré en plan rapproché poitrine attend les élèves sur le seuil de la salle de cours.",
+"img": {
+"src": ""
+},
+"title": "Premier jour : arrivée des élèves",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 264077,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 264077,
+"tags": [
+{
+"id-ref": "158fc12a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158fc12a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158ffabe-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C29D72B8-C871-0690-F14F-B16243ADE307"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "premier jour- F.M. reproche aux élèves qu'ils perdent à chaque fois 5 minutes",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 264400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 264400,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F1085DC2-6706-BC17-8B3C-D13C8B50DABA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 271040,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 271040,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B225180D-488C-BE54-E6CC-4461C8B8920F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/34_in.jpg"
+},
+"title": "plan 34",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 271440,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 271440,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E19E71EE-2767-8C6D-4A69-0A17F83DEABD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "PLan rapproché poitrine, de dos.",
+"img": {
+"src": ""
+},
+"title": "F.M. attend l'arrivée des élèves.",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 271495,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 271495,
+"tags": [
+{
+"id-ref": "158ffabe-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158ffabe-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "158ffabe-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_ABC5A955-68BF-127D-98B4-034BF4FBB15F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Arrivée des élèves - Scène de classe 1 - durée :\nChahut\nBaisse ta capuche\nRéflexion sur le temps ++\nCompétition : les autres font une heure (pas vraiment un problème)",
+"img": {
+"src": ""
+},
+"title": "Scène de classe 1",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 271867,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 271867,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E05BBA49-7F3D-AA2A-99E1-E0B5378859E5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "la séquence de rentrée depuis la salle des profs ou un prof fait le tri entre les énéves, gentil pas gentil...",
+"img": {
+"src": ""
+},
+"title": "séquence rentrée :entrée dans la classe et choix des places : violence idem cour de récréation cris chahut",
+"color": "16711731",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 278600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 278600,
+"tags": null,
+"color": "16711731",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C3AFF448-54CD-1C06-DFB0-08F9D0330923"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/36_in.jpg"
+},
+"title": "plan 36",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 278920,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 278920,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_95CD76BF-40BC-BAFA-C9AC-0A198CB8AD83"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/37_in.jpg"
+},
+"title": "plan 37",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 282840,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 282840,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_663170C0-E345-CC7D-B51C-03C5AEBF2F16"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Le cadre (légèrement décadré?) est rempli par les élèves, F.M. s'installe à sa place, sur le fond du cadre. L'espace sonore est dominé par les voix des élèves. ++",
+"img": {
+"src": ""
+},
+"title": "F.M. entre dans la salle de cours.",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 282924,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 282924,
+"tags": [
+{
+"id-ref": "158ffabe-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15909712-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15909712-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_11BFA704-4C5E-6B97-EAC8-034D7BF85328"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "la casquette",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 283855,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 283855,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_245155B0-2A18-2945-2813-229DB6B1ABE0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "brouhaha-> calme\ndiscussion sur heure de cours (55 min)\nnoms sur feuille\nfin sur sherif, qui écrit, et ouverture de la sène suivante sur prof en train d'écrire",
+"img": {
+"src": ""
+},
+"title": "classe",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 284471,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 284471,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1F8701FA-1EF5-9533-DA39-A40926ABC8D5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/38_in.jpg"
+},
+"title": "plan 38",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 286280,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 286280,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_06B346C0-78D2-D62A-B3C8-0981AFE4CCF3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/39_in.jpg"
+},
+"title": "plan 39",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 296120,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 296120,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7860E056-6FEB-8A74-A352-03C7A32DE1B2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "attente à son poste , faisant face aux élèves par le dispositif de la classe, il attend que tous trouvent une place, cela prend du temps. ++",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/39_in.jpg"
+},
+"title": "plan 39",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 296120,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 296120,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_083F451E-E2A9-6146-C140-AD68A22FCBEF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. sur le fond, plan moyen.",
+"img": {
+"src": ""
+},
+"title": "Les élèves sont assis",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 296752,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 296752,
+"tags": [
+{
+"id-ref": "15909712-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15909712-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1590de5c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1590de5c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6E332C62-CFF5-97D6-8B18-B16601C71FE0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/40_in.jpg"
+},
+"title": "plan 40",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 301120,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 301120,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B8FC97B6-3C53-0DA1-1BF8-03C85E5E7263"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "pas de musique, juste des bruits mixés modulés en dynamique. Très peu de réalisateur ont utilisé ce choix radical : clouzot cavalier par exemple , à chaque fois dans un but de radicaliser l'esthétique et l'univers exprimé. Ici pas d'intériorité des images, juste une volonté de faire réaliste... voir aussi le choix de prise de vue ++",
+"img": {
+"src": ""
+},
+"title": "appel à l'ordre, cris et coups sur la table",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 304200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 304200,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8A5DF857-9C7C-74EC-B9F0-08EB423F157E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Zoom sur F.M.",
+"img": {
+"src": ""
+},
+"title": "F.M. tente d'obtenir le silence.",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 304251,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 304251,
+"tags": [
+{
+"id-ref": "1590de5c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1590de5c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1590de5c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1590de5c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_47631B4A-B2C6-924F-4C10-B1669AF054C0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/41_in.jpg"
+},
+"title": "plan 41",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 304400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 304400,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_37899BD3-7756-CA58-A935-03C8011BCABB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Vécu personnellement avec en gros les mêmes arguments que le personnage-auteur, sauf qu'avec des BTS en \"alternance\", la perte du temps est encore plus \"suicidaire\" compte tenu des taux de réussite très faible et du fait que le BTS est plus un concours qu'un examen (de fait) ++",
+"img": {
+"src": ""
+},
+"title": "brouhaha du début de cours",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 304763,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 304763,
+"tags": [
+{
+"id-ref": "15911bec-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1591206a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15912380-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A15DE157-4B24-463A-5827-B72B2BB412BB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "la séquence de rentrée depuis la salle des profs ou un prof fait le tri entre les énéves, gentil pas gentil...",
+"img": {
+"src": ""
+},
+"title": "séquence rentrée : consigne",
+"color": "16711731",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 305580,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 305580,
+"tags": null,
+"color": "16711731",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_875D47AA-EF7F-E45D-D601-08F9EA620B6C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/42_in.jpg"
+},
+"title": "plan 42",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 309240,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 309240,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_59824DE3-9F72-6F34-0C22-0985E8C3B50C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/42_in.jpg"
+},
+"title": "Insert : le poing de F.M.",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 309240,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 309240,
+"tags": [
+{
+"id-ref": "15912380-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15912380-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9B671F2A-F8F6-1FF7-9286-03568A0F82DF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Insert : le poing de F.M. sur le bureau.",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 309280,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 309280,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3C430E99-0C8D-DA00-F70A-FE0CA7B74BD8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "pas de musique, juste des bruits mixés modulés en dynamique. Très peu de réalisateur ont utilisé ce choix radical : clouzot cavalier par exemple , à chaque fois dans un but de radicaliser l'esthétique et l'univers exprimé. Ici pas d'intériorité des images, juste une volonté de faire réaliste... voir aussi le choix de prise de vue ++",
+"img": {
+"src": ""
+},
+"title": "consigne en voix off : on se calme maintenant",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 309550,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 309550,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_99AEADE2-456A-7B43-B68F-08EB82E2DC15"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "le poing le teeshirt",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 309762,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 309762,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E2074B97-9C45-230C-0FB2-229E15E9DE27"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/43_in.jpg"
+},
+"title": "plan 43",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 310280,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 310280,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_677006E4-8E75-59FA-D81E-09865A2A2D53"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 310600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 310600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D9B7CE4B-94E0-9963-16D7-4462E32B3C91"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Panoramique vertical ++",
+"img": {
+"src": ""
+},
+"title": "Le t-shirt d'une fille",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 312800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 312800,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F0CEAC94-63B3-41C8-A2F2-FE0D7A7E8B88"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 313100,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 313100,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_168A77F6-4B2D-8C30-C1DA-D0ACA155D700"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. dit à un élève de baisser sa capuche",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 316180,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 316180,
+"tags": [
+{
+"id-ref": "15912380-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15912380-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15912380-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1EC49256-0A92-5C03-1245-B16708C7C151"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "la main les gestes la capuche",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 316521,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 316521,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B1D452D9-3503-E9DD-6DB0-22A0760BEBEB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 317110,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 317110,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C63B0E7D-00B4-00D1-289F-D0AD9D089EF6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 317600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 317600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C8727430-62BD-CF86-F6B3-4463600CE46C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Les élèves prennent la première d'une longue série de leçons de morale qui ne prend pas. Ils refusent d'entrer dans la logique du prof, avec l'intervention quasi-poétique de Kemba. Je pense à \"Teacher Man\" (bien plus fort). --",
+"img": {
+"src": ""
+},
+"title": "Les Fourches caudines",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 319912,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 319912,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CBDAD2F4-EBED-862F-ABF9-0ECCA2498C60"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/46_in.jpg"
+},
+"title": "plan 46",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 324440,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 324440,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_139D4C6B-F8D6-FD7B-F458-03D5CD75F168"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Perdre du temps",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 325130,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 325130,
+"tags": [
+{
+"id-ref": "1591ef2c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1591ef2c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8329763B-FAE2-0B0E-8DB5-FE733813E496"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. ne veut pas perdre du temps",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 325130,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 325130,
+"tags": [
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_845A146F-23DD-191A-0FBB-B167D26A2AAA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/47_in.jpg"
+},
+"title": "plan 47",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 327080,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 327080,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BD901983-E506-D251-F7A3-097E8911B0B4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "pas de musique, juste des bruits mixés modulés en dynamique. Très peu de réalisateur ont utilisé ce choix radical : clouzot cavalier par exemple , à chaque fois dans un but de radicaliser l'esthétique et l'univers exprimé. Ici pas d'intériorité des images, juste une volonté de faire réaliste... voir aussi le choix de prise de vue ++",
+"img": {
+"src": ""
+},
+"title": "son",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 327800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 327800,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9547C052-6AE5-1A76-145E-08EC3A8A0A09"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/48_in.jpg"
+},
+"title": "plan 48",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 329000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 329000,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C84A696D-2AFD-1DF7-9482-03D5BC009548"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, caméra à l'épaule",
+"img": {
+"src": ""
+},
+"title": "encore sur la perte de temps",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 329887,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 329887,
+"tags": [
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4F096A67-20A5-09C3-72E6-B16823758337"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Belle dynamique d'échange verbal qui a contribué à rendre crédible le monde de cette classe difficile dépeint par le film - le son est très brut, les micros sont disposés pour rendre toute l'intelligibilité des propos qui est constamment privilégiée. Ce qui est démontre un choix d'une technique d'enregistrement proche de celle du reportage direct avec des sons pris sur le vif. La voix du professeur est entendue alors que la caméra passe d'un champ à l'autre et le tissage des  dialogues  en questions-injonctions-réponses traduit bien le type de situation orale d'apprentissage représentée. ++",
+"img": {
+"src": ""
+},
+"title": "échange prof-élèves",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 332290,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 332290,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AAE07801-47A0-1F51-66F3-08EC712ADE9D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 344400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 344400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_649041DF-3392-CC6F-3E4A-4463B58C04FC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 345800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 345800,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DC2D482F-4532-A7A7-1BC9-D0AEFEA8CC80"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/50_in.jpg"
+},
+"title": "plan 50",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 351760,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 351760,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_269ECF5F-2E8B-5E1C-C330-03D557A858BD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "encore sur la perte de temps",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 352130,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 352130,
+"tags": [
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0762165F-504B-2E1C-E598-B1689198DB22"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "François Marin est obligé de corriger sa phrase. ++",
+"img": {
+"src": ""
+},
+"title": "Koumba fait remarquer qu'on ne fait jamais une heure de cours.",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 353531,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 353531,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B0C5E602-46E6-24BB-E1C2-FD9806B7941E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/51_in.jpg"
+},
+"title": "plan 51",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 355360,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 355360,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_394E4A03-16B9-27E2-35F2-D0AFAA395BE1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 355400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 355400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F9910BC7-3BFC-FD77-A92F-446431D022FD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. dit à Koumba de lever son doigt pour parler",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 358596,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 358596,
+"tags": [
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6A1C621B-18DB-7113-1425-B168BD79CD17"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/52_in.jpg"
+},
+"title": "plan 52",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 358960,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 358960,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A0385387-9E48-EA05-23B4-03D53329065C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/53_in.jpg"
+},
+"title": "plan 53",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 360840,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 360840,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5BAF23E9-ABA6-5F71-DA95-D09D05EF5C54"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 361400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 361400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_03C33704-F88E-25AB-FD15-4464718F15A6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "silence du prof",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 369098,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 369098,
+"tags": [
+{
+"id-ref": "1591f15c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_482A3D31-101D-09D5-3322-FE7338154DD5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "silence du prof",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 369098,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 369098,
+"tags": [
+{
+"id-ref": "1592dd38-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592dd38-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592dd38-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_68AB2EE8-C9A6-AD5B-6AAE-B1690405E2A9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/54_in.jpg"
+},
+"title": "plan 54",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 369240,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 369240,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_835A4D83-D6DF-7FE6-F990-03D56F1870C1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "premier silence du prof",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 369407,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 369407,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B94DD80D-0B25-B987-4D85-B169646B5523"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 371600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 371600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6863D301-D1C4-CEFF-FEEE-4464CBC0EFF7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/55_in.jpg"
+},
+"title": "plan 55",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 371720,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 371720,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F8E2A55F-7A85-6AE2-0FF1-D097CE1E9CFD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/56_in.jpg"
+},
+"title": "plan 56",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 374760,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 374760,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BECF9952-35DB-BFB7-4E88-03D57DBE62A1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6749952",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 377973,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 377973,
+"tags": null,
+"color": "6749952",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_907A039D-803A-2C67-3CB7-2DAFD9A9661C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/57_in.jpg"
+},
+"title": "plan 57",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 379440,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 379440,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_ADBDD67F-FB4B-ECE0-44E3-D0954E8883DA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "encore sur la perte de temps, F.M. invite les élèves à écrire leur nom et prénom",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 384370,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 384370,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_196BF50B-D000-A1BD-9DB4-B16AC115D5BF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/58_in.jpg"
+},
+"title": "plan 58",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 384560,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 384560,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AE463786-DDC3-57F5-2B78-03D58FCF061C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Chaque élève doit écrire son nom et prénom",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 388400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 388400,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F11344F4-5F93-576A-A30E-D13FF97828C2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 392000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 392000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_575713A7-C855-ADF5-8621-4465BF93FAC3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/60_in.jpg"
+},
+"title": "plan 60",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 392360,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 392360,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CFEC0BAA-DF19-191D-2022-D0930A4580B4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 392600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 392600,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_09DC6127-8E26-9BAB-7E7D-FE101DD3F8F7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 396500,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 396500,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7C37E1A4-089B-618F-34CF-D096798B415B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "10040166",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 400651,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 400651,
+"tags": null,
+"color": "10040166",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CF59C2AA-4D13-12C3-DEF8-2DB15B205D82"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 402200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 402200,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3C2E1FAD-AD82-0951-4FEE-097D77B00FF0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "\"votre nom et votre prénom\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 402765,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 402765,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B707C6CE-BCB3-5365-5347-B16B184AAEDE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/63_in.jpg"
+},
+"title": "plan 63",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 404960,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 404960,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_87AD1BFF-9A42-360E-2E48-D09242BF21F3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 405000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 405000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9BCBE919-666C-67EF-CC02-4466D42E5EBB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "La fiche de présentation - Scène de classe 2 - Durée \nJ'écris pas si vous n'écrivez pas --",
+"img": {
+"src": ""
+},
+"title": "Scène de classe 2",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 409920,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 409920,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2406D977-09A7-0BD4-7E01-E0B5378850B0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/64_in.jpg"
+},
+"title": "plan 64",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 411320,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 411320,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C063CE49-D19E-5998-A09B-03D87E5CD038"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, panoramique pour suivre les mouvements de F.M., en légère contre-plongée",
+"img": {
+"src": ""
+},
+"title": "F.M. répond à Esmeralda",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 411722,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 411722,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8A1F6EB9-4C7A-B904-4C75-B16B6D837FD9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "mains elève prof - ecrire son nom",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 413392,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 413392,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_694B4B62-025C-B3BE-372B-22A188433286"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/65_in.jpg"
+},
+"title": "plan 65",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 418640,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 418640,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_69FF26AC-C406-87F7-59DD-D0920170823C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 418800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 418800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2FAFC50F-5403-97C8-A9BF-446770FDCE6A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/66_in.jpg"
+},
+"title": "plan 66",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 423080,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 423080,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A50E589A-0112-0099-F561-03D8690F3FC5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "François se présente à la classe",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 423150,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 423150,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E9522026-AD1C-B089-E794-FE7338176750"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, légère contre-plongée",
+"img": {
+"src": ""
+},
+"title": "François Marin se présente",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 423150,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 423150,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9B4F4F6C-73E2-F52D-F72A-B16BB3D43E6D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 428400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 428400,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_482C4D32-1024-CC74-465D-FE10C9B1ECFB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/67_in.jpg"
+},
+"title": "plan 67",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 428520,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 428520,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8025E107-DA90-C002-82BC-D0A0A9937B2D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 428600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 428600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0AFC2401-C9F5-C85E-6EE9-44681D3907F2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "ecrire : supports-usages- postures",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 432541,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 432541,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CE45C50E-4A09-1167-85B4-22A33654877C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "seul dans la classe salle des profs",
+"color": "3342540",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 448451,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 448451,
+"tags": null,
+"color": "3342540",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_365FBBF5-873F-BEDD-DCD4-03DC349E9365"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "François, appliqué au premier jour",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 449031,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 449031,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D9DCC292-8140-C11A-EB98-796EEBAA4521"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, panoramique vertical et puis panoramique horizontal.",
+"img": {
+"src": ""
+},
+"title": "F.M. prend des notes",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 449095,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 449095,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_124F94F3-1296-24FB-0C7B-B19865B837ED"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "seul dans la salle des profs. remplissant des taches administratives. --",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/74_in.jpg"
+},
+"title": "plan 74",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 449280,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 449280,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_415795A5-C97B-A944-AC6A-AD6A816EBCAE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/74_in.jpg"
+},
+"title": "plan 74",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 449280,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 449280,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5E4D3A7F-3FDE-EED3-5EAE-03D92B071F69"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Dans la salle des enseignants, on distribue des gâteaux, François Marin reste silencieux.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 449600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 449600,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C0835578-EA0A-4ED9-0FD3-D140C315DAEE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "prof travaille\ncollègue propose des biscuits",
+"img": {
+"src": ""
+},
+"title": "salle des profs",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 452665,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 452665,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_45E4E838-7056-6ADF-9DDD-A409318996A5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "toutes les contradictions:\nquestions des religions, des nations, des races, des tribus, des orientations sexuelles...\ncontradiction privé/public: ce qui se dit dans le privé qui franchit ou ne franchit pas le seuil du public. ++",
+"img": {
+"src": ""
+},
+"title": "Toutes les contradictions du monde entrent dans la salle de classe et passent les murs de l'institution scolaire.",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 458915,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 458915,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D3B61D3E-09BE-731F-BE8B-7DE3B8F6BCCC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Interruption de la scène - Salle des profs (pourquoi ?) --",
+"img": {
+"src": ""
+},
+"title": "Intermède inutile",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 462053,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 462053,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4E80B6C2-2BEA-DAFB-CF06-E0B5378839C1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "seul dans ses pensées, il décline une ofre de convivialité da sa collègue... --",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/76_in.jpg"
+},
+"title": "plan 76",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 467920,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 467920,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_58E4B968-E443-1865-60FC-09B321D9F835"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille, caméra portée dont on perçoit le léger mouvement",
+"img": {
+"src": ""
+},
+"title": "Une collègue offre des gâteaux",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 469172,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 469172,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5AD26468-3425-FFD1-8BCC-B1992406E851"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "vocabulaire : spirituel, argenterie, succulent\npourquoi des noms \"français\" pour les exemples (bill...) ++",
+"img": {
+"src": ""
+},
+"title": "classe",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 480987,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 480987,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_50A09225-C685-EE57-19CF-A4091CE74649"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Les mots - Scène de classe 3 - Durée:\n- Se mettre à leur niveau : le foot\nPlans de coté\n- Racisme de Esmeralda contre le Chinois\nMise à l'écart du noir qui travaille chez lui\nLes noms de batos : je suis pas fière d'être fançaise\nDébat sur l'identité ++",
+"img": {
+"src": ""
+},
+"title": "Scène de classe 3",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 483636,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 483636,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5028593F-40F8-A790-908D-E0B5378818C0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 484000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 484000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FD3888F3-2A90-1768-B6E0-446971D8853E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "expliciter la langue française- situation d'interaction",
+"color": "10027008",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 484356,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 484356,
+"tags": null,
+"color": "10027008",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_36558848-4544-66C7-2699-22A587833C41"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Les termes que les élèves ne connaissent pas.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 484356,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 484356,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1DC1596A-ADD0-D04B-DF5E-DEDD339AAF59"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapporché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. écrit au tableau les termes que les élèves ne connaissent pas",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 488013,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 488013,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_137DEE58-CF8E-70EA-58C8-B199AA2186D9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 492400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 492400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_80FD8392-5F91-942A-6E4C-4469C90C8B17"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ++",
+"img": {
+"src": ""
+},
+"title": "Le mot condescendance",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 497896,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 497896,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1456275F-8215-C95D-3F64-B199F782850C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 503800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 503800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_ADBFDBF2-32B6-CEEB-CDFA-446A0DE1C624"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan",
+"img": {
+"src": ""
+},
+"title": "F.M. \"t'es pas sûr du tout?\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 508707,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 508707,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_416DC7EF-EEAE-BC31-A6FC-B19A3952F538"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 513000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 513000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_926435CA-B7AC-F761-75AF-446A549F0714"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "\"argenterie\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 516429,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 516429,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5ED273BB-A7DB-91C7-1FD8-B19A7F3A060E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 519400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 519400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F7446C12-D763-3535-80EA-446A6FAAB33B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule, panoramique vertical suivant le mouvement de F.M. ++",
+"img": {
+"src": ""
+},
+"title": "\"les habitants de l'Argentine\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 521988,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 521988,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B33DC6D7-1EDE-1864-8086-B19ABF7FDB03"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 525800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 525800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_488F1087-F1BB-687F-F59D-446AB19DD870"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule ++",
+"img": {
+"src": ""
+},
+"title": "F.M. insiste pour que Damien trouve le mot correct",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 527640,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 527640,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FC590AA7-6817-D502-D0FE-B19AE0B598F9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 530000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 530000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_21026975-3E6F-118B-7A0B-446AE2F9B7F0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule ++",
+"img": {
+"src": ""
+},
+"title": "F.M. insiste encore",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 531563,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 531563,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_401B8F71-6970-CDAF-28FE-B19B2345810B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 534000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 534000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_885B3891-F3F2-EB64-CD8F-446B3D3A6DF3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. pose une question à Henriette",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 544227,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 544227,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_78E02589-8756-0928-3FFF-B19B6A756C53"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 545800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 545800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1B58636F-7CE2-91E2-8B95-446BFF27668A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "un mot dans le texte que tu n'as pas compris - désormais - \"le soufflage\"",
+"color": "10027008",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 549688,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 549688,
+"tags": null,
+"color": "10027008",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CD8A8A75-D9A0-D80F-A9BC-22A6A32A6462"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Silence avant le soufflage ++",
+"img": {
+"src": ""
+},
+"title": "Henriette n'a rien à dire",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 550200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 550200,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0B359655-BF1A-3CBC-18A5-03EA92A4FC43"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. attend la réponse d'Henriette",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 551022,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 551022,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9EB222FF-C969-1486-93A9-B19BC0172861"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 554800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 554800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CAEAD401-BB95-8049-A716-446C681C1285"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "F.M. remercie Samantha pour le soufflage",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 557800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 557800,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_439C89AD-C75A-EFDA-2016-03ECEC9E7D86"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. laisse comprendre qu'il a entendu le soufflage de Samantha",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 558126,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 558126,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BC295305-576E-8979-6CB6-B19C5ABA9C98"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 562200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 562200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_08BE2085-BE96-9A82-BC20-446C85D68D5A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, de dos",
+"img": {
+"src": ""
+},
+"title": "F.M. écrit au tableau",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 563994,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 563994,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0A94FC20-6262-CA83-1493-B19C98A9A53C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 567000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 567000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CF39091F-779C-9BEC-4875-446CCBBDEDDA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Autrichienne : \"tout le monde ça veut dire quoi \" / On est toujours l'imbécile de quelqu'un",
+"color": "10027008",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 567710,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 567710,
+"tags": null,
+"color": "10027008",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_65134D60-84EB-FA61-D2EA-22A8E01D94D1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "Le mot \"autrichienne\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 569890,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 569890,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E2BCD50F-0E88-C3BC-2C0B-B19CF095B29D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 573800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 573800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_92826B2C-C9A8-E2D8-7E2B-446D11D2F449"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. défend Wei",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 580364,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 580364,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_17FB8D40-AAEE-3E4C-2AAB-B19D3F610B41"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 585200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 585200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F218C9C3-F8B7-65BA-2B08-446D4BE03504"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ++",
+"img": {
+"src": ""
+},
+"title": "F.M reproche à Esmeralda de se moquer de Wei",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 587160,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 587160,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6139A982-AA22-0760-5FB6-B19D6C7AC0D4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "F.M. et Esmeralda à propos du mot \"autrichienne\"",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 587200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 587200,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1E61C81B-EE93-9363-D0A4-03EF961FA40A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 591600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 591600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5C509714-9397-945A-95CA-446D723DC02D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 596426,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 596426,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_667E7E02-3144-B9C9-12FD-B19DA10C08D5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 598600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 598600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B26D2198-6949-105F-9C41-446D8C65A11A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. défend Wei",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 600750,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 600750,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_61119D62-1B72-4DA1-5623-B19DD6D124F3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 607200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 607200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_973C1D31-FA7D-0420-DD67-446DBCB4E3FC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. demande si qq'un connait un autrichien célèbre",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 610770,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 610770,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2C0D9D3E-B200-84B5-9A26-B19E2754E872"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 618400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 618400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_805FE3DC-AFB2-4F1B-687E-446E2E98E8B1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ++",
+"img": {
+"src": ""
+},
+"title": "\"Wolfang\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 621444,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 621444,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_00DEF5BE-0DBD-901D-86D5-B19E5B9EBD16"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 625000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 625000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CC648D67-AEF6-B5C7-F99D-446ED25CBD91"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, panoramique horizontal",
+"img": {
+"src": ""
+},
+"title": "Fin du discours sur l'Autriche",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 629166,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 629166,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0C9586CF-8AC5-EFF0-E528-B19E8936199B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 631600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 631600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_ED6040F1-3562-DFFC-3F45-446EF35B6F0A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, panoramique horizontal qui laisse de l'espace vers la droite du cadre : F.M. regarde vers le fond de la salle ++",
+"img": {
+"src": ""
+},
+"title": "F.M. demande à Souleymane de noter les mots",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 635652,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 635652,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_44E78D02-12D6-3534-81ED-B1A506698877"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 639200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 639200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0EC82738-D0D8-C726-582E-446F6E80F9B9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule, la caméra bouge sensiblement --",
+"img": {
+"src": ""
+},
+"title": "F.M. gêné par le comportement de Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 643374,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 643374,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4BE857D3-5CBC-411E-8F3E-B1A52CF02237"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Dans cette séquence, F.M. refuse d'affronter directement le problème face à l'arrogance de Souleymane. --",
+"img": {
+"src": ""
+},
+"title": "Souleymane refuse de prendre des notes.",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 645462,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 645462,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F4A991C9-BB4B-BE2C-DE7F-FD99A31DA797"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 646400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 646400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6B9C273D-850F-EA7A-BD35-446F9AD98B85"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule --",
+"img": {
+"src": ""
+},
+"title": "F.M. commente le comportement de Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 648624,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 648624,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CD9FE0A8-0FB4-6A30-3202-B1A63A49298A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Souleymane n'a pas ses affaires",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 649882,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 649882,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_806ACB91-0F52-0BDE-E55C-DEDE284782B1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 652200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 652200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4724D515-5DC6-4532-49B8-446FF735968C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 664377,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 664377,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_18B54811-1168-9BE8-1AD0-FE7338180179"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. reprend le cours",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 664377,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 664377,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D5A204CA-F206-2535-03D5-B1A6D5F96828"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "le succulent cheeseburger",
+"color": "10027008",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 664582,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 664582,
+"tags": null,
+"color": "10027008",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EB944718-6962-10F6-75EE-22AC075F508A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 668000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 668000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F2F7AFC1-8765-F2A6-0CAB-447052C0048C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille --",
+"img": {
+"src": ""
+},
+"title": "F.M. commente la blague de Boubacar",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 676423,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 676423,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_357B0A5C-3C5C-1BA3-DA7D-B1A749E50618"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 676423,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 676423,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D867AFE9-FAAB-50E3-D466-FE73381AC759"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 678400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 678400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_87CB16B8-AFD8-D3DD-047F-447139BD9825"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 680438,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 680438,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0D02410F-587C-AD97-05F7-FE73381B0573"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine de dos",
+"img": {
+"src": ""
+},
+"title": "F.M. écrit un exemple au tableau",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 680438,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 680438,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_65BD689D-6BFE-EF45-44EE-B1A7D0CF96D0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 693000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 693000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4A960972-9033-BB7C-E3F5-4471A964AA32"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille ++",
+"img": {
+"src": ""
+},
+"title": "réplique d'un élève",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 693410,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 693410,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D1509B95-2E58-A2FF-F7C5-B1A902A11DFF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 693410,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 693410,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2C468D7E-86F7-7B1D-ACE5-FE73381DEEAA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 699897,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 699897,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_98E3FF4F-57A2-4CAD-3CBA-FE73381EC2E8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule --",
+"img": {
+"src": ""
+},
+"title": "\"cheeseburgers\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 699897,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 699897,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E3413473-31BB-39AE-D7D4-B1A978861AB9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 705400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 705400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_422811BA-4F87-527E-82D6-4471F937B7C6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 707310,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 707310,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5F71A3B7-D00E-D83B-FA81-FE73381F32F5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. insiste sur le mot \"succulent\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 707310,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 707310,
+"tags": [
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "1592f7a0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_192BF4DD-4766-9F09-6153-B1A9F4AF3F0A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "la puce à l'oreille",
+"color": "10027008",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 710764,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 710764,
+"tags": null,
+"color": "10027008",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_788AA985-DDD3-6DA0-14E0-22AC9F339A23"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 714200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 714200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_74B64020-A6EB-34DD-BBAA-44724F6322C3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Type de moment où les cours de français (et les cours en général) ont une plus-value forte (interaction d'apprentissage peu probables ailleurs) mais ne se déroule que trop rarement compte tenu de la peur d'être dévalorisé en public, y compris dans les groupes \"avec confiance\"... d'ailleurs dans la séquence suivante on revient sur une discussion \"classique\" sur les \"origines et sentiment d'appartenance\" pas inintéressante mais qui prend très souvent le pas sur le temps consacré aux moments d'apprentissage (comme le \"brouhaha de début de cours\", les \"plaintes contre l'administration\", etc.) --",
+"img": {
+"src": ""
+},
+"title": "\"puce à l'oreille\"",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 714533,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 714533,
+"tags": [
+{
+"id-ref": "15982e32-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2A405369-CAAE-8F42-FD73-B7396AA08F1B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 722985,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 722985,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2B03E348-35B8-C98D-3FC2-FE7338214744"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule, panoramique qui suit ses mouvements",
+"img": {
+"src": ""
+},
+"title": "F.M. insiste sur la définition du mot",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 723290,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 723290,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_047732A7-2751-167E-D1FA-B1AB1C15AE8F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "des bill",
+"color": "6749952",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 731612,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 731612,
+"tags": null,
+"color": "6749952",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3DFF886F-19ED-2BA1-C681-31D6A93AC0CB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "10040166",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 731612,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 731612,
+"tags": null,
+"color": "10040166",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CD41382D-7624-399F-4D1C-31D79A8CFDAA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "des noms de Bill, des noms de babtou",
+"color": "10027008",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 732167,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 732167,
+"tags": null,
+"color": "10027008",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_177B7CF1-1092-186C-50D4-22B1280CA0FA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 733400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 733400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_45F7B9D5-5351-9600-692A-4472B297EEA2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule, la caméra panoramique pour suivre le mouvement de F.M. --",
+"img": {
+"src": ""
+},
+"title": "Critique du choix des noms",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 737579,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 737579,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D1DD54FA-7D64-0786-6839-B1AB910B68B0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 737579,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 737579,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BA7920E0-9824-47D3-49CD-FE733822C915"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 744000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 744000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BDBC6B81-6B8A-60A8-E9BE-447312E08704"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Koumba et Esmeralda suggèrent à l'enseignant d'utilser un autre prénom pour l'exemple de vocabulaire.",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 748844,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 748844,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D2FFC36F-98B5-32F6-7969-FD9C42A5E3D9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 749625,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 749625,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_06DD9667-AFBF-03F3-99AF-FE733824A9B4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. demande à Esmeralda de répéter",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 749625,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 749625,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B3B7D792-C787-48E1-8D84-B1AC04B69A21"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 751800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 751800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8F0DED6D-442E-CF6E-EA3B-447374AFF655"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 752713,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 752713,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FDF3AFE3-5A10-33E0-75C9-FE7338251C10"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. insiste",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 752713,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 752713,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_89F16A7F-48EF-F9AE-DAA4-B1AC4180106B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 756000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 756000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_120CD4D7-2A4D-1BF1-CA9E-4473D0C0A630"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule --",
+"img": {
+"src": ""
+},
+"title": "identité nationale",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 760744,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 760744,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D199CB09-6435-0720-4F80-B1ACA589A537"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 760744,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 760744,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BFABF029-624F-691D-942E-FE7338269E16"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 763600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 763600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2E029A89-428C-2A13-CA9D-4473FF888851"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 768466,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 768466,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F48EAC0B-488F-3AAE-CF17-FE7338290744"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule ++",
+"img": {
+"src": ""
+},
+"title": "Le problème des origines ethniques",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 768466,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 768466,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_47645999-C751-B2EA-E512-B1ACFABE8D6E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6749952",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 770528,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 770528,
+"tags": null,
+"color": "6749952",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E584DF7B-EF77-2F06-759D-31D7E3F78B03"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 774400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 774400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D01CD6B1-EF2C-3EB8-D570-44746726F094"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "salut",
+"color": "26112",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 778311,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 778311,
+"tags": null,
+"color": "26112",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9F922AD7-5162-4579-D412-31D80B6D941F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/157_in.jpg"
+},
+"title": "plan 157",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 788400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 788400,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2F0B50FD-7CA9-D48C-62FE-AD6D0A8A3210"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "François Marn discute avec un collègue le programme de littérature.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 788487,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 788487,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3243D50A-3271-AF34-3073-DEDFFD94FAE3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Discussion avec le prof d'histoire",
+"img": {
+"src": ""
+},
+"title": "Salle des profs",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 788857,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 788857,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1EC90D1B-A0C4-CFB9-E1B4-E0B5378895BF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Panoramique qui suit F.M. entrant dans la salle des profs et allant vers son casier",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 789469,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 789469,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6D68BE46-492E-66B8-6B93-B1AE9BCC4D32"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "salle des profs",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 789558,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 789558,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_29DA1420-2E26-BD49-3BC4-A40914C93292"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "A la boîte aux lettres",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 790164,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 790164,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3858D751-F1C9-F789-04E3-7976356980A1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "le casier",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 795245,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 795245,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F93F42BB-D56E-623E-FC30-22B3AA6473CC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "avec le prof d'histoire : faire des ponts avec l'ancien régime",
+"color": "26112",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 809443,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 809443,
+"tags": null,
+"color": "26112",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_252A7F60-972F-7CD4-83C5-31D9083224ED"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. relit ses notes et un collègue s'approche de lui",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 810000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 810000,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7E65DBF9-A441-BA37-A037-04051EF8115F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Une négo sans y toucher, qui se passe fort mal. Les deux personnages se heurteront par la suite (au conseil d'établissement, sur la notion de règle). Ils sont visiblement en désaccord sur le fond du métier, moins sans doute sur les exigences que sur les méthodes. --",
+"img": {
+"src": ""
+},
+"title": "Négociation entre profs",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 812221,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 812221,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C6772642-4D85-6547-6F4F-0ECF6A337562"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 814859,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 814859,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2F2617C8-AD77-F2EB-A626-7CBE098F750E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "Dialogue à propos des lectures de français",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 821000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 821000,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8D7B31B6-20EC-F2DB-DA6D-0405C6C246B4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Contrechamp",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 824170,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 824170,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E81B454C-EC8B-E720-DCEB-0406671C2E9B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 827360,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 827360,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5941135E-CE3A-991F-C06A-0406E48DC9E0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Lumières?",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 837800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 837800,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_128AD5FF-6CF4-6F54-6390-040746AF5269"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Voltaire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 842200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 842200,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1DB8574C-6B70-D2EF-80D5-0407624086F0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "\"on rame, quoi\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 849200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 849200,
+"tags": [
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159833b4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5B381B06-07BC-B843-578A-04078558C110"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 855670,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 855670,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_61B4D6E6-EEC9-598D-6643-7CBEAA331A25"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "L'imparfait de l'indicatif",
+"color": "16737843",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 856071,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 856071,
+"tags": null,
+"color": "16737843",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FFDBF634-7435-1371-D850-DEE2E3992BAE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/166_in.jpg"
+},
+"title": "plan 166",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 858070,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 858070,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C4B1D7DC-BAD1-CB74-0154-AD707B86B1A7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/165_in.jpg"
+},
+"title": "Cour 1",
+"color": "65535",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 858360,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 858360,
+"tags": null,
+"color": "65535",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_65890897-7D12-FB03-D234-E6034E958CBF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "On est dans l'univers de la prison (plongée). Très lourd. --",
+"img": {
+"src": ""
+},
+"title": "La Cour 1",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 858665,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 858665,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D78C8FCD-A863-9E91-7B5A-0ED7B7EFB5B4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "point de vue de F.M.",
+"img": {
+"src": ""
+},
+"title": "Plan d'ensemble",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 858800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 858800,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4E45A121-BFF5-7B62-B2E7-FE16DD9080B2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "vue de la classe\nici point de vue clairement mis en scène, ensuite, cour vue d'en haut, mais point de vue absent. --",
+"img": {
+"src": ""
+},
+"title": "cours",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 859495,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 859495,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FA2DC78E-A278-339D-A909-A40F650F0474"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "- imparfait, imparfait du subjonctif\n- stylo qui fuit\n- imparfait pour snobs, homosexuels\n- souleimane interroge prof sur homosexualité\n--",
+"img": {
+"src": ""
+},
+"title": "classe",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 866189,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 866189,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_38333E0F-9CCC-5FD3-24D3-A409075CFEE5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Le silence pendant un devoir sur table",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 866600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 866600,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6BD7BBA8-0A1C-A066-F84E-040F7B6280B4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/166_in.jpg"
+},
+"title": "plan 166",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 866760,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 866760,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D6CB4C3F-26D0-B1C1-379E-AD72285B6071"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plongée vers la cour de récréation - Silence - Devoir sur table - Scène de classe 4 - Durée:\nREGLE DE VIE : On demande pour se lever\nMots inappropriés : Pédophile\nL'imparfait du subjonctif\nEsmeralda (la politique) : c'est pour les bourgeois\nMots incompris : Snob\nQuestion piège : le prof ne sait pas répondre aux conditions de changement de langage --",
+"img": {
+"src": ""
+},
+"title": "Scène de classe 4",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 866837,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 866837,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F8E663F9-6D49-AF65-42F3-E0B5378833B7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché potrine",
+"img": {
+"src": ""
+},
+"title": "F.M. regarde dans la cour avec une attention particulière?",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 866995,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 866995,
+"tags": [
+{
+"id-ref": "159ab436-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab436-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E4F7C2E9-F068-9D13-3970-B1AFA265506B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "??",
+"img": {
+"src": ""
+},
+"title": "A l'extérieur, la cour, à l'intérieur, la figure de F.M. englobée par la masse d'élèves.Ces deux plans montreraient-ils la sensation de F.M. d'être pris dans un espace fermé ?",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 869540,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 869540,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_254278E5-A271-4756-7291-040B9A1347FA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M., plan moyen ­ sur le fond du plan",
+"img": {
+"src": ""
+},
+"title": "F.M. et les élèves qui travaillent",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 869800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 869800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3BF1CC3D-97A9-BE58-E5BD-040AE2A7C6E6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 878599,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 878599,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5D889A2E-993A-C485-12A7-22B5A7D2D5DA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 884600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 884600,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DE453ED5-3295-7E69-D129-B1B055E89C62"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "ecrire",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 887611,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 887611,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CD6B10B1-F941-F252-D122-22B5D07128C1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 888400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 888400,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0EF6D3FE-4528-0708-7F0C-FE17EC9E6541"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Les élèves demandent encore du temps",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 891704,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 891704,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6093F9CE-9782-4906-D229-B1B0C58098A5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen",
+"img": {
+"src": ""
+},
+"title": "\"Tu peux me demander directement\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 901588,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 901588,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_98A7E226-D2D1-835A-CA14-B1B148D3CD49"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. sourit",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 907457,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 907457,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_50F4BF96-6FEC-D68F-EC9C-B1B2559209A4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 909106,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 909106,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_64E5E3E5-F63D-4ECA-BE86-4477AC538053"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. demande à la classe de donner un mouchoir",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 911000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 911000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_574DFDFA-62E3-156E-360B-B1B2C3645252"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 911000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 911000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DECAC0F7-EB88-438E-FBF7-FE73382AD5F0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 913730,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 913730,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_65CFBEF2-AC86-99CA-DB2F-4477D579F052"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 915600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 915600,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_800A6F04-F149-FA30-E0F4-FE73382C99BB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. dit à Rabat de s'arrêter",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 915600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 915600,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_846396EB-3A67-3B76-D3FC-B1B3276632A4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 915968,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 915968,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1AA1C7FB-F29D-4369-9E2C-FDA260652063"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 917913,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 917913,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_28BA17F8-3535-1B51-4E09-44785BA46D56"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Mot inapproprié --",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/189_in.jpg"
+},
+"title": "Espèce de pédophile",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 932170,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 932170,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_583BB7D9-399D-2B03-7497-0F3243D8CCDC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "c'est abusé - superposition des situations dans la classe --",
+"img": {
+"src": ""
+},
+"title": "l'imparfait de l'indicatif et du subjonctif",
+"color": "10027008",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 938299,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 938299,
+"tags": null,
+"color": "10027008",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0F719C61-28E5-4A64-658B-22B7F55959F7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 943800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 943800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1E0DD717-B7EF-2F92-550B-FE73382D3DD7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "L'imparfait",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 943800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 943800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FA2AAEAC-5200-A6C7-2380-B1B3D24022D0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 947197,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 947197,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0B09CCAC-9BE5-0711-7F74-447908B0C340"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. retourne la question à Esmeralda",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 951000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 951000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_ECCDC9A7-56CE-6D6F-76EC-B1B42E81904D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 951000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 951000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5F1C0A26-3DFC-51F7-CF77-FE73382F2E69"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Esmeralda retorque à l'enseignant qu'elle veut une réponse.",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 951857,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 951857,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B9CBCC1B-6AFE-1F5E-2562-FDA361615C2E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 955123,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 955123,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3B2E033D-E278-84AC-21BE-44793C2E45CF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 958000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 958000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1BF16CB5-6E61-6B87-89F1-FE733830C5FF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapprochè épaule",
+"img": {
+"src": ""
+},
+"title": "\"pourquoi est-ce qu'on précise imparfait de l'indicatif?\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 958000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 958000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5F8EE70F-C704-5B78-1A10-B1B47808D317"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Nassim arrive à sortir de la salle.",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 965248,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 965248,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_20EF48D1-871C-69EB-CAE9-FDA5587F63F7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 965471,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 965471,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EA575640-46AB-D829-6C6C-447977684B82"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "\"va te laver les mains\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 967600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 967600,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0820C4B5-E5EB-1461-46FD-B1B4B092A3AF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 970095,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 970095,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CC39FD19-F832-4A00-3A5D-4479AFBD215A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 974200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 974200,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9517DE93-5A6C-F127-1BAA-FE733831DD60"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule, en premier plan le bras d'un élève",
+"img": {
+"src": ""
+},
+"title": "Nassim sort de la salle",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 974200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 974200,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E848ED9F-6A8C-9C44-E044-B1B4F260217E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "La discussion tourne au désavantage du prof, qui montre à la fois qu'il est un extra-terrestre (il utilise l'ipf du sub avec ses copains) et que c'est réservé à des gens bizarres (\"bourgeois\"). Disqualification de ce qu'il enseigne (idem que la séquence sur l'Autriche). On voit aussi toute la difficulté à faire passer la notion de contrat de communication à des élèves qui ne sont pas convaincus. --",
+"img": {
+"src": ""
+},
+"title": "L'Imparfait du subjonctif",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 977761,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 977761,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B35227ED-8CD3-3325-3F54-0ED261C8B1A9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 979342,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 979342,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_323278BC-37A4-563D-DB27-447A21CC10EE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 983600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 983600,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AA084AE8-6D20-FDDA-0BF9-FE7338336D20"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "plan rapproché épaule ==",
+"img": {
+"src": ""
+},
+"title": "\"de quel imparfait il faut le distinguer?\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 983600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 983600,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FA82ACCD-2F1D-632E-9950-B1B54264B198"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 987048,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 987048,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8D55D30C-1F35-1ADC-9DFB-447A4FC57267"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 990800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 990800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6312CE39-6C8C-A84F-85B8-FE733834114E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "F.M. félicite un élève",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 990800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 990800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C7D1EAA9-6BED-C2A7-4A63-B1B5C40906BC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 995635,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 995635,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B31EC525-F7B3-AE0F-9C29-447AF18A701D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "10027008",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 995789,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 995789,
+"tags": null,
+"color": "10027008",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_692D40E7-3A35-9792-60A8-28689822E165"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 997600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 997600,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_14FAD290-17B0-CC95-9C21-FE7338361B27"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "F.M. donne la parole à Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 997600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 997600,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_93BBA7CC-F1CF-CF20-4E66-B1B5F757A025"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6749952",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 997848,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 997848,
+"tags": null,
+"color": "6749952",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D8D27B6B-48A0-5B05-55D8-2DB29B4D234F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1000259,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1000259,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B963E726-067C-B774-8CEA-447B1DFB0AB0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "10027008",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1001008,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1001008,
+"tags": null,
+"color": "10027008",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_04E373E5-16DC-7D60-56B3-22BBF8B1256F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1004000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1004000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B78F0DBA-6E5A-A5EA-9615-FE7338376DB7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule ==",
+"img": {
+"src": ""
+},
+"title": "\"oui, je le crois aussi\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1004000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1004000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1FF74395-0D48-35EC-0A67-B1B62C67250A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1005323,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1005323,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FD9B2F67-4128-7B28-02A8-447B5A9AD635"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1007600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1007600,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_27C92225-A8F3-A2F3-F9FC-FE7338396A1F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché pooitrine, panoramique horizontale ==",
+"img": {
+"src": ""
+},
+"title": "\"du verbe 'fusser'\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1007600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1007600,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5946A245-F49C-BB29-55C7-B1B68C93FF6B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1010167,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1010167,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D6D095C0-5294-CCAF-3552-447BC163ABF7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché potrine ==",
+"img": {
+"src": ""
+},
+"title": "\"C'est pas si bête\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1014800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1014800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3FE29CCB-C1EA-8EE1-5AC1-B1B6C197D5C1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1014800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1014800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C12E53AC-A180-1038-5933-FE73383AEAC9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1018093,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1018093,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FAB48BAF-6C32-3D1F-F142-447C346D07E2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, la caméra suit son mouvement ==",
+"img": {
+"src": ""
+},
+"title": "F.M. écrit au tableau un exemple pour le présent du subjonctif",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1022800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1022800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9A9B570C-984C-A114-12A0-B1B7516E98E8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Le subjonctif",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1022800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1022800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2B9D0B32-3CC4-8CF1-F82A-FE73383BA04B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1039010,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1039010,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_053FCA98-236E-AE70-E756-447C8EA345C9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "imparfait du subjonctif",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1044000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1044000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_10FDBABF-0DF7-413F-AC7B-FE73383DD7CE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "imparfait du subjonctif",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1044000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1044000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C906A69F-AE67-1F00-19BB-B1B80DF88492"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Les mots surprise ??",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/219_in.jpg"
+},
+"title": "Il fallut que je sois fusse",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1053661,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1053661,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0C158D8F-01BE-9933-3E2F-0F362CA6E983"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1055083,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1055083,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_49683501-4E61-FFE4-AFD4-447CC65F7685"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1060000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1060000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D3B2A1FF-CD53-65AE-1895-FE73383E69CE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapprochè poitrine, panoramique horizontal ==",
+"img": {
+"src": ""
+},
+"title": "F.M. corrige Esmeralda",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1060000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1060000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_25AA2243-D886-4868-F77D-B1B884D54566"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1064330,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1064330,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_16F066A2-F2B5-6AD7-A6AC-447D19C57FEB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapprochè poitrine ==",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute Esmeralda",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1066800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1066800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6329D7C8-34A9-7F7E-7D15-B1B8F9C60B9F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1066800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1066800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_06FA23D6-3A24-0CEE-2674-FE733841A77F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1070275,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1070275,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_429C4C18-CC18-6087-384A-447D6B57C103"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1073000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1073000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_244B6412-8200-053F-52D0-FE73384289E7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "\"Si je peux me permettre de répondre\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1073000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1073000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E834A113-0E3A-B2A5-BF70-B1B93C6CB984"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1077321,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1077321,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_ED358D9F-2B69-7A6C-65C5-447DA389BD2F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1079600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1079600,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_439E31BB-9555-B67D-B20A-FE7338448109"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "\"La première chose que je constate c'est qu'avant même de maîtriser un savoir...\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1079600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1079600,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A0862C8F-E806-D584-6A72-B1B9A461B309"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1094274,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1094274,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_626502E8-566F-3CC0-E1BB-447E15270E6E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1106000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1106000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_15498C95-3677-E488-B627-FE733845299F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "\"Mais non c'est pas dans le Moyen Age\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1106000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1106000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_99DDB663-E260-AA54-A29B-B1BA0848A679"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Les mots sociaux ??",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/230_in.jpg"
+},
+"title": "C'est les bourgeois: les mots définissent le social",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1107979,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1107979,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BE622B2D-11D2-E7C8-29F7-0F37DA43E6D7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1108365,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1108365,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_89655689-914E-CB0D-0A1E-447EF2583F08"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1116400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1116400,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4E3454B7-F171-25FF-DEF6-FE733846439A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "PLan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. répond ò la question des élèves",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1116400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1116400,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_06D9482F-9FA1-64B0-BF0C-B1BA710D10E1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1118493,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1118493,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DEFA7BF4-2271-06BD-C6A0-447F3D581F01"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "Les élèves lèvent un peu trop la voix",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1122000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1122000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B9E0E56C-F74F-6344-B1D0-B1BAD0549360"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1122000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1122000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_476F7C14-9CEC-BE47-C069-FE733848F5C3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1130603,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1130603,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8CFBC7A2-9C93-FF63-3F24-447F87E84DE8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "Les personnes qui parlent comme ça sont rares",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1133400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1133400,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AE3CE20C-69FB-46EE-986C-B1BB2AA9284A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1133400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1133400,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EF308B15-2C48-7484-3BA2-FE733849918C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "justification du prof - son usage de la langue - son regard sur le français -  sa compétence. Il est questionné en permanence ; il est le lieu du questionnement de ces jeunes : entre confiance et répulsion. Violence sourde dans l'explicite et l'implicite de l'énonciation / de l'énoncé. ??\nQuestion trop chaude / Expression de l'homophobie : les autres.",
+"img": {
+"src": ""
+},
+"title": "le prof face aux élèves",
+"color": "3342387",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1142229,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1142229,
+"tags": null,
+"color": "3342387",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F0FDD343-7F92-DA44-6DB1-286D0B58A148"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1146456,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1146456,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_38E0A76E-5FEE-0D90-2B5D-447FD6907234"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "\"des gens maniérés, un peu précieux\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1151200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1151200,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_81B196CD-CB69-28EA-45EB-B1BB751BAFD6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1151200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1151200,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_908D15A7-6AC7-B37B-AE2F-FE73384BEEA9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Mots inappropriés --",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/241_in.jpg"
+},
+"title": "les homosexuels",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1157139,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1157139,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B6856125-CD5C-A763-18D8-0F393B83689F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1157905,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1157905,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_966E8594-BBA4-6F0A-EE6D-44801EDC4C36"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1158800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1158800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FA423307-6465-41AD-304E-FE73384CC806"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule, mouvement panoramique de la caméra qui suit le mouvement du prof et sort de l'espace du tableau",
+"img": {
+"src": ""
+},
+"title": "\"non, pas les homosexuels\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1158800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1158800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9E826465-FCA9-DA97-99A4-B1BBAB95392D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1163409,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1163409,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CCC2691F-8266-D824-E503-448085D29E09"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "\"mesurer le fait qu'il y a plusieurs registres\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1170200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1170200,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CE1C4664-770F-3846-4C6E-B1BC1D98935E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1170200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1170200,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_698D05B0-9EF2-EFCB-29B1-FE73384E7901"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1183005,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1183005,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E04EACB5-045B-BE0F-663E-4480D2DC5F88"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1189000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1189000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2D340869-49DE-0590-2974-FE73384F0C19"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "\"et tout   maîtriser\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1189000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1189000,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F1978C94-8CCD-BBE6-F1B4-B1BC597760BC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1191372,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1191372,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6784DACC-D0C0-A15F-96CB-44817C3A532C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "L'enseignant est obligé de répondre que certaines fois il faut se servir de l'intuition.",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1194508,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1194508,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_749F3CBA-79BA-A577-1960-FDA9A57CF919"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule, mouvement panoramique de la caméra, qui laisse bcp d'espace sur la droite du cadre ==",
+"img": {
+"src": ""
+},
+"title": "intuition (se servir de l')",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1196400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1196400,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_42A083CB-A35C-DB2D-591C-B1BCE67887CB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "intuition (se servir de l')",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1196400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1196400,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FAD4D313-FA0C-EF6D-81A8-FE733850505E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "C'est quoi l'intuition?",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1197031,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1197031,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DEEA395D-11C7-A847-8955-7DF8E9567D22"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1210087,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1210087,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_633377AE-F0DD-6D2A-B368-4481D212EEE8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "sentir les choses/se servir de la raison",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1214800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1214800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9B2FDC6E-0BA9-4E5E-75A7-B1BD8C4D893A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "sentir les choses/se servir de la raison",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1214800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1214800,
+"tags": [
+{
+"id-ref": "159ab9a4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7347A1AA-C5CA-902D-3BE4-FE7338521CA8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "encore sur l'intuition.",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1223380,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1223380,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CE1956F7-3FEA-A366-897D-FDAB00F46641"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1223958,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1223958,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_80F10BD6-7165-B412-09E6-44827564238B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "apprentissage de l'intuition",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1226200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1226200,
+"tags": [
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9B615E08-7E9B-4F36-E5CD-FE733853C7BC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "apprentissage de l'intuition",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1226200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1226200,
+"tags": [
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6D1EE768-3579-FDB5-9E22-B1BE3D651EBD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "François Marin, à la question sur son homosexualité supposée, est dans une double attitude:\n- il prend la question au sérieux, il questionne lui-même sur les raisons de la question, et finit par répondre\n- il sanctionne à la fin: maintenant que Suleman a réglé ses problèmes psychologiques, on va pouvoir continuer.\nForme de contradiction interne, de dialogue interne. Le professeur est lui aussi un \"paquet de contradictions\". Il entretient le dialogue entre elles dans sa relation avec les élèves. ??",
+"img": {
+"src": ""
+},
+"title": "Questionnement sur l'homosexualité supposée du prof.",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1238719,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1238719,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1B4596FF-9E26-BC5D-9B6B-7DF5DD3FB058"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1239590,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1239590,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_125079CF-F6C9-DD5C-E3E7-4482D5879A29"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Aboubakar veut provoquer Suleiman. Suleiman refuse. Le prof se met du côté du provocateur. A-t-il raison ??",
+"img": {
+"src": ""
+},
+"title": "Le prof se range du côté du plus lourd",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1241194,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1241194,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0FB0A862-508C-7E41-0EC5-0ED52F02EE8A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Souleymane veut savoir si F.M. est homosexuel.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1241304,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1241304,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B7C4809A-2425-633D-766E-DEE3C3C649B0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, panoramique horizontale",
+"img": {
+"src": ""
+},
+"title": "Souleymane et Boubacar attirent l'attention de F.M.",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1245800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1245800,
+"tags": [
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EBEEAE3F-E1D8-22D1-DBE2-B1BEC4158008"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1245800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1245800,
+"tags": [
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7F7F9135-A8D5-2B79-4D19-FE73385500CB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1250159,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1250159,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B4766647-5A67-B68A-31E0-4482F303310E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. regarde les 2 élèves",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1251000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1251000,
+"tags": [
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_30ECC431-5151-4186-95DA-B1BEEB30BFBB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1252801,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1252801,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_84B767D5-9A7B-252B-E771-448323E085A2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. demande à Souleymane ce qu'il a",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1255000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1255000,
+"tags": [
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0310C00B-C3EE-3D05-07CA-B1BF1D5E4E2E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1258966,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1258966,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_87CA990A-E43D-DE44-F0A1-44835BA71A73"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. ne comprend pas",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1260600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1260600,
+"tags": [
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3B2E14F7-D2B7-38EC-0BB7-B1BF59520A0E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1262048,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1262048,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2E3A628C-E7B7-1910-AC1E-4483B7D54573"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. veut savoir ce que s. a à dire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1263000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1263000,
+"tags": [
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AA5BEE48-01A5-862E-B74E-B1BF8ADB0B14"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "les mots ghettos ==",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/265_in.jpg"
+},
+"title": "Chez Guantanamo",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1266868,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1266868,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_09E69E98-D6C1-9841-0873-0F3EEF58880F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1267112,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1267112,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BA6B8867-1424-2EBC-F988-448418D4CB3E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taile",
+"img": {
+"src": ""
+},
+"title": "\"Guantanamo\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1269200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1269200,
+"tags": [
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4765BFE2-5FE9-C55E-0061-B1BFB6DF0F6E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1271736,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1271736,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_77E8C2E2-A4B3-1949-3B91-44845541FE14"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. rassure Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1273400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1273400,
+"tags": [
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DC26F32C-856E-E4C0-F200-B1BFF527F909"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1274818,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1274818,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_66D37A50-9623-21FA-E48C-44847FD0F70D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "PLan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. invite Souleymane à poser sa question",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1277210,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1277210,
+"tags": [
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E81950F1-D68A-43CF-48D2-B1C0387F00CB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Argot:\"c'est chaud\", \"vous pouvez pas comprendre\" ??",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/271_in.jpg"
+},
+"title": "C'est \"Fisher\" pour vous",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1278200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1278200,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DA9C3CFF-4792-52FE-0B69-0F403450F118"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1278341,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1278341,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_85B3777E-12E3-6978-3B05-4484F343D3C6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1281400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1281400,
+"tags": [
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0BA75411-BB09-B315-B0E4-B1C05E62397D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1283625,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1283625,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3410B99D-91ED-6A5E-E391-448564E34C1F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Vous êtes homosexuel (première agression de Souleimane) --",
+"img": {
+"src": ""
+},
+"title": "Première agression",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 1289274,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1289274,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_601F484D-59B6-EBCB-0858-E0B53788FC39"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Les élèves ont posé une question qui les troublait",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1294200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1294200,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6D817E26-FCB7-56A5-C24E-042DE0450041"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. entouré par les élèves : touché dans sa sphère privée ++",
+"img": {
+"src": ""
+},
+"title": "homosexuel?",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1294600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1294600,
+"tags": [
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "159fcf20-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5E5AA26C-C1B7-E51A-DC66-B1C0E27728BB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. regarde Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1302400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1302400,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E4EC19EB-61B7-81F9-AC7D-B1C146A68B3B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1306083,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1306083,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_240912DC-68A5-4272-3B5F-4485D9B7B286"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapprochè épaule",
+"img": {
+"src": ""
+},
+"title": "\"Mais alors pourquoi tu me poses la question?\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1308200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1308200,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7391A3AE-7070-E625-7DCB-B1C17C644B94"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1311147,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1311147,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D9F590CD-E055-ABA7-CDE8-448619A81639"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "F.M. provoque S.",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1312800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1312800,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_933F4820-8834-798C-0732-B1C1A5EF3E56"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1316432,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1316432,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FE8AA8BA-43BA-0482-EFC2-4486686AE514"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1318600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1318600,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_76EC3B2C-8228-BFB4-3C64-B1C1C9E01909"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "François Marin répond à la question sur son homosexualité.",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1320386,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1320386,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_61B03D6A-30F3-0D58-68B6-FDADA4D22FEB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1320395,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1320395,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_951B7163-6C62-E885-40AE-448689E51F43"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "\"ça va pas de soi pour toi\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1323800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1323800,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DAFC9552-8FE3-FA97-62E3-B1C1F66AAE64"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1326780,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1326780,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4FD12CC3-FBCF-83AF-AC8B-4486C6B992C6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "\"des hommes qui aiment des hommes\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1328600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1328600,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BD2B4303-0D1F-2455-7918-B1C256904B5B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1329202,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1329202,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_66DD0402-7170-BCA8-F8D2-448758EB5964"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1334200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1334200,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_22EA4A85-9AF0-90F6-9EC5-B1C2C9DBF9A0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1335587,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1335587,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3C1A7044-F477-A0A7-0BF0-4487AC3A2A09"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "\"je suis désolé de te décevoir\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1339000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1339000,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4CA936A9-0EF4-A184-409C-B1C2FAC022AC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1342853,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1342853,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0F461C92-95E9-49A1-D066-4487E1DDE3A2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapporché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. retrourne au sujet de son cours et  gagne son bureau",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1344920,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1344920,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3BF70A05-FEA2-DE76-2895-B1C31CEB8932"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1347697,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1347697,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DF4F1192-93D1-8691-A858-4489387D8818"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "echanges entre élèves notamment autour du mobile ??",
+"img": {
+"src": ""
+},
+"title": "dans la cour",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1350172,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1350172,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_15A86728-4200-C7D3-07E9-287558013990"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1350844,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1350844,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F69A31D6-C3BD-9501-7768-7CC289EE23B9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plongée cour de récréation, son distant - Signification de ces plongées : rythme, réflexion ==",
+"img": {
+"src": ""
+},
+"title": "Cour 2",
+"color": "65535",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 1350959,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1350959,
+"tags": null,
+"color": "65535",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3C4014D6-0791-3440-A490-E0B53788C24B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/298_in.jpg"
+},
+"title": "plan 298",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1352080,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1352080,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F4CF55B9-1A2D-0558-24F7-AD773B101B0E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Plan d'ensemble, plongée, les élèves dans la cour.",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1352200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1352200,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_08D7F7D9-1660-9180-6CA6-FE252D239B5D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "cours",
+"color": "65535",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1352254,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1352254,
+"tags": null,
+"color": "65535",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2C6CDEBC-A8A7-10DF-E69E-A408FB56E031"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Même remarque que Cour 1",
+"img": {
+"src": ""
+},
+"title": "La Cour 2",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1352411,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1352411,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C0762B42-CFFC-0739-D299-0ED9083CA60B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Les élèves dans la cour",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1352818,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1352818,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_63B28FAD-B006-DC22-0916-DEE48D47A486"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Plan moyen, plongée, les élèves dans la cour.",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1363400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1363400,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3529AF44-5515-D091-D927-FE259FB89B26"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Plan moyen, plongée, les élèves dans la cour.",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1372600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1372600,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_ED528731-2778-452A-1AE0-FE26C9AFEE28"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "10027008",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1391176,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1391176,
+"tags": null,
+"color": "10027008",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CB7D6A74-AE80-4F0D-7D5D-2878E1B3281A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "conjugaison de croire\n\"vous charriez trop le prof ??",
+"img": {
+"src": ""
+},
+"title": "classe",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1393186,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1393186,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D24B22B4-DAC7-8C09-CD05-A408EEE292E8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Conjugaison du verbe croire - Scène de classe 5 - Durée :\nMOT d'ARGOT : Fisher (??) employé pour la deuxième fois",
+"img": {
+"src": ""
+},
+"title": "Scène de classe 5",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 1393377,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1393377,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_548E526B-7084-6502-CF81-E0B53788A801"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Conjuguer le verbe croire.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1415897,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1415897,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8FA043F7-A0C1-35FD-F961-DEE61FFDB046"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M interroge une élève",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1418600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1418600,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6A99E3BC-5A67-C849-17C3-B1C3AB74B8B8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1421235,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1421235,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D0ACF4F6-4E68-EBCB-E3B6-448A0A89DED3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M regarde le tableau",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1443000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1443000,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A9BCEE8F-9ECE-0F5B-D410-B1C451954E14"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "François Marin corrige Rabat qui prétend savoir corriger Justine.",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1445488,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1445488,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DA6D3C8B-2705-1C88-6400-FDAEFFCF6A4F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1445675,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1445675,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8D86A4E2-81E0-A778-3FD7-448AD5EF0955"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapprochè poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M demande à Rabat s'il sait mieux écrire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1447400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1447400,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CF2EEF27-0326-6BCF-788C-B1C4796B41D2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1449850,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1449850,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B82C0126-5CD1-A510-2820-448B6106D004"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. invite Rabat à corriger les fautes au tableau",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1451800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1451800,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A2693DEB-30A7-D677-1195-B1C4B676E4EF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1453400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1453400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F3FB6A68-046F-FEA2-78B9-448B958967AA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. corrige Rabat",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1455600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1455600,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_56D47315-0519-7C39-FC3C-B1C4DB3E24D3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1457000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1457000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_419C52AB-88FD-C53E-8211-448BEF9DF27D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. dit à la classe de se calment",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1460400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1460400,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_31EC10AF-EB7D-8EC9-32CB-B1C50A0E078F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1462800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1462800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A31AECD5-721C-25F9-FC79-448C20EDE50C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. corrige Rabat",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1463600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1463600,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0245FCB1-674A-EE94-60C9-B1C55F500578"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Argot mal employé (si on se réfère au sens du mot Fisher dans l'occurence précédente) --",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/333_in.jpg"
+},
+"title": "Fisher",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1464850,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1464850,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_25B9AADC-A93D-26B6-C1BF-0F435A78E7F6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1466400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1466400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CB64AA97-CFF1-E841-2B52-448C7386F537"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. pose une question à Rabat",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1470800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1470800,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4153D783-FEEA-B9E4-06F5-B1C5AEC4BAEA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1473400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1473400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_026783C7-66C0-74AC-064F-448CB54B615C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1477400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1477400,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DCA7E954-2F75-E89F-86F5-FE7338563AEE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. commente la réaction de Rabat",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1477400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1477400,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B83651C6-6CC9-1BDD-949F-B1C5F0B66D3E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1483000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1483000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B268F3EF-C05C-5C6B-B9E1-448CFBE74DDB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1489000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1489000,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2401BDAD-F2A7-CC60-CAF9-FE7338570EB5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. tente d'imposer le silence",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1489000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1489000,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4E845A14-E5C4-03B2-ECB2-B1C62CCDCBCF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1491600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1491600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1FF0FDF8-8D88-FD30-C374-448D81AD4EA4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Le prof accuse collectivement la classe, qui refuse faute d'estime de soi collective placée dans la réussite scolaire. --",
+"img": {
+"src": ""
+},
+"title": "Passage raté au méta",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1493956,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1493956,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_49BCDE23-6183-3D5E-0B36-0EDB1070ECDC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "\"des gens qui ont 13 ou 14 ans\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1500400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1500400,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5FF5730D-3FCB-595B-1471-B1C67CBBCD82"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1503800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1503800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B0306289-50CD-E639-EECC-448DDCC58E06"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1506000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1506000,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E06D27BD-9988-4865-405B-B1C8070708E4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Koumba se fait porte-parole de la classe pour accuser François Marin de \"charier trop\".",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1506794,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1506794,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_12B38C82-C0FF-8BC3-7DEA-FDB13F05A057"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1507200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1507200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_553B0EFB-A17A-2986-E1DC-448E54C3368A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Koumba accuse l'enseignant de charier trop.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1508263,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1508263,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_41561E4C-3BB1-9A1E-130A-DEE711FD798B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1513800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1513800,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4B8DDA20-2AD6-080D-BBCD-FE73385A26F7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "F.M. demande à Koumba d'être claire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1513800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1513800,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EF943CB3-BFA7-9178-64E0-B1C84CA3804D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1517400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1517400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FDBBE474-9106-179F-85F2-448E8CBD9F70"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1521600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1521600,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8E24F745-DB7B-74F8-0B33-FE73385B61E8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "\"Moi je veux bien vous foutre la paix\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1521600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1521600,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3BF968A9-8367-2A46-22DE-B1C892E80D99"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1527200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1527200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F6BB4D64-6C63-C81E-ED05-448EC07CD452"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1528800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1528800,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F8B717B6-AEB2-2FD6-A994-FE73385DCEE2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "\"exatement la raison que je viens de dire\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1528800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1528800,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_57ED1D4B-87D3-ADB2-2507-B1C8BF64E843"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Un des enseignants n'en peut plus et s'épanche auprès de ses collègues.",
+"color": "16737843",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1530791,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1530791,
+"tags": null,
+"color": "16737843",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A2E2561F-72B3-F585-A14D-DEE80276E60E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Dans cette scène, on n'assiste pas à un affrontement de François Marin avec ses élèves, mais à un exemple du désespoir que peut éprouver un enseignant face à l'indifférence de sa classe. ++",
+"img": {
+"src": ""
+},
+"title": "Enseignant qui s'épanche auprès de ses collègues.",
+"color": "10092543",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1532505,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1532505,
+"tags": null,
+"color": "10092543",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8A044047-B163-695A-6CFC-FDB1FB73F51B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Salle des profs - découragement du prof de techno (mal joué puis sensible) ++",
+"img": {
+"src": ""
+},
+"title": "Salle des profs",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 1532803,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1532803,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B56F5507-11E7-6C1E-A3B2-E0B537888107"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Le prof de techno offre ici une scène qui montre les attentes, en termes de jeux de rôles, qui régulent et rendent possible la coopération: exclusion de certains thèmes, de certaines passions trop fortes. Et ce qu'il rencontre, dans son excès, ce n'est pas la dispute, mais la défiance et le silence. ++",
+"img": {
+"src": ""
+},
+"title": "Ce sont des animaux",
+"color": "13369395",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1533000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1533000,
+"tags": null,
+"color": "13369395",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9F9F6807-AD05-929B-685E-7CC5C4F9B91E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1533600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1533600,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_71B32C4D-0EBD-2261-4208-B1C987ADA1F1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "un monologue qui sonne tout même assez faux (par rapport aux critères de jeu professionnel). Il en fait trop. Le terme \"ça\" ou \"boufons\" pour désigner les élèves semble mal choisi, la scène est trop longue et s'oppose à la vivacité des répliques qui supporte l'effet réaliste des vox, la plupart du temps... --",
+"img": {
+"src": ""
+},
+"title": "monologue prof de techno",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1534000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1534000,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CA7B5D8B-FA8B-76A0-C829-08E6BEBBDC6F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "prof à bout de nerf contre ses élèves\nannonce de grossesse ==",
+"img": {
+"src": ""
+},
+"title": "salle des profs",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1534627,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1534627,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A53FE2FE-F4AE-F11C-8DB4-A408E31BE0AD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "les bouffons",
+"color": "26112",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1534686,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1534686,
+"tags": null,
+"color": "26112",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1A4EEEF3-9E68-F34A-6A33-2D9A40439560"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. en deuxième plan, flou --",
+"img": {
+"src": ""
+},
+"title": "exutoire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1547200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1547200,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CAA78E9A-FD3C-F258-6073-B1CA0DDEE233"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "exutoire-François observe",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1560200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1560200,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5881DB6E-3D21-5DB9-0955-B1CC63C4F477"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "??",
+"img": {
+"src": ""
+},
+"title": "exutoire-François observe",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1586400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1586400,
+"tags": [
+{
+"id-ref": "15a1354a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_193B2641-3B7C-0350-BD72-B1CDC4C2F8F1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "espace fermé :grillle",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1630600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1630600,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4B2EB5F5-6F12-B469-D71F-AD7C05CE7BCB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "lecture d'un extrait\nKoumba refuse de lire\nlecture du journal d'annefranck\ndemande d'autoportrait\ndifficultés à dire l'intime (honte à dire des choses, honte à manger devant la mère de X) --",
+"img": {
+"src": ""
+},
+"title": "classe",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1632754,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1632754,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9D5417A1-FAC7-98DF-6C49-A407F69895AF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Le prof accuse à nouveau collectivement la classe. Interaction négative avec Kemba. Le prof laisse glisser. Le collectif l'emporte sur la gestion individuelle. --",
+"img": {
+"src": ""
+},
+"title": "On perd un temps fou (Anne Franck)",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1633123,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1633123,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A6FDCA5A-876F-475A-7B9C-0EDD004AE75F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Lecture du journal d'Anne Frank",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1633294,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1633294,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_47C11248-AB7C-BC51-709F-DEEE47E567B7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1633400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1633400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C0F8BA3F-5E64-CF24-D5BC-448FF75E1652"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Lecture du Journal d'Anne Frank - Scène de classe 6 - Durée :\nARGOT : Tifer, Vénère, Jambon-beurre\nSe raconter - L'intimité - La honte\nVous pouvez pas me comprendre == je ne sais pas expliquer\nRELIGION : les chips ua bacon\nPremière parole de Wei (le Chinois)\nHonte des oreilles décollées\nConsigne : Ecrire son autoportrait\nPremière sonnette",
+"img": {
+"src": ""
+},
+"title": "Scène de classe 6",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 1637008,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1637008,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_32FF9031-98EA-4DB6-0CAE-E0B53788F594"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Posture d'énonciation 1: \"paquet de contradiction\" (AF)",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1640000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1640000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_141B40B3-5E77-D7B5-96C6-687D15F44F9C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "le journal d'anne frank",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1640200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1640200,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7705864B-16F8-CC7E-CFE6-B1CFD2972457"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Kumba ne veut pas lire.\nEnvie / Droit (trois fois)\nJe me tais ou je lis\n--",
+"img": {
+"src": ""
+},
+"title": "Kumba ne veut pas lire",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 1643960,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1643960,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F22BA715-E15E-D773-EA0A-7E6E22CC9169"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1644000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1644000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DFFBB470-36F2-65E5-CA20-44904BA252AF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Personne ne veut lire",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1648440,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1648440,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_90BA759B-5DE2-62A0-F899-0444DC1759D8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Personne n'a lu le texte",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1649800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1649800,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D252DEF8-4514-7CCF-C79A-B1D0A283FD1F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Koumba refuse de lire.",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1655170,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1655170,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C52B3E81-16E5-72FD-F0F2-FDB4AC762E59"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1655800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1655800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4E938DA1-9603-7951-BE01-44C10DBCA7F6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Koumba refuse de lire",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1659202,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1659202,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_10EF451B-C551-12E0-EE0B-DEED9ABB99F5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "Koumba ne veut pas lire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1660000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1660000,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BBABBAEC-6856-5966-ABE0-B1D10461029E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1660000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1660000,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A5A3AEFE-67E4-4824-7074-FE73385EDB3D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1661800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1661800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_34BC5225-ABDA-1EC0-490E-44C12EAC72E5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1663600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1663600,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6410BD27-89CB-BEDC-9D52-FE733860E4A5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "\"depuis quand c'est les envies qui gouvernent ici?\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1663600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1663600,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_740B4AA7-FB6F-C9B2-4D28-B1D182E0F1DD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1666400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1666400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A242149D-6C98-C929-1098-44C1567AD4EC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1670400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1670400,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2FAA12A9-2A04-1873-D4AF-FE7338619A58"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "\"ça veut dire quoi ce que vient de faire Koumba?\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1670400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1670400,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D2A4D3C0-1D52-E8AA-563D-B1D22EC80EA3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Argot: se moquer avec un bruit de bouche ??",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/389_in.jpg"
+},
+"title": "Tchiper",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1673280,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1673280,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_46AD5082-F85F-C151-2F52-0F46CE877035"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1673400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1673400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C5627860-40DE-D60B-2166-44C186B7789A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1676800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1676800,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9DFE0337-FC76-4A1A-4997-FE73386374AE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "L'attitude de Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1676800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1676800,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_63010FF4-ECEA-B08A-6190-B1D2D6F61E71"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1679000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1679000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CA1FAAF1-C1B4-BC09-BBC8-44C1BAEA7D40"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "\"c'est vrai que j'ai à faire à un spécialiste\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1681600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1681600,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F64385DE-7D15-B15D-359F-B1D35DC4980D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1681600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1681600,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5AA4C6B3-0756-8F2E-1FB2-FE733864C9AA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1683600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1683600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E2474DA8-7534-C9F0-329C-44C226C61A5C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Argot : énervé\nArgot: la rage au summun\n==",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/393_in.jpg"
+},
+"title": "Vous êtes vénère, vous avez le sum contre moi",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1685390,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1685390,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_84A2E701-A115-A0A5-8FAA-0F4779309666"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1689800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1689800,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FA3FD265-1029-E4BA-4111-FE7338661E2C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. demande à Koumba de parler français",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1690650,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1690650,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4C294500-0391-892E-042E-B1D4065D469A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1695600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1695600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_916F1517-3BF6-911B-CC07-44C28C752E60"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1696800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1696800,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FA4BB82D-3A55-1684-934F-FE733867F7FE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. insiste",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1697310,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1697310,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_011C5013-FC5D-4E36-509B-B1D4563354E7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1699000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1699000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2609FDE6-E120-4A7D-CE96-44C2CEC0E82A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1703000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1703000,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8DB60061-6AFF-677E-0660-FE733868B467"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule, panoramique",
+"img": {
+"src": ""
+},
+"title": "F.M. insiste",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1703000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1703000,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2F2B709F-FB1B-5E1E-EB7F-B1D548211187"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1710400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1710400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8D8CD62E-A4A0-B380-426F-44C302A0675D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1711414,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1711414,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_324A3FC5-F57B-569E-6B61-FDB674ECDE59"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1711800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1711800,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_08D512CF-877E-5C09-03E9-FE73386A5089"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. et Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1711800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1711800,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4F04A506-0B40-F6E8-127D-B1D5DC14F7E5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1714000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1714000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_11C2175A-B6F3-EFBE-8148-44C31F8BBADE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. et Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1716800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1716800,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7751F4C0-4B70-0A67-842D-B1D640908692"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1716800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1716800,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_12734436-B7FA-0CCA-D18E-FE73386BAC3D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1718400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1718400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_69C54418-B37E-6E83-130C-44C34311D47E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1720252,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1720252,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_691DDAD7-EEE2-9A0B-641C-FDB7308888D4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1722600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1722600,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9FB44698-7E93-D52C-C05E-FE73386D58C3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. dit à Koumba de se taire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1722600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1722600,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BABB70C6-5D4B-5C1F-C719-B1D6A64D1E7D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1725000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1725000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0313784B-2946-2885-7458-44C36B61FFA8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1730800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1730800,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5B917F26-18FC-F6E7-85B5-FE73386EE209"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1730800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1730800,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B6243EA0-6037-37C8-4DD2-B1D71B46272A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1731800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1731800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E1A6DF47-302E-B78E-83C4-44C38B01985A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1732840,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1732840,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4D217ECB-C146-CFA7-1BC6-FDB7EE84B334"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1735000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1735000,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_49ED33F4-899C-1B03-3BA5-FE733870CF5C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. dit à Koumba de venir le voir à la fin de l'heure",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1735000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1735000,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_02EEFD95-8DD8-8CEE-39E8-B1D79AEE049C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1737200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1737200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_606C4203-5413-ECBA-7846-44C3A74E0172"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "10040166",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1738675,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1738675,
+"tags": null,
+"color": "10040166",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_38B80A5D-149E-5203-8853-2DB7CDC5F764"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1739200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1739200,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B42225BE-F58A-9C96-053D-FE7338717FE8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. répond à Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1739200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1739200,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AAE118A8-AB28-23B2-C3E9-B1D82CDAA06E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1741800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1741800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F19EE46F-4FB1-087A-CED4-44C3E171BC9D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Esméralda lit",
+"img": {
+"src": ""
+},
+"title": "Esméralda lit",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 1742821,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1742821,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9BAF3756-6185-7AA7-345D-7E6E2CA0C86C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille ==",
+"img": {
+"src": ""
+},
+"title": "F.M. demande à Esmeralda de lire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1745400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1745400,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_920E121C-A4EE-4E12-523B-B1D8B2DB3A8C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1745400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1745400,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2295891F-E305-636E-DB18-FE7338748F8A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1746400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1746400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1A91222C-D7D3-5925-7F37-44C425CE50E2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille ==",
+"img": {
+"src": ""
+},
+"title": "F.M. donne la parole à Esmeralda",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1749000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1749000,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8089B621-CDBA-1D1E-5730-B1D8D5ABD0DD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1749000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1749000,
+"tags": [
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a52290-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_70292F46-969B-6321-CB4B-FE7338759D3B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1751000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1751000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AC522CF1-4A17-CA4C-090F-44C561D83E0A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Lecture de l'extrait d'AF.\nHypothèse: l'auteur (le professeur) a toute latitude pour choisir tel ou tel extrait.\nEn choisissant celui-ci en particulier, il nous indique quelque chose de sa posture d'auteur et d'enseignant dans sa propre oeuvre (Entre les murs).\nC'est plus signifiant de choisir tel extrait d'AF que telle conjugaison de tel verbe ou telle leçon de vocabulaire.\nL'auteur nous dit là son regard sur la situation vécue:\n- moi en tant que prof je suis pris dans un tissu de contradictions\n- mes élèves sont pris dans un tissu de contradictions\n- l'école de la République est prise dans un tissu de contradictions\nCette posture qui n'est jamais assumée explicitement est, par ailleurs, amplement illustrée par de multiples séquences de films. --",
+"img": {
+"src": ""
+},
+"title": "Posture d'énonciation 1: \"paquet de contradictions\"",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1754000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1754000,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2576F78D-929C-0C86-E0ED-68832DD404D1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1755640,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1755640,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_05D3CDCE-B997-B384-17D2-7E52432DFB61"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1755640,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1755640,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_98279520-7BA3-140D-06BD-7E52004834C4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Déportation.\nLe modèle du portrait: je découvre des choses, sentiments, sensations, pour mieux vous connaître ++",
+"img": {
+"src": ""
+},
+"title": "Le modèle du portrait",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 1821755,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1821755,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_48201F34-5A13-234D-E4B8-7E6E3C01010E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. explique la conclusion du Journal d'Anne Frank",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1824290,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1824290,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FFEA4B43-48D9-6BE3-08A8-B1DA0B10076B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1827400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1827400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_46C9E8DA-239B-730A-A0B1-44C5EA9325BD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "\"Je découvre des choses\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1831309,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1831309,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_17564EDB-771E-4F3F-C43F-B1DA79772F5F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "L'autoportrait : quel intérêt?",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1832669,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1832669,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_14BC3ECE-6155-6CD3-EB9E-DEEFE8E0E12B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1837800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1837800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0DA2B13E-A7E7-7089-3517-44C63A8C7FF9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "L'autoportrait",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1847753,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1847753,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FB289F3F-E8C9-05C5-4D91-B1DB08890177"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1854800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1854800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_316E51BC-0960-2A3D-B715-44C675081DC7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1858381,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1858381,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0A972934-2DF7-99DC-3C56-FE733876C1CC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Objections: nous on est moins intéressants, moins passionnants. --",
+"img": {
+"src": ""
+},
+"title": "Objections",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 1859515,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1859515,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_723F1834-BE44-7127-FEB0-7E6E50A22925"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché épaule",
+"img": {
+"src": ""
+},
+"title": "F.M. donne la parole à Lucie",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1859540,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1859540,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6FBB26B6-BF12-3A1F-85A1-B1DB67A82D8B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1864600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1864600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7D556C73-51BC-3A88-7526-44C6CA918263"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "\"on a quand-même vécu des choses\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1882287,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1882287,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E147F030-134D-DB7C-044C-B1DDB6236507"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1888000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1888000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5264EA64-CDFC-5717-EF61-44C77750E4F2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "\"Vous avez pas l'air du tout convaincu que votre vie est interéssante\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1895143,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1895143,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_96079A9D-844B-124A-E158-B1DE26602672"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1899400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1899400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5E5AAA84-726A-06F2-2D72-44C7A920BE43"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. répond à Henriette",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1903714,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1903714,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EE4C2A1C-C883-DF51-70A6-B1DE81DBA68A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1909400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1909400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2CDD875D-C65B-7C9C-D7C7-44C7DC3944C9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Moi ça m'intéresse. ++\nProf/être humain: avec ces deux dimensions légitimées dans le cadre de l'enseignement, les \"paquets de contradiction\" sont forcément convoqués.\nPas vrai que vous vous intéressez: parole mise en doute. Cependant, tout en la critiquant, les élèves suivent la consigne: ils font vivre leurs contradictions au sein de la classe.",
+"img": {
+"src": ""
+},
+"title": "Prof/être humain",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 1913040,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1913040,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DB381E2A-3F78-82DD-D593-7E6E619A50CF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "\"oui, mais si moi je vous dit que m'interesse",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1913930,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1913930,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0EA2EBFF-98B8-39D0-C64E-B1DEE49F505A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1916000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1916000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_486CD877-9A79-6F5D-5DEC-44C8155B4064"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "\"pourquoi c'est un cas particulier moi?\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1917980,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1917980,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_604DCDC4-94CA-242C-75E9-B1DFA772B47D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "\"oui, mais là c'est pas le prof qui parle..\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1923018,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1923018,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_547916C2-5A85-9229-BEF7-B1E0037A516A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1924800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1924800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8BECA2AC-06DB-8F42-30B6-44C83D4A939F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1934755,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1934755,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4D96AF13-9990-1CDD-F09A-B1E06D577DF4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1937800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1937800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_18FBE361-B033-91A1-7DC7-44C8A483F6BA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "\"je m'interesse pas du tout à vou...\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1942786,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1942786,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B93A9B58-FFE1-C2D2-9720-B1E0BCAAEB5D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1946600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1946600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_21CEE6DD-4AFE-7EE6-3131-44C8F072278B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1951125,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1951125,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D4922C2F-3D87-F51C-B3BB-FE733878C51B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille ==",
+"img": {
+"src": ""
+},
+"title": "\"p-e que j'exagère un peu\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1951125,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1951125,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_43DCFFA8-3B93-FE67-F3C9-B1E112C54BB4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1954800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1954800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0FD35AA4-95CC-1C5A-A5B6-44C917555843"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1959465,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1959465,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A94E3F81-22DC-66A0-3913-FE73387A685E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain ==",
+"img": {
+"src": ""
+},
+"title": "Les difficultés à raconter sa propre vie",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1959465,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1959465,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_99A12CE1-2747-0BB5-912B-B1E181C9286F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Retour sur la question de raconter sa vie, intime.\nMode du questionnement. ??",
+"img": {
+"src": ""
+},
+"title": "Fin",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 1961275,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1961275,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2A4142BD-8E03-E936-BAA6-7E6E72828061"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1965200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1965200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6BC17992-FFE6-6ECD-095D-44C9688087EC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Autoportrait- la honte",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1966712,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1966712,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0652D146-9310-5599-13AD-DEF2F6D1040C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain ==",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute les élèves",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1972437,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1972437,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5B8FF224-2A52-38BA-678F-B1E1E2BC9BE5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1975200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1975200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_98568624-ADF5-80FF-6077-44C9E538D872"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "la honte",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1984483,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1984483,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1E8B705A-6FD5-7E38-5B02-B1E277AC3233"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1984483,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1984483,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_898308B6-38BB-125B-724C-FE73387BC346"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1991200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1991200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D24AE16A-4832-FC35-A305-44CC0BA98470"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen ==",
+"img": {
+"src": ""
+},
+"title": "la honte",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1993749,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 1993749,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_23E297F3-C833-46BA-1E19-B1E312DC32E4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "plan moyen",
+"img": {
+"src": ""
+},
+"title": "honte de manger avec la mère de Rabat",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2010740,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2010740,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7D79EF19-A284-1ABC-583F-B1E3954B8257"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen, F.M.sur le fond de la salle",
+"img": {
+"src": ""
+},
+"title": "F.M. ne comprend pas ce que Boubacar veut dire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2015880,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2015880,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B435B22B-C6E2-7767-F62B-B1E3ED4CC98A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "PLan moyen",
+"img": {
+"src": ""
+},
+"title": "F.M. tente de comprendre",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2023092,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2023092,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_20F622F0-DECC-6BFF-F704-B1E4596CA5EF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen",
+"img": {
+"src": ""
+},
+"title": "F.M. tente de comprendre ce que Boubacar veut dire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2028342,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2028342,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D3B4D8AB-F56E-2C6E-2383-B1E4B7D033EE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen",
+"img": {
+"src": ""
+},
+"title": "F.M. résume le propos de B.",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2046813,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2046813,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EB70DE4E-20FE-3631-2144-B1E596400980"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Ceux qui puent le fromage ??\nMots ghettos: les blancs\nArgot : mon baggy (pantalon taille basse)",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/480_in.jpg"
+},
+"title": "Les jambon-beurre",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2060403,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2060403,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_009E8873-2309-C787-9CCB-0F4CB0DABBD3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen",
+"img": {
+"src": ""
+},
+"title": "Rabat doit mieux s'expliquer",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2067878,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2067878,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_89589A89-1996-D111-220A-B1E6430E774C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen",
+"img": {
+"src": ""
+},
+"title": "encore sur Rabat",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2072202,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2072202,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9CF69691-60A2-D7F2-9590-B1E69FBC25C5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen",
+"img": {
+"src": ""
+},
+"title": "\"et c'est toi qui avait honte?\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2080541,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2080541,
+"tags": [
+{
+"id-ref": "15a8c44a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab2fe6-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab2fe6-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab2fe6-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_302F527B-A4CE-8104-6184-B1E6F38C9488"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen ==",
+"img": {
+"src": ""
+},
+"title": "\"tu étais embarassé devant eux, quoi\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2088572,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2088572,
+"tags": [
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3A24C979-B87B-0118-E5CD-B1E7684E523F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen",
+"img": {
+"src": ""
+},
+"title": "\"histoire de race?\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2097529,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2097529,
+"tags": [
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_178B3536-2E3E-4B1B-BF70-B1E7C172B0AA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen ==",
+"img": {
+"src": ""
+},
+"title": "\"et alors c'est..?\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2104015,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2104015,
+"tags": [
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A1648D48-EF31-3E92-9C08-B1E82D617E02"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen",
+"img": {
+"src": ""
+},
+"title": "F.M. comprend ce que Rabat veut dire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2110420,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2110420,
+"tags": [
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab3482-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DE09F21C-05C5-2790-FF44-B1E889E001B2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Wei véhicule l'attitude \"normale\" des élèves, celle qu'on espère, celle qu'on attend. Le film nous piège-t-il en donnant une piste culturelle à laquelle on va alors devoir résister (également plus tard dans les scènes de parents d'élève) ??",
+"img": {
+"src": ""
+},
+"title": "Wei le bon élève...",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2111637,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2111637,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E8E442B6-B558-4C2B-00CE-0EDEDB723FB2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Probablement une \"lame de fond\" culturelle difficile à combattre ! ce jeune \"OVNI\" pointe le niveau perçu des normes de discipline par de nombreux élèves (surtout venant des lycées pro) : beaucoup semblent être très étonnés qu'on les rappelle à l'ordre lorsqu'ils parlent ou rient fort en cours de manière répétée = la culpabilité (et a fortioti la honte) sont relégués à des comportements \"extrêmes\" pour ce qui est du bruit et de l'\"insolence\" en tout cas. Mais je pense que peu de profs insistent sur le fait que le bruit n'est pas qu'une faute envers une norme ou un prof, mais surtout envers les élèves qui ont des ambitions scolaires et veulent écouter et réfléchir en silence --",
+"img": {
+"src": ""
+},
+"title": "honte et discipline",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2112000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2112000,
+"tags": [
+{
+"id-ref": "15ab92b0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab962a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_259DF15B-6C0F-B586-605B-B75360D98523"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. répond à Wei",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2118223,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2118223,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CC5B9A5D-B538-596D-EED3-B1E8DCD777AA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2118223,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2118223,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D581738F-3267-002A-D6D8-FE73387C8E39"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2120400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2120400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F9B5EC12-C37B-B9F1-138E-44CC9E6C7671"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. demande à Wei s'il est comme les autres gens",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2126872,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2126872,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_91E2D827-16C3-E60F-15D6-B1E9C42E069C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2126872,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2126872,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FE134361-4B9E-5D93-E714-FE73387E0EBF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2129800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2129800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FEDE85FE-E3A3-B8B2-3643-44CCCE818BFC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2133667,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2133667,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5D009A2B-8BE5-3B99-9184-FE73387F42E1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. rit",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2133667,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2133667,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CCFDA1D4-EF66-ECB4-F254-B1EA53F30B2B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2136000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2136000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9C4F3F07-5401-1EA1-3660-44CCF06E68C3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2139844,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2139844,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AE38B804-4BC8-15EF-A15D-FE7338812776"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "\"Tout le monde peut s'exprimer dans les limites de la politesse\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2139844,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2139844,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_66477816-533C-8046-F1A3-B1EAC9884C1A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2146600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2146600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1F23757B-35E9-624D-FBA7-44CD3E37FCD1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2156832,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2156832,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2DAD3FAA-4CC3-C5BA-4B66-FE7338823507"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "honte/discipline",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2156832,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2156832,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B8CBA357-A3A9-804B-7C77-B1EB37653661"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2157800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2157800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5E654095-EFBB-FE97-A292-44CD9858D144"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2162600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2162600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C388BC32-98EC-38CD-0255-44CDDB2F6822"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. pose une question à Louise",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2171349,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2171349,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3B31F031-0950-9DB3-EA9A-B1EBD2429A99"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2174400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2174400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E643B5C6-E1CC-4883-06D4-44CE13995143"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2180615,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2180615,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_39F73F98-C6F1-A05B-878E-FE733884958F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "honte pour ses oreilles",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2180615,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2180615,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_38759597-4470-5CDD-6630-B1EC4753FEC2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2184800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2184800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_54984F51-C5D0-1147-5C44-44CE4D5D9BE6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2192661,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2192661,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_520E4EC0-508E-1D05-D690-FE7338857147"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "Conclusion du discours sur les autoportraits",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2192661,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2192661,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_36755204-AE60-A1B3-CC82-B1ECD5BB9CF6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2201000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2201000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_105D51D7-AEB0-3DDD-FFC0-44CEC22BF47F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Panormaique, plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "La consigne",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2210266,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2210266,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F0EF20E4-6A56-7574-B8AD-B1ED926D94FE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2215400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2215400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_ACEA73AF-27AA-8F91-E7B5-44D1FB48456A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/523_in.jpg"
+},
+"title": "plan 523",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2216960,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2216960,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F971C4E8-DA11-5AD9-36FE-AD8181DC2FCF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen, sur le fond la porte de la salle ­ désir de sortir ++",
+"img": {
+"src": ""
+},
+"title": "fin du cours",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2217679,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2217679,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D8F57345-B7AA-622C-3AB4-B1EE0AE7AB8D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen",
+"img": {
+"src": ""
+},
+"title": "F.M. tente de finir sa phrase",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2226019,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2226019,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_098DB22D-8521-8601-FB73-B1EEEE76EA90"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen",
+"img": {
+"src": ""
+},
+"title": "Les élèves sortent",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2231578,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2231578,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BEE8847B-1F48-BE8A-16AE-B1EF25ED76F5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2239300,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2239300,
+"tags": [
+{
+"id-ref": "15ab990e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A11FD1A2-A310-B8C2-FCBD-B1F0B43A0C99"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Une seule question : pourquoi avoir gardé la porte ouverte ?? On a une impression de superficialité dans l'enquête du prof (et du réalisateur)",
+"img": {
+"src": ""
+},
+"title": "Je m'excuse, Monsieur, d'avoir été insolente (Kumba)",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2243339,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2243339,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_28030B34-466A-E18D-11AC-0EE113DEFCD7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Koumba/Prof",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2243600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2243600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0CA9086B-5CA3-FAC6-CB50-44D2439BD5EA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. en premier plan, flou, le point est sur Koumba cadrée en plan rapproché taille ++",
+"img": {
+"src": ""
+},
+"title": "F.M. appelle Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2243600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2243600,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_442FFFB4-2446-1215-4AE6-0465AAC38845"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Entrevue avec Kumba\nQue s'est il passé cet été ?? Je ne suis plus gamine.\nDemande d'excuses\nElle manque de le tutoyer = désir\nJe le pensais pas = trahison",
+"img": {
+"src": ""
+},
+"title": "Entrevue avec Kumba",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 2245498,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2245498,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1B2B1FB1-9973-0683-8202-E0B537881342"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain, les deux personnages sont séparés par le bureau, ++",
+"img": {
+"src": ""
+},
+"title": "F.M. demande à Koumba de lui donner son carnet de correspondance",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2250200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2250200,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8CE154B7-1359-08AF-03B1-0466832D8C11"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Affrontement Koumba /F.M.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2258475,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2258475,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_79165E27-73CF-9CD7-5EC9-DEF54C319F4A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "F.M. demande à Koumba de lui donner le carnet poliment",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2262920,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2262920,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B3E9D8C8-BA66-2C38-3246-B1F18CEA6DA6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "F.M. oblige Koumba à reproduire son geste plus poliment.",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2265280,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2265280,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_72521AC4-7449-35E2-C15E-FDBC0F096ECD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, Koumba en premier plan ++",
+"img": {
+"src": ""
+},
+"title": "F.M. commence à parler",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2276364,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2276364,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_416BF992-A706-E847-36C2-B1F214C61C21"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "??",
+"img": {
+"src": ""
+},
+"title": "\"C'est pas parce qu'il y a pas que toi qui fait des conneries que je ne dois pas te sanctionner pour autant, non?\"",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2284028,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2284028,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DAC5AC98-6CF0-2205-94E6-FDBCF7AD0BF0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapprochè poitrine",
+"img": {
+"src": ""
+},
+"title": "sur la sanction",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2285013,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2285013,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7938CBE7-EC6B-C1A6-DE53-B1F25D6888EC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "\"qu'est-ce qui s'est pasé cet été?\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2290590,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2290590,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_33E336AA-50EC-ABD8-EDE3-B1F2AEE32A9A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2300456,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2300456,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_871AB155-00A9-EE58-2669-B1F374670F78"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2309413,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2309413,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F57A3F5F-95DC-B2EB-96FF-B1F3E50F7675"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2321150,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2321150,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8942E42F-3B41-F3B7-2763-B1F478945407"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2322595,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2322595,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1352A5B3-D54E-BF18-0D4D-FDBF8F164100"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2328680,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2328680,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B778D8DB-3195-63AE-8385-046B984F2852"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2337597,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2337597,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1B744823-5ABD-D07C-BC72-B1F53BD987B9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2344400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2344400,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FBA5A831-9207-C6B5-657B-046C3E609529"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2345494,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2345494,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BB9D5D43-9069-111E-FAB7-FDC055937256"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "champ-contrechamp : F.M. est présent dans les plans, montré frontalement ou de dos, en plan rapproché ou plan américain lorsque la caméra nous montre les autres personnages qui assistent à la scène. ++",
+"img": {
+"src": ""
+},
+"title": "dialogue avec Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2359141,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2359141,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4FF4A35A-513B-ADDB-CD5A-FE733887588B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "champ-contrechamp : F.M. est présent dans les plans, montré frontalement ou de dos, en plan rapproché ou plan américain lorsque la caméra nous montre les autres personnages qui assistent à la scène.",
+"img": {
+"src": ""
+},
+"title": "dialogue avec Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2359141,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2359141,
+"tags": [
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15acf664-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3415AB80-37B7-5395-C0A2-B1F6CA590C4D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Koumba s'en va en disant qu'elle ne pensait pas ce qu'elle vient de dire.",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2408835,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2408835,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_22782861-D50B-0339-41DB-FDC188DC905D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2411000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2411000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D7E5318A-750C-F72A-8ED0-44D32BF9E339"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "\"l'idée vient des professeurs\" / 1ereprésence  et intervention d'un parent d'élève. - Discussion autour d'une \"fausse bonne idée\" et du sentiment d'impunité. La règle : débat. ++\n\n\n\n\n\nDétournement de l'échnage sur la machine à café.",
+"img": {
+"src": ""
+},
+"title": "réunion de professeurs le système à points",
+"color": "26112",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2412602,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2412602,
+"tags": null,
+"color": "26112",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_84ED6CBD-0CBE-25E8-1253-2D9F5E09B643"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2416253,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2416253,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_34FF565C-E9BA-4888-BEF8-2DA02A5BA16A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/566_in.jpg"
+},
+"title": "plan 566",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2417160,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2417160,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3E062DD1-5FAC-945C-1E2E-AD8347D7AAD0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Pour montrer la frustration de F.M., la caméra -en plan moyen- effectue un panoramique vertical vers le bas, jusqu'à montrer le coup de pied qu'il donne à une chaise.",
+"img": {
+"src": ""
+},
+"title": "F.M. seul, après la discussion avec Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2417208,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2417208,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C4F85633-4790-4552-9D16-C02BF3F0F108"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Conseil de classe.",
+"color": "16750950",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2426288,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2426288,
+"tags": null,
+"color": "16750950",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_93545FDD-EE16-A1B5-6D1A-DEF85FE47D4F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Chacun parle à son tour, en usant d'un ton réglé, les règles d'une discussion équitable sont respectées.",
+"img": {
+"src": ""
+},
+"title": "Conseil de classe",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2426894,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2426894,
+"tags": [
+{
+"id-ref": "15ae9230-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D795DEBD-B8E8-D331-4DED-7CCEEDEAF228"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Discussion sans vertèbre sur la gestion de l'incitation (bons et mauvais points). Dérive sur la notion de règle. Pas d'accord de fond. Rôle du directeur ?",
+"img": {
+"src": ""
+},
+"title": "Conseil d'établissement : l'approche de la règle",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2427264,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2427264,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_979FDF80-5643-5934-E5CA-0EE2A58A188D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Le conseil de classe",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2427401,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2427401,
+"tags": [
+{
+"id-ref": "15ae9230-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ae9230-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ae9230-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CC67BA68-8F9E-BDA9-ACAA-C02F58FAF60B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Réunion de profs\nsystème à points pour discipline\n- coût du café\n--",
+"img": {
+"src": ""
+},
+"title": "Salle du conseil",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2427550,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2427550,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_47C2314E-A4E8-B4CB-F5DD-A4060DD34FB3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Conseil des profs\n1) Le permis à point\nDanger des règles absolues : pourtant François a imposé la règle de demander pour se lever\nLa loi et l'esprit de la loi --\n2) La machine à café (quelle est l'utilité de cette scène : nous rendre les profs sympatiques, provoquer une empathie pour accenteur le drame)",
+"img": {
+"src": ""
+},
+"title": "Conseil des profs",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 2433498,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2433498,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_42407C90-A356-AACE-C3B2-E0B53788834B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "point de vue /d'écoute de F.M. ??",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2448095,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2448095,
+"tags": [
+{
+"id-ref": "15ae9230-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_27BBA87D-B419-79C4-BAFD-C03248074D32"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "point de vue/d?écoute F.M.??",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2463539,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2463539,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_76A5A886-DBFE-52D0-98C8-C03448C3ED86"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. écoute les autres enseignants",
+"img": {
+"src": ""
+},
+"title": "débat sur les \"points\" de conduite",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2489484,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2489484,
+"tags": [
+{
+"id-ref": "15ae9230-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ae9230-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4CAC4630-0CDA-81EA-4E52-C03531DC5252"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. et la critique non exprimée --",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/578_in.jpg"
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2506160,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2506160,
+"tags": [
+{
+"id-ref": "15ae9230-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ae9230-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_318435AC-EF54-16B4-FEAC-C0366AA88367"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/584_in.jpg"
+},
+"title": "F.M. écoute",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2538680,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2538680,
+"tags": [
+{
+"id-ref": "15ae9230-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ae9230-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C35CA75F-01AA-BF8A-A233-C0375E14C669"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "champ-contrechamp",
+"img": {
+"src": ""
+},
+"title": "Le point de vue de F.M.",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2567937,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2567937,
+"tags": [
+{
+"id-ref": "15ae9230-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ae9230-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8992B943-4B2F-6372-C940-C05364E8C8DC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2571102,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2571102,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B5F61191-32C3-3F4A-F969-7996FBD89B0B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Conseil de classe suite",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2615985,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2615985,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_87F2F661-9530-3D74-05C5-7CD170102A66"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2634961,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2634961,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_04F6C043-C0F2-730C-511E-C055BE18C6A8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2659053,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2659053,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_96C534CD-7E5E-C2F9-4C23-C05632D132CA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2686852,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2686852,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8C710C30-9E08-EDD4-E952-C05726C54F35"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "des réactions très différentes : comment caractériser F.M. en tant que personne??",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2695191,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2695191,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AE15AB07-FA22-96E7-FFB2-C057D95037F3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2706619,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2706619,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F9579075-4AAD-5C73-33BF-C058DF814C71"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "prof traverse les couloirs, salue les dames de services\nouvre son casier\ncommence à lire la lettre de Koumba (le respect), voix de Kumba. ++",
+"img": {
+"src": ""
+},
+"title": "couloir",
+"color": "6710886",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2712363,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2712363,
+"tags": null,
+"color": "6710886",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_96420CB1-1FD3-B7F4-69B9-A40A9C342214"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "fin de la journée il rentre, quitte le groupe, dans la pénombre, traverse de longs couloirs vides et sombres (rappelle un peu le film de Gus van sant \"elephant\" où l'on suit les personnages dans l'espace de l'tablissement. ==",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/612_in.jpg"
+},
+"title": "plan 612",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2713184,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2713184,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D85B1783-B4D3-21DF-4887-AD849FE5D825"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2714958,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2714958,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_774F07FC-AA5C-B043-BEF0-C05A29CA13BD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2743683,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2743683,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_85FC7023-31E6-0D20-0774-C05A4ADB88E3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan sur F.M. en train de lire - voix off de Koumba ++",
+"img": {
+"src": ""
+},
+"title": "La lettre de Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2752022,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2752022,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8EA61117-AD6D-B096-56B8-C05A8E408F82"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "monologue en voix-off, lecture qui sonne faux et pas seulement parce que le texte écrit est mal lu (problème des acteurs non pros)... --",
+"img": {
+"src": ""
+},
+"title": "voix-off : khoumba",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2754849,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2754849,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C3BBF043-B29A-794C-4314-08E35F34185F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "salle de classe\nlecture autoportrait esmeralda, tierquar\nwei jeux vidéo\nrabat allez l'om, complément sur les femmes lu par d'autres\nsouleymane : j'ai rien à dire sur moi\nconflit souleymane / esmeralda\ntatouage souleymane\narrivée de Karl\nsonnerie \ndialogue avec Karl ++",
+"img": {
+"src": ""
+},
+"title": "salle de classe",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 2764239,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2764239,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_43AC9EB9-BC6C-9F0B-70B3-A27BF67EB65B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/613_in.jpg"
+},
+"title": "Hors champ - Lettre de Kumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2765560,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2765560,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5C0D08DA-738A-D64F-D611-E6142C221DCA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Lecture des autoportraits.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2769842,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2769842,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A5DC6ABC-A975-858E-CFAC-DF0F394975AC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2771790,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2771790,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_228CC045-5FD7-3FBD-58DF-FE7338880016"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2771790,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2771790,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B34B87CA-2D31-9E03-202A-C05BF3541AAF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "rapproché taille",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2785689,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2785689,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_69337651-15D8-3062-D2D8-C05C21F86554"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "rapproché taille",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2796191,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2796191,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C9F75306-E857-1283-6D33-C05C3E98D9FF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2799000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2799000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AF859B93-312E-EB98-C282-44D570AADE25"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Scène dans l'obscurité - Rédaction de Kumba\nVoix off se prolongeant dans la classe - Scène de classe 7 - Durée :\nDéclaration d'hostilité de Kumba - Esmeralda s'écarte de Kumba\nEsmeralda veut être policière (contradiction)\nARGOT : Tchecart (quartier)\nRacisme anti-chinois de Raba (Kabyle)\nSouleimane : ARGO : tu france (?)\nRELIGION : inscription coranique sur le bras (si ce que tu as à dire n'est pas plus intéressant que le silence, alors tais toi) ??",
+"img": {
+"src": ""
+},
+"title": "Scène de classe 7",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 2826867,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2826867,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_632DF49F-4B77-F73B-AD14-E0B537883E13"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "plan moyen, plans qui se rapprochent jusqu'au gros plan- Le regard de Koumba à travers les autres corps. ++",
+"img": {
+"src": ""
+},
+"title": "F.M.circule entre les élèves",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2828004,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2828004,
+"tags": [
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15af198a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0963e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0963e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0963e-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0963e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_00B47388-F98B-8BFA-94C7-C05F231B2AA3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "changement de place",
+"color": "10040166",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2849916,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2849916,
+"tags": null,
+"color": "10040166",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7C3AACAA-1DA1-4667-D245-2DBBE10FD720"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. reprend sa place ++",
+"img": {
+"src": ""
+},
+"title": "F.M. invite Esmeralda à lire son autoportrait",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2862289,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2862289,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_45406AFC-B9E9-8C0E-5564-FE73388A5AAB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2867231,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2867231,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_00F016CF-F51D-0990-F734-FE73388C0CC9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2867231,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2867231,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A427E684-C281-D008-E59E-C061513C5C40"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2869200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2869200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E0B653D3-0BF3-88AB-8DC7-44D899F73FA0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "10040166",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2872594,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2872594,
+"tags": null,
+"color": "10040166",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7E4847AF-9EE2-B618-AE46-2DAE5E070ABF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "plan américain",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2872790,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2872790,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AA93D3A6-3064-EDBD-78EA-FE73388E663F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "plan américain",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2872790,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2872790,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A40916FE-6BED-0AC9-082C-C06167F06C05"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "plan rapproché taille, F.M. regarde la jeune fille ++",
+"img": {
+"src": ""
+},
+"title": "L'autoportrait d'Esmeralda",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2878350,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2878350,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5CA3332E-EE54-67F8-666D-C0A5A30ABBCC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute l'autoportrait d'Esmeralda",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2891014,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2891014,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BFB92E5A-C4F9-AB80-8487-CA91CE728F2A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Argot : quartier ==",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/643_in.jpg"
+},
+"title": "Le tierquar",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2912480,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2912480,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1DC36A61-90EB-347C-4337-0F53DF6B309B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. corrige le verlan d'Esmeralda",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2916959,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2916959,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1B200BAC-617E-48C5-9C3B-CA93C9E38697"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. interroge Wei",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2928000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2928000,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_254CBCA9-A4AC-68C5-8322-CA97E808381F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute l'autoportrait de Wei",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2954800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2954800,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_356C0885-F951-34C2-11EA-CA990EC08996"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "autoportrait",
+"color": "10040166",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2970867,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2970867,
+"tags": null,
+"color": "10040166",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7D075902-645F-D6E3-ECB6-2DBDF6CFCB02"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. commente le portrait de Wei",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2974600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2974600,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_42BAD571-5507-DC7D-2AD9-CA9A21864225"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "Commentaire portrait Wei",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2977800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2977800,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C54C6339-B195-7EE5-1F14-CA9B123B3101"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2981800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2981800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E7E9CAD7-A775-DBDD-0B6D-44D997C214E5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "réponse à l'attaque de Rabat",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2984000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2984000,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CD3647B8-2B61-5F8A-69A2-CA9BBD53CFDD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2986000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2986000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_496D40B1-717B-0360-2701-44D9CDD8B2B8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ++",
+"img": {
+"src": ""
+},
+"title": "F.M. répond à Rabat et l'invite à lire son portrait",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2989800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2989800,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A11998B2-E99D-B264-E9CA-CA9CF77DE48E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2994400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2994400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F23F75F1-0E38-CEC4-D86E-44DA1B48CAD9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "F.M. invite une deuxième fois Rabat à lire son texte",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2999800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 2999800,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E492B138-B145-E0F1-5FE6-CA9E0EEA90CC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3002800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3002800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_649F420F-E7D3-0198-7AB2-44DAB59E0773"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Aboubakar oblige Rabat à lire son texte entièrement, y compris la partie dont il avait honte. Le prof est du côté de Suleiman. A-t-il raison dans la gestion du groupe classe ??",
+"img": {
+"src": ""
+},
+"title": "Encore du côté d'Aboubakar",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3004389,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3004389,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AF7B5BB3-44F8-C948-0D17-0EE46FF993DA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Argot: les allumeuses\nLe mot difficile : \"les clips de psy 4 de la rime\" (un rappeur ??)",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/668_in.jpg"
+},
+"title": "J'aime  pas les michtonneuses",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3014830,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3014830,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_00F7351C-C040-8670-7534-0F5626A40CF1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. contre l'expression de préférences sportives dans l'autoportrait",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3026600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3026600,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_38A8ED8E-06DE-4B13-2A20-CA9F5D2613E4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "10040166",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3031343,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3031343,
+"tags": null,
+"color": "10040166",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_33BFF613-C02F-15D1-319E-2DBE52E41929"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. observe Rabat",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3034400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3034400,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_348B09B3-71A2-0542-A523-CAA45C17BAA0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3035200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3035200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_00082297-6306-C851-3C04-44DAF8FDD4BF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. invite les élèves à se calmer",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3037200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3037200,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C5F94170-EE41-574F-ABEE-CAA510C90EF4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ++",
+"img": {
+"src": ""
+},
+"title": "F.M. s'empare du texte de Rabat",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3054600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3054600,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_637EAB27-43ED-18F3-56AA-CAA62C0FFDB9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3056400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3056400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7D5DBFD0-509E-3C76-049A-44DBACAFC1C1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, contreplongée",
+"img": {
+"src": ""
+},
+"title": "F.M. rend le texte à Rabat",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3058200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3058200,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_30B5381C-FF79-05F8-106F-CAA7A844C504"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3059600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3059600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E0E1304D-900D-4311-A3DF-44DBC812E5D9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "autoortrait",
+"color": "10040166",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3061581,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3061581,
+"tags": null,
+"color": "10040166",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_394A06C2-963B-4A5C-3659-2DBEF560998E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. commente le texte de Rabat",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3062000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3062000,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F5C9953A-21AA-D252-2D9C-CAA7F88D1ED0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3063800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3063800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9EBEA27B-466D-7201-58A1-44DC0A17BE50"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Souleymane",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3067800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3067800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EC995D87-3245-A822-77E9-44DC6BF517BE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ++",
+"img": {
+"src": ""
+},
+"title": "F.M. invite Souleymane à lire son texte",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3068000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3068000,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_406F01E5-9F73-C003-8FCB-CAA9B1BD7614"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3071800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3071800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_65BE2DBC-D149-FFC7-41FD-44DC2C84FB01"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. insiste",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3074400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3074400,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D897D7B6-52EE-7463-1305-CAAD937F9957"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3076200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3076200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EB708D15-F45A-334D-CBA5-44DC4D86DF83"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. insiste encore",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3080200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3080200,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_68AA615E-E5B9-BCAA-E826-CAAF1AF7CDD5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3083600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3083600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DA881279-FD4D-FC7C-2028-44DD02DBB2D3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "F.M. et l'autoportrait de Souleymane",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3092839,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3092839,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CC393B13-2097-AAD6-D017-FDCB2314B045"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "F.M. commente le texte de Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3095200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3095200,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7BB2AC67-73BE-0F7D-CD8F-CAAFD691F195"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3097000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3097000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7FF58B62-2811-F518-AC5E-44DD5AD3D6C6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Souleymane lit son texte et F.M. lui reproche de ne pas avoir fait son travail comme les autres.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3098754,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3098754,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1B3800D0-F802-196A-EA0D-DF0F559F085A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "10040166",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3099378,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3099378,
+"tags": null,
+"color": "10040166",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_792D4E53-8012-3E59-A232-2DBF270EE053"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Souleman révèle le texte d'un tatouage sur son bras:\n\"Si ce que tu as à dire est moins (...) que le silence, alors tais-toi.\"\nCette citation peut-elle être analysée comme une posture d'énonciation? Celle de l'élève? mais aussi, par contraste avec Platon notamment, celle de l'enseignant ??\nAttaque de la situation d'enseignement?, qui ne peut évidemment pas se contenter du silence, ni refuser de faire progresser (donc d'admettre des paroles de moindre intérêt, voire des erreurs)?\nFaire un pont avec Pillow Book: écrire sur la peau, enjeu du support de l'écriture et du corps du messager, outre le message.",
+"img": {
+"src": ""
+},
+"title": "L'inscription sur le bras de Souleman: plaidoyer pour le silence.",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3100617,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3100617,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8854629B-F936-14A1-9DC8-FDF38633220E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. commente le texte de Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3101800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3101800,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BBAC2DC6-1F4C-DA66-7644-CAB08BA3C42F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3104200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3104200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E1CC6ECA-EFCA-11EA-F66C-44DD890B803F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ??",
+"img": {
+"src": ""
+},
+"title": "Pourquoi les autres font l'effort de raconter leur vie?",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3107200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3107200,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2A8305E9-1DC2-ED17-AC7E-CAB12A9BD07C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3109400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3109400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2FF8A34F-7E74-1CF5-FF8E-44DDE387E810"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Argot : flic ==",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/704_in.jpg"
+},
+"title": "Sale Keuf",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3115672,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3115672,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_41953E09-A56E-F8E8-98EA-0F5935E2322B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M.assiste à l'échange entre Souleymane et Esmeralda",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3122377,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3122377,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F23532E3-5CF9-8D39-1A21-CAB270B48B01"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3124400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3124400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FD51054A-9CA6-15DC-154E-44DE30ADBBA7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Argot: Tu parles bien français\nTu frances == tu parles",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/708_in.jpg"
+},
+"title": "Tu frances bien",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3126170,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3126170,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9E6F6976-A4E8-6CB7-6025-0F59CB6038EA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. tente de calmer Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3133424,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3133424,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_440E46BA-31A5-41D6-035B-CAB3662DC1C7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3135800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3135800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1538A3F2-B811-0475-06A6-44DE51E41864"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. reproche à Souleymane de ne pas avoir écrit suffisamment",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3138912,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3138912,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0A94F75A-7812-C87C-21E5-CAB428AC708A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3142000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3142000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2FF1504D-2F48-B1F3-915B-44DEC914250C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "F.M. observe l'échange entre Souleymane et Esmeralda",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3154766,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3154766,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3CA7BDD4-CE34-C8F2-992F-CAB5A6136098"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3156000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3156000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B0062EBA-CEC7-ECF7-3068-44DF42269A56"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Le tatouage de Souleymane.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3159580,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3159580,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3A68CE26-870E-7038-F381-DF1197B0CD5B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "Le tatouage de Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3161067,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3161067,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AB3EE16B-3ABE-32B6-C299-CAB6495B1BD4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3162200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3162200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0B3167BC-B243-0EB1-CFA3-44DF96EE5093"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. veut savoir ce qui signifie le tatouage",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3164929,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3164929,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B57C186E-3AE8-087A-FFAA-CAB6DF669320"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3166200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3166200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F6C56A1B-92DF-7ACC-7F85-44E00C2403B9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "F.M. invite Souleymane à expliquer ce que signifie son tatouage",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3173669,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3173669,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C21C3C7E-770C-94FA-E7A3-CAB7727229E6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3176400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3176400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_05B4D26B-4114-E3E6-C36B-44E050E2874F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "F.M. invite Souleymane à lui montrer son tatouage.",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3177097,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3177097,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4DEE91B6-4539-ABD9-7ED9-FDCF530FB345"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. insiste",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3178547,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3178547,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_123D7258-44F1-9482-09D2-CAB8322E8E07"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3181600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3181600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_25960DAD-DEBE-3341-519C-44E1136504CD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille ++",
+"img": {
+"src": ""
+},
+"title": "\"si seulement tu pouvais écrire des choses aussi interéssantes sur ta feulle que sur ton bras...\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3204971,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3204971,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5FA5D335-CAEC-DC10-77DB-CAB93C5BFAEE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "==",
+"img": {
+"src": ""
+},
+"title": "le taouage de soulemane - le silence",
+"color": "10040166",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3212770,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3212770,
+"tags": null,
+"color": "10040166",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DF417C4C-84DC-8DF7-7646-2DC0E00E3399"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. donne des nouvelles consignes",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3215947,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3215947,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_ED32CAF2-75F6-B9A6-67E8-FE73388FA5B2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. donne des nouvelles consignes",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3215947,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3215947,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_47C22CF8-4C2A-F22E-59B4-CABACC91171E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3225400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3225400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3E340DB1-7021-D49C-AF1A-44E3D5628EA2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan d'ensemble",
+"img": {
+"src": ""
+},
+"title": "arrivée de Karl",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3230175,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3230175,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_521E1E0B-9289-94BA-40C5-FE733891B828"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan d'ensemble",
+"img": {
+"src": ""
+},
+"title": "arrivée de Karl",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3230175,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3230175,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_44DFADF8-E416-EC2A-490C-CABC433FDE46"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "PLan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "Le Proviseur veut que tout le monde soit debout",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3240338,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3240338,
+"tags": [
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15b0b2ea-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_304A1FF2-3577-B87A-1AC8-CABD159156BA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Arrivée de Carl\nA coté de Kumba\nSonnette 2\nEntretien avec Carl ==",
+"img": {
+"src": ""
+},
+"title": "Arrivée de Carl",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3240841,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3240841,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4E5A7A04-BD78-F9B7-A934-E0B53788D2DE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "L'application et l'explication des règles par le proviseur est très forte dans le contexte, qu'est-ce qui fait qu'il arrive à ses fins : sa manière de faire ? ses interactions plus privés avec les élèves ? les risques de sanctions liées à sa position ? à sa pratique ??",
+"img": {
+"src": ""
+},
+"title": "entrée du proviseur",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3251429,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3251429,
+"tags": [
+{
+"id-ref": "15bbb500-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CA6F5AD7-C563-C5E9-7C91-BC8BC74FD280"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. invite Karl à s'asseoir",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3268184,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3268184,
+"tags": [
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9B26BCB5-D329-F8A1-EB0D-CABE542F95ED"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain ==",
+"img": {
+"src": ""
+},
+"title": "fin du cours",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3291153,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3291153,
+"tags": [
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3F08871D-DBFE-3B23-DB99-CABF893099CD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3298107,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3298107,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_467E1800-9F4A-5C7E-F549-A27BF67EC090"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "F.M. invite Karl à rester deux minutes",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3299283,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3299283,
+"tags": [
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E1DDA224-B44E-125B-76AD-FE7338942367"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain ??",
+"img": {
+"src": ""
+},
+"title": "F.M. invite Karl à rester deux minutes",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3299283,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3299283,
+"tags": [
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_265BF8B8-4090-0FC7-1F2E-CAC0D9C1ADCF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "sortie de classe",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3303484,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3303484,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A77DBB61-975B-B162-FB6F-2DC268A3961A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "- Tu aimes bien le français ??\n- Comme tout le monde.\n- Oui, ça veut pas dire grand chose.\nCommentaire: il quitte le mode de l'enquête (de la question), alors qu'il pourrait le pousser plus loin. Il passe au jugement. Ce qui ouvre la voie à la confrontation. (Pas cette fois-ci.)",
+"img": {
+"src": ""
+},
+"title": "Questionnement du prof suivi de jugement, ironie, sanction",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3305000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3305000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1AA82F4E-BFA4-6B48-FE45-7DEA93D814E3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "F.M. s'approche de Karl",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3305787,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3305787,
+"tags": [
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8B128EA4-7429-00B9-EB66-CAC2064D4636"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Carl",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3306960,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3306960,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_62BD9DB9-09A9-419C-5961-44E2B4B29531"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Champ-contrechamp classique --",
+"img": {
+"src": ""
+},
+"title": "Dialogue avec Karl",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3308632,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3308632,
+"tags": [
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_03859A47-DE74-3CAD-15D4-CAC3527753AE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3379515,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3379515,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D5745960-25A5-9AFB-F069-A27BF67EB06B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan",
+"img": {
+"src": ""
+},
+"title": "F.M. reste seul dans la salle",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3380586,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3380586,
+"tags": [
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_078241E6-014B-7B5E-D010-CAC5D9CFCA17"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan ??",
+"img": {
+"src": ""
+},
+"title": "F.M. reste seul dans la salle",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3380586,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3380586,
+"tags": [
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_09456FE3-5320-4EDB-20CA-FE733895793D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3384800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3384800,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_840CF8B1-A840-7DD8-1D6C-AD8C0033D150"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Réception des parents. Mi-temps du match.",
+"color": "6710886",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3384862,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3384862,
+"tags": null,
+"color": "6710886",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0586B6CB-3495-8F3B-D575-DF14AF80A5DF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Les parents des élèves",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3385200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3385200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E5371C86-69FB-91A3-FC56-44E4477F6938"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Visite des parents de Wei",
+"img": {
+"src": ""
+},
+"title": "Visite Parents de Wei",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3385505,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3385505,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3E7F4F0E-7AF1-9548-EE25-E0B5378880A5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "52479",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3385667,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3385667,
+"tags": [
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "52479",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C74B4B4C-39F8-FC83-E016-CACAD792D97E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "52479",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3385667,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3385667,
+"tags": [
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bbbba4-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "52479",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5F35E4B5-EFA6-1C5B-F02E-FE733897BD04"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "pas de musique off, une musique in leçon de piano, pourtant elle a ce rôle sur la bande annonce du film comme musique defosse (reference à Michel Chion) juste des bruits mixés modulés en dynamique. Très peu de réalisateur ont utilisé ce choix radical : clouzot cavalier par exemple , à chaque fois dans un but de radicaliser l'esthétique et l'univers exprimé. Ici pas d'intériorité des images, juste une volonté de faire réaliste... voir aussi le choix de prise de vue. La musique de la bande-annonce est La Mélodie Hongroise D817 en si mineur de Schubert.Haut et Court (Paris) (comme une leçon qui viendrait de l'extérieur (en face quelqu'un joue , il est tard et il n'y a pas de bruit habituel (cri de la cour, ville ), à noter que la bande annonce du film fait entendre cette piéce de musique classique tout du long !! et pas du rap, ce qui laisserait entendre que la langue musicale parlée est celle du prof et pas des éléves (même si le ton est particulièrement beau et nostalgique) ++",
+"img": {
+"src": ""
+},
+"title": "musique de piano sur la rencontre avec les parents d'élèves",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3385953,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3385953,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1517741A-5946-DAC9-5182-03FF401D83C7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "le prof reçoit les parents d'elèves et famille",
+"color": "3342387",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3386638,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3386638,
+"tags": null,
+"color": "3342387",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EDD82865-8D31-AC12-45C2-2DC47E900C71"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "salle de classe\nrencontre avec parents\npère de rabat\nmère gothic\nmère littéraire henriIV\nmère et frère de souleymane ==",
+"img": {
+"src": ""
+},
+"title": "salle de classe",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3392101,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3392101,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_ADB8E39B-02F0-890A-A6E4-A27BF67E2100"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Réunion parents-profs",
+"color": "3394611",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3396835,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3396835,
+"tags": null,
+"color": "3394611",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AC545A2E-D54A-AEC6-6A54-7CDD3F9F058E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "élève avec son père",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3463400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3463400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_74773873-4360-F5B1-4B98-44E589C7AFF7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Visite du père de ?\nUtilité de ces scènes ??",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3465868,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3465868,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AE388556-4AF9-BCFD-3E06-E0B537883D7E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Visite de la mère de \nAgressive --",
+"img": {
+"src": ""
+},
+"title": "La mère agressive",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3514768,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3514768,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_29D08178-039F-837F-9C83-E0B537889405"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Parents de ?\nVeux qu'il aille à Henri IV, Première citation du collège Dolto --",
+"img": {
+"src": ""
+},
+"title": "Henri IV",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3552720,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3552720,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9E171647-6A02-3866-B64E-E0B53788D1F0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Là on est en plein dans la stratégie de masse de beaucoup de parents qui amplifie la \"concentration des problèmes scolaires\" mais qui est compréhensible... cette stratégie pourrait être moins utilisée et nocive si les règles de sélection et la prééminence des classes prépa étaient modifiés ??",
+"img": {
+"src": ""
+},
+"title": "parents et carte scolaire",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3581733,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3581733,
+"tags": [
+{
+"id-ref": "15bd18e6-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bd18e6-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3D1059F9-7496-4BE8-582C-BC919D3006C6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "échange sur fond de notes de piano. Une sorte de fatalité  se dégage de  cet échange, de grande humanité et difficulté à faire passer le respect des uns et des autres ++",
+"img": {
+"src": ""
+},
+"title": "la mère et le frère de Soulemane",
+"color": "10040166",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3611364,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3611364,
+"tags": null,
+"color": "10040166",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_40BB5778-3DAB-297C-C6B0-31B6A8852926"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Surpris - Découverte de ses absences - Sortie impromptue de la mère --",
+"img": {
+"src": ""
+},
+"title": "Mère et frère de Souleimane",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3616720,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3616720,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_09E8ACAC-5079-45EA-8F75-E0B537886411"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "famille de Souleymane",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3617800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3617800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DA788EC2-7DD3-0774-6E8A-44E8EC2D9DB5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "les photos de Soulemane",
+"color": "10040166",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3751460,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3751460,
+"tags": null,
+"color": "10040166",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3D410B41-5287-D80B-CF72-31B8F6506571"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3757400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3757400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EC300FC6-B0EB-B190-8D2D-44EA8D243529"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Les élèves copient leurs autoportraits à l'ordinateur. Souleymane est félicité.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3758000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3758000,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_307B9902-433D-9B13-E361-DF1EBBCFB51F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "couloir\nphoto mère de souleymane sur mobile",
+"img": {
+"src": ""
+},
+"title": "couloir",
+"color": "6710886",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3758565,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3758565,
+"tags": null,
+"color": "6710886",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FC393BBC-EC6C-1E99-2140-A27BF67EEDB3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Argot : Ma mère",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/833_in.jpg"
+},
+"title": "Ma Daronne",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3759367,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3759367,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_32CFABE6-1FEE-2F66-CFFE-0F5DBBFCE804"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Scène de classe 8 - Salle d'informatique\nDécouvete des talents de photographe de Souleimane\nKumba reparle - Elle est reconciliée avec Esmeralda\nARGOT : ma Darone (ma mère)\nExposition des photos ==",
+"img": {
+"src": ""
+},
+"title": "Scène de classe 8",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3760101,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3760101,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_583FA8AE-840D-BBD2-1674-E0B53788EDA1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3769622,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3769622,
+"tags": [
+{
+"id-ref": "15bd85a6-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bd85a6-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bd85a6-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bd85a6-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BED14C94-448C-3A28-2B39-CACC39BF13C0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "L'élève: Elles sont nulles mes photos. --",
+"img": {
+"src": ""
+},
+"title": "Elles sont nulles mes photos",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3770171,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3770171,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_79C916FD-4BEB-E047-EE19-7E022EDFEF5E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "F.M. regarde l'appareil photo de Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3775923,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3775923,
+"tags": [
+{
+"id-ref": "15bd85a6-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bd85a6-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bda57c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bda57c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_76C9C10C-F0CE-80A8-6131-CACD3EA7160A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "travai sur l'autoportrait en groupe",
+"color": "3355494",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3776756,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3776756,
+"tags": null,
+"color": "3355494",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EA57B253-4B18-D876-D237-31BE79684953"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan ++",
+"img": {
+"src": ""
+},
+"title": "F.M. en premier plan regarde Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3777752,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3777752,
+"tags": [
+{
+"id-ref": "15bda57c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bda57c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bda57c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bda57c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E0C04375-7000-F16C-104A-CAD1C9D3087A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "Les élèves entrent dans la salle",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3786492,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3786492,
+"tags": [
+{
+"id-ref": "15bda57c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bda57c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bda57c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CDC2050F-34A2-D1A7-F434-CAD4C2AAD969"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "(Ironie: dire le contraire de ce qu'on pense?? ou ce qu'on pense et ce qu'on ne pense pas en même temps? une amphibologie? ironie comme \"battement ou vibration d'extrême à extrême\", \"pseudologie\", Jankélévitch, forme de mise en scène de la contradiction)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLe prof: Puisque tu es un génie de l'informatique",
+"img": {
+"src": ""
+},
+"title": "Ironie sur le génie de l'informatique",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3792827,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3792827,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3E08AABD-CF12-02D8-2A16-7E022EDFBFBF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "salle informatique\notoportrait\nil charrie les deux filles\ncommentaire sur les photos de Souleymane\nprof affiche les photos, S pense que le prof le charrie, prof a un petit sourire\nélves regardent l'autoportrait photo\nsilence des enf qui regardent ++",
+"img": {
+"src": ""
+},
+"title": "salle informatique",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3793509,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3793509,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0477D925-D3CC-4254-CB5A-A27BF67E413F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen",
+"img": {
+"src": ""
+},
+"title": "Dans la salle informatique",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3803159,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3803159,
+"tags": [
+{
+"id-ref": "15bda57c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bda57c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9265184F-ED26-2BE5-4777-CAD5F4A48A27"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "F.M. regarde le travail de Karl",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3827550,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3827550,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5122360F-8045-9BC2-4940-CAD82ACA96C5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Le prof: Tu vas dans le pays du Luxembourg? --\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLe prof: Vous sortez finalement!",
+"img": {
+"src": ""
+},
+"title": "Marin ironise sur les sorties des filles",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3833467,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3833467,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_92933524-3759-DA0F-88F9-7E022EDFEF5F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, contreplongée ==",
+"img": {
+"src": ""
+},
+"title": "galeries Lafayette",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3841372,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3841372,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0E727020-59FC-F512-7253-CAD9117CC967"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "sortir du microcosme?\n\"en fait vous sortez, quoi, finalement?\"",
+"img": {
+"src": ""
+},
+"title": "galeries Lafayette",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3845200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3845200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D002172F-FD8D-CF2D-609E-44EC6AFBAF05"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, contreplongée ??",
+"img": {
+"src": ""
+},
+"title": "sortir du quartier?",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3845437,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3845437,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_27690E71-3106-09B0-974C-CAD9E3F6C8AD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Koumba et Esmeralda ne veulent pas qu'on les croit des \"paysannes\"",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3847468,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3847468,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C7A79146-E77C-FC75-1068-FDD1E02E1F85"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, contreplongée ??",
+"img": {
+"src": ""
+},
+"title": "sortir du quartier?",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3854583,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3854583,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_673797E4-E6B4-AB84-FE45-CADAC31C9581"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, contreplongée",
+"img": {
+"src": ""
+},
+"title": "suite",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3863120,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3863120,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BE81CD5F-F262-7724-1F99-CADB6CA61E94"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, contreplongée",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3870437,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3870437,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_536FF0EA-2270-ACAD-4D85-CADB8505AFE7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, contreplongée",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3874909,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3874909,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B7C58819-3D19-1F8F-3C8B-CADB964DC484"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3877000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3877000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_56B164EE-66AB-A6E5-6D4C-44ED49DECD2D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, contreplongée",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3881007,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3881007,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8EEC7247-937E-D425-D501-CADBB073280C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3885682,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3885682,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_81F3A998-F186-93C8-2E23-CADBCD305A2C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Panoramique vertical, plan rapproché poitrine, contreplongée",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3892796,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3892796,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5D71F464-1A9B-7A85-F217-CADF027CD627"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Apprentissage de la légende: Souleman légende la photo de sa mère (\"ma mère n'aime pas être prise en photo\")\nLe prof: Tu fais ça avec toutes les photos et tu as gagné. ++",
+"img": {
+"src": ""
+},
+"title": "Apprentissage pour légender une photo",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3903867,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3903867,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_592154CA-899E-0D01-5FA6-7E022EDF82A6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille ++",
+"img": {
+"src": ""
+},
+"title": "F.M. conseille à Souleymane d'ajouter une légende à sa photo",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3905195,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3905195,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E7967A1E-C579-69C2-8178-CAE008BC91FC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3914544,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3914544,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2B31EE36-F490-2DA9-DDFD-CAE1782C247A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3937919,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3937919,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_25CA2C53-A3B3-8CC5-FC86-CAE1AEC4128B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3949911,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3949911,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_45B0EE0F-D038-F9F9-8E82-CAE2FF059C98"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Le geste de reconnaissance du travail de Souleman n'est pas apprécié comme tel. L'attitude ironique se retourne contre son auteur: le prof ironique parfois n'est plus tout à fait crédible même quand il n'est plus dans l'ironie. Il reste un doute dans l'esprit de l'élève. --\nSéquences:\nAppréciation du travail de Souleman. François affiche les photos de Souleman.\nSouleman n'y croit pas (\"Mais vas-y! c'est pour me charrier!\" \"vous dites n'importe quoi!\")\nIl n'y croit qu'à partir du regard des autres élèves.\nLe message du prof (de valorisation) n'est pas pris pour un signal honnête, mais plutôt comme un nouvel avatar de son ironie.\nL'ironie ne ne clôt pas aussi facilement qu'elle se commence, forme de guerre pour la reconnaissance.",
+"img": {
+"src": ""
+},
+"title": "L'ironie prise à son propre jeu",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 3973349,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3973349,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_42CD3F85-EB77-B807-17DD-7E022EDFEC86"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. félisite Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3978165,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3978165,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6FB8ADE7-C42A-35AE-6856-CB6B3951A610"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. affiche le travail de Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3988328,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 3988328,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F8B3164C-5E09-A91E-6A95-CB6B59AE3092"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "F.M. explique à Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4004182,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4004182,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FE512524-B51B-1D9D-457E-CB6FE82C9913"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ++",
+"img": {
+"src": ""
+},
+"title": "F.M. affiche le travail de Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4008044,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4008044,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CE4A7B65-C167-184D-57EA-CB6FF0EDD2A3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4014141,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4014141,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5CB0DCBC-1D39-F4EF-596B-CB7008873965"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4016000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4016000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B3F6E08A-13B0-CB74-F10A-44F0B3DC3FC9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "\"c'est pour me charier\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4016377,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4016377,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4119B983-6660-E043-A2EB-CB701C1DAAFF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "\"aucune réserve\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4020646,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4020646,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8BDE9DCF-0743-3EEA-97FD-CB70295CC99C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. appelle le reste de la classe",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4023034,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4023034,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6B38F02D-A931-0788-B430-CB74908BE8C3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan",
+"img": {
+"src": ""
+},
+"title": "F.M. appelle le reste de la classe",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4027556,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4027556,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1F5C2C0C-A5F2-9D8B-C591-CB749B13B884"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapprochè poitrine, rapproché taille, travelling arrière ++",
+"img": {
+"src": ""
+},
+"title": "Les élèves se lèvent pour regarder le travail",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4030198,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4030198,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A28D2D08-17FD-6850-66CA-CB74D0B11423"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Détail des photos de Souleymane ++",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4038938,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4038938,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8A4DD35C-DA36-B64B-B21B-CB7524C8CE43"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4058858,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4058858,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9F399AD5-6F54-C7F8-73E9-CB79C31146A1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Ce plan",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4062200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4062200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_15A97530-AD3C-55B8-0CAD-44F1E22A1A7B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Le regard de Souleymane sur son travail ++",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4065565,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4065565,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2226B723-C254-33E9-EC5F-CB7BD4ED1D39"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "poème de Carl : j'aime pas la Star Ac .../... j'aime bien être ici.",
+"color": "10027008",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4070568,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4070568,
+"tags": null,
+"color": "10027008",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E4F28FD1-3834-F0E5-C559-31C0180201DB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4072200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4072200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_901AC95A-3575-8E0A-0A20-44F28DA215BF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "monologue, sonne faux... --",
+"img": {
+"src": ""
+},
+"title": "monologue : karl, j'aime...",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4072201,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4072201,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BF5F0AA0-D39A-DAC1-DC59-08E5A6D2C3FF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Carl",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4072600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4072600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_023806CF-B12C-A71F-998A-44F2B50B5E1A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan fixe le plus long du film\nJ'aime ....\nJ'aime pas ....\n--",
+"img": {
+"src": ""
+},
+"title": "Lettre de Carl",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4073172,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4073172,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_36FCC912-229B-0774-202E-E0B53788FACB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "salle de classe\nkarl lit son autoportrait à démarreur j'aime / j'aime pas\n--",
+"img": {
+"src": ""
+},
+"title": "salle de classe",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4073339,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4073339,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4FCF16F4-2830-23E3-2473-A27BF67EB3CD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "moment où l'on assiste aux contradictions qui marquent la vie du collectif enseignant et pédagogique. ++",
+"img": {
+"src": ""
+},
+"title": "la double annonce: la détention de la maman de Wei et la collègue enceinte",
+"color": "26112",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4132833,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4132833,
+"tags": null,
+"color": "26112",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E8E84F6D-CFC6-356E-62B8-31C6D9C180FD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Une expulsion et une grossesse",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4134000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4134000,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_684B3B53-355F-DA6F-8DCA-7E135252AA1B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "salle des profs\ncpe informe que mère de wei arrêtée pour expulsion, cpe fait quête\nprof annonce qu'elle est enceinte 'c'est pas le bon moment\"\nchampagne prof boucle sur wei ++",
+"img": {
+"src": ""
+},
+"title": "Salle des profs",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4146491,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4146491,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_84B9A441-C0E8-183F-1EDD-A27BF67EDCAD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Arrestation de la mère de Wei\nQuête pour un avocat\nChampagne pour le prochain bébé d'une prof (MOTS inapropriés : Enguéran)\nGrand respect de Wei = bons sentiments\n--",
+"img": {
+"src": ""
+},
+"title": "Salle des profs",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4146885,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4146885,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9D33ABB2-5477-601C-958B-E0B53788C83B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "La mère de Wei risque l'expulsion, les enseignantes fêtent le fait qu'une collègue est enceinte.",
+"color": "16737843",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4147568,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4147568,
+"tags": null,
+"color": "16737843",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F5E537FF-3F43-8BEA-8129-DF1FECA6AAD2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché ++",
+"img": {
+"src": ""
+},
+"title": "F.M. passe en second plan dès que sa collègue cite le prénom de Wei",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4158861,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4158861,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E6B8A41B-E8DE-1A15-1B27-CB7E6F9A35BD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan --",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4165568,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4165568,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F305C7FB-D212-E02B-42F4-CB81376B3E6B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute et demande quel sera le sort de Wei",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4205203,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4205203,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F02A78C6-CB56-1B42-26B9-CB7F09ED02E9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4260489,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4260489,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5E922888-3F09-6DC5-CCA7-CB82FC841701"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4268620,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4268620,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_53538DBF-0A51-686B-8F4F-CB831A6C1CB7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "en premier plan, F.M. regarde sa collègue ++",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4281019,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4281019,
+"tags": [
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15bdf39c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_55BF80DF-2F61-9A69-210C-CB8357B3A625"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4311844,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4311844,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2DA531A8-E23E-21F4-E29D-31CA2FD933B8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4313903,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4313903,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_345985C6-CA9F-3F4E-1EC2-79B49FB41D7B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "cour mach de foot ++",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/945_in.jpg"
+},
+"title": "plan 945",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4313960,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4313960,
+"tags": [
+{
+"id-ref": "15c06f1e-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F9CE5B2C-181F-9C4D-CAD7-B1273EE85139"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4314200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4314200,
+"tags": [
+{
+"id-ref": "15c07e28-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3BC7EDD6-6CD8-D4B6-55CC-44F434327B16"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "cour\nvue en plongée\nbagarre\n++",
+"img": {
+"src": ""
+},
+"title": "cour",
+"color": "65535",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4314520,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4314520,
+"tags": null,
+"color": "65535",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F1FDC431-AB52-696F-A088-A27BF67EAEC8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Match de foot dans la cour.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4316066,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4316066,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_69AD6803-8BFC-BE96-B263-DF22F3A44D90"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "match de foot ++",
+"img": {
+"src": ""
+},
+"title": "dans la cour",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4321725,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4321725,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_07149807-6D1B-A41B-033C-44F460E04060"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plongée sur la cour de récréation\nInjures --",
+"img": {
+"src": ""
+},
+"title": "Cour 3",
+"color": "65535",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4342224,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4342224,
+"tags": null,
+"color": "65535",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_77716DF2-2F1E-2BFE-75E9-E0B537888C5C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "convaincre -",
+"color": "3355494",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4366326,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4366326,
+"tags": null,
+"color": "3355494",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6A727F6A-FADE-03D2-EA22-31CB4AE94B76"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Exercice pour apprendre à défendre ses idées. L'enseignant perd le contrôle de la situation.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4376600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4376600,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_23A39A63-5BE0-AFD8-A34A-DF23E90068C9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Salle de classe 9 - Discours\nAgression contre le Mali de Nacine le marocain\nARGOT : tous les \"arres\" qui jouent ici\nArthur le Gothique : Défense du droit à être \"sombre à l'intérieur\"\nBoubacar : défense de l'équipe de Côte d'Ivoire\nCarl : défense des antillais - RACISME de Souleimane\nExpulsion de Soleimane accompagné chez le proviseur\n==",
+"img": {
+"src": ""
+},
+"title": "Salle de classe 9",
+"color": "16711884",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4376629,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4376629,
+"tags": null,
+"color": "16711884",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BE82C4F6-A8CD-546D-162D-E0B53788A519"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "salle de classe\nnassim sur l foot\narthur : défend son look\nboubakar répond à nassim\nkarl : soulé par coupe d'afrique : français, antillais\nvulgarité\nsouleymane viré emmené par le prof\n--",
+"img": {
+"src": ""
+},
+"title": "salle de classe",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4377531,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4377531,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D42ECA50-7144-6EE5-D5D4-A27BF67E5DA7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Débat autour du foot.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4379200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4379200,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EA8BCDED-3701-CDF3-A1D8-DF24BF95BD9F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Maroc/Mali",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4379404,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4379404,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_111E6D28-A9E8-ED40-1B8F-7E4268763127"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. apparaît dans le plan, plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "convaincre les autres",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4380208,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4380208,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_703D5E25-866C-5EF4-2F4C-FE73389900F5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. apparaît dans le plan, plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "convaincre les autres",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4380208,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4380208,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_83023F5E-2191-0D91-7333-CB88F6B407EB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapprochè taille",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute Nassim",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4389762,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4389762,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_46C62C01-7034-B16C-BE23-CB89162719E5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute Nassim",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4412933,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4412933,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C4BB96BA-D7EC-2F8B-783E-CB8972233BC1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain ++",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute Nassim",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4419234,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4419234,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D8E392D0-9E2B-0382-AC6B-CB8989C75916"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain ++",
+"img": {
+"src": ""
+},
+"title": "F.M.commente le discours de Nassim",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4439763,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4439763,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FB30248D-4CBE-B9DA-FDEB-CB89E51AD1EA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "F.M. commente le discours de Nassim",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4451145,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4451145,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_44494EAF-8CBD-2CEE-B0E4-CB8A08CFCD6E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "La contradiction \"différent/pareil\". Les tribus s'affichent.\nLe prof: \"Arthur, il y a une petite contradiction\"\nArthur le gothique.\nContradiction entre l'individuation (je m'habille comme je veux, être différent)\net l'appartenance à une communauté où il se fond (fringues portées par un grand nombre de gens, tous un peu sombres) --",
+"img": {
+"src": ""
+},
+"title": "Arthur défend son look gothique",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4459109,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4459109,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_683A613B-1771-2467-60A2-7E4258986C8A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, contreplongée",
+"img": {
+"src": ""
+},
+"title": "F.M. invite Arthur à lire son discours",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4459479,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4459479,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A6BE5221-E1B3-2117-F36C-CB8A375DFFB1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Arthur défend son style.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4465200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4465200,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8FB1FC9B-7475-FB38-0CC8-DF2629E05846"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4465800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4465800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4B38011E-90BA-39DA-2BA0-44F98A2ED924"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Convaincre - Défendre son look ( Arthur)",
+"color": "3355494",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4467507,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4467507,
+"tags": null,
+"color": "3355494",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CDF4EEFE-E24A-51F4-C0AB-31CCBF7A98D2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "en écoutant Arthur",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4470658,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4470658,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E9B9C8B3-AEC0-6D49-BAB8-CB9003B89898"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain --",
+"img": {
+"src": ""
+},
+"title": "F.M. dit à Souleymane de se taire",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4480008,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4480008,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C375F353-6BFA-7B1C-3292-CB90A4D8267C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "en écoutant Arthur",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4507041,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4507041,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0E10D592-3707-3FF4-D49C-CB91B62D1D5F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "commentaire au discours d'Arthur",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4520253,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4520253,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D1354091-E519-B4A8-48E5-CB925C07E112"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Métaphore ==",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/999_in.jpg"
+},
+"title": "Sombre à l'intérieur",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4527160,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4527160,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_727078B2-2076-1FB9-DC03-0F637B683738"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "commentaire au discours d'Arthur",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4539359,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4539359,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9A886F79-CCCC-F8D4-CEFF-CB936B4DFEDF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. invite Boubacar à faire son discours",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4548303,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4548303,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_30A4B51B-6E9D-D031-55A6-CB947B6FA179"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapprochè taille",
+"img": {
+"src": ""
+},
+"title": "F.M. assis parmi les élèves",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4553181,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4553181,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E950F44D-F01B-A7CC-1740-CB966B77BCEB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan ++",
+"img": {
+"src": ""
+},
+"title": "F.M. rit",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4570864,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4570864,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7C09A248-B5AB-3137-AC90-CB9758A69541"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Panoramique, plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. invite Karl à faire son discours",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4591800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4591800,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3AF5E406-715E-4F77-821F-CB98F79A1040"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Karl prend la parole.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4599000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4599000,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CD37BFD0-9D2B-07CE-853D-DF297F5B0297"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan --",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute le discours de Karl, il est tendu",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4606842,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4606842,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C1C84178-4EA9-59CC-CEAE-CB99E85DDC6B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4609000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4609000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8B963510-BAB8-9610-E063-44FA9DC8F537"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Pour le plaisir ++",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1037_in.jpg"
+},
+"title": "L'identité nationale",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4616194,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4616194,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D60D0B0E-97B8-BBB2-61F1-0F6587473A08"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "En premier plan, gros plan. Le point est sur Souleymane",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4647289,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4647289,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9E74605F-E477-0BD4-3EC9-CB9B2AB0B898"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Argot: un maquaque comme ça ==",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1042_in.jpg"
+},
+"title": "Un macaque comme ac",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4650160,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4650160,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1EDF812A-28A1-BFB9-0F69-0F6805BDEFE1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "En premier plan, gros plan, le point est sur les élèves ++",
+"img": {
+"src": ""
+},
+"title": "F.M. dit aux élèves de se calmer",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4652371,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4652371,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3367C979-1F2C-C827-E982-CB9B58ECA6C4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "F.M. dit aux élèves de discuter calmement",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4658062,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4658062,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3C3512F4-3E5E-3032-38EC-CB9D266C537D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4660200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4660200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E7C2117E-8361-1E5A-3DF5-44FB16279EEB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "confontation avec Souleymane 2",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4661400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4661400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_69CCDE8C-3F94-BB2D-2F2B-44FBC0A939EF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Souleymane commence à insulter les autres élèves.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4662155,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4662155,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5B83AD8F-7BCE-669C-6A03-DF28F6715D04"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "En premier plan, le point est sur Souleymane au centre du cadre. --",
+"img": {
+"src": ""
+},
+"title": "F.M. dit à Souleymane de se calmer",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4662737,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4662737,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_58FC80F3-7F68-45E2-F768-CB9DF6C01C0D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Souleymane tutoie F.M.",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4670902,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4670902,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0754E7BA-B0BA-58B5-230B-FDDA2A7A4710"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine,contreplongée",
+"img": {
+"src": ""
+},
+"title": "F.M. se lève",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4671477,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4671477,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C0EDCC8C-57DA-DF53-5943-CB9F9B094BFA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Début de la première dispute avec Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4673713,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4673713,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F3A448B1-B419-CDBC-08DA-CBA043875C1A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4674600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4674600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F727E1CF-689A-04F8-3F97-44FB448D53C8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M en premier plan,de dos",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4675136,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4675136,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AAC5EA8B-4BE6-9484-756C-CBA140573DED"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Contreplongée, plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4676356,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4676356,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_85E0F28C-B2CE-634F-3740-CBA15340E97B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4679000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4679000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5C586A65-3B65-2C80-8C32-44FB9CD9ABF0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. en premier plan, de dos --",
+"img": {
+"src": ""
+},
+"title": "Souleymane tutoye le prof",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4679405,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4679405,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CFD98E50-0572-6FE0-3541-CBA15B84CD2D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Contreplongée, plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "Souleymane envoyé chez le Proviseur",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4684080,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4684080,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1F13E542-9CB0-A6DF-CC76-CBA18F005DCF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4685800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4685800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A910226F-EF12-FEF7-AE60-44FC929994D1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Panoramique, Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. va avec lui",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4686112,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4686112,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FFBDE7F2-E0FB-8CF1-6AEA-CBA1963BA2B4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan, flou,",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1058_in.jpg"
+},
+"title": "F.M. quitte la salle",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4698760,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4698760,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D8A66E49-AAE7-F2C5-EF63-CBAABE3CBD64"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan horizontal",
+"img": {
+"src": ""
+},
+"title": "François emmène Souleimane chez le principal",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4699974,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4699974,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9A3DDAA3-E04C-E5D2-FD0F-79BA65C182C5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "François Marin accompagne Souleymane dans le bureau du Proviseur.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4700800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4700800,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6CDC6014-4577-8131-13CF-DF2AAAB58FBE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4701200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4701200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_34C93C96-22D5-B632-45AF-44FCCC5E86C3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Panoramique, Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M.descend les escaliers",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4703400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4703400,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_13F530D6-E91C-BAB7-9258-CBAD8B16A3B7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "couloir\nsouleymane prof\n--",
+"img": {
+"src": ""
+},
+"title": "couloir",
+"color": "6710886",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4703440,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4703440,
+"tags": null,
+"color": "6710886",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_806458E5-AA6D-2A9A-DD3B-A27BF67E6AF3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4708800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4708800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BC969A46-23AC-CC18-34D7-44FD10E1BF8E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. dit à Souleymane de se dépecher et regarde en haut où il voit sa classe qui le regarde",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4713200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4713200,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_117F50BB-6D21-B9B5-606C-CBADB1E09F08"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4717600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4717600,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8B102FD1-A802-1E92-7141-D0883998AA3F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan d'ensemble",
+"img": {
+"src": ""
+},
+"title": "Le point de vue de la classe",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4720000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4720000,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2755AF66-69E7-7A1F-1987-CBADCFF687B0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4721281,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4721281,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BDBF64CF-6532-D80F-4A7D-FDDC5EF6F1F9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen",
+"img": {
+"src": ""
+},
+"title": "En second plan, F.M. dit à Souleymane de se dépecher, Souleymane résiste",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4725800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4725800,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B151FEB6-640B-78C1-A93D-CBADE832D59C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen",
+"img": {
+"src": ""
+},
+"title": "idem",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4736000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4736000,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6AABD757-86EF-7912-5AC9-CBAE01F71BA3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. et Souleymane arrivent au bureau du Proviseur",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4739200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4739200,
+"tags": [
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c08184-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4BA1668D-A8C2-E7CB-84F9-CBAE2D3DCE86"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "bureau du proviseur",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4744123,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4744123,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9F5405E7-A777-BF75-AC62-A27BF67E5ABD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Bureau du proviseur\nAccusation : il m'a tutoyé (faible) --",
+"img": {
+"src": ""
+},
+"title": "Bureau du proviseur",
+"color": "16777215",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4746107,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4746107,
+"tags": null,
+"color": "16777215",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2E01E312-7C1A-B07C-D993-E0B537887E5F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4749400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4749400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_96550900-5469-EFBC-72DA-44FE4C87723F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Pla rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. explique au Proviseur ce que Souleymane a fait",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4750000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4750000,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C8B9F9E5-5171-B044-B89E-CBAE3F31773F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Panoramique, Plan rapproché taille, plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. quitte le bureau du Proviseur",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4766200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4766200,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_45707BFC-2475-9570-1613-CBAE9D964BD4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "couloir",
+"img": {
+"src": ""
+},
+"title": "couloir",
+"color": "6710886",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4774181,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4774181,
+"tags": null,
+"color": "6710886",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6F71BC73-47F2-D339-C271-A27BF67ED83D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4777800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4777800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A9C49A44-27FA-8407-7901-44FF9CDFEACB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Souleymane chez le Proviseur.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4778000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4778000,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D51A3F9F-8890-BEA9-D287-DF2B9EC76810"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "no focalisation sur le prof --",
+"img": {
+"src": ""
+},
+"title": "Souleymane et le proviseur",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4778200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4778200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_464CBE32-0D7C-BB07-303E-44FE92AA8C4F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "bureau du proviseur\nproviseur/souleymane",
+"img": {
+"src": ""
+},
+"title": "bureau du proviseur",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4780965,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4780965,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_952F6DDA-163B-E886-C299-A27BF67E77C0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Silence de Souleymane face au Proviseur.",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4798763,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4798763,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B004DA06-79A5-E488-6BDB-FDDDA7294BA3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Conseil de classe\nFélicitations pour Louise\nObservons l'attitude des pétasses (??)\n\n\n\n\n\nChérif\n\n\n\n\n\nChahut des délégués\n\n\n\n\n\nDéfense de Souleimane par le prof de français, il ne faut pas le sanctionner, Souleimane est scolairement limité",
+"img": {
+"src": ""
+},
+"title": "Conseil de classe",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4805610,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4805610,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FC83F8CE-6E13-60C7-31F3-E0B5378899FA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Le Conseil de classe.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4806000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4806000,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0B96D5B5-893F-CCD4-ED5B-DF2DA216CACF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Esmeralda conseil de classe",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4806400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4806400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5EA7074F-DA4E-C128-B6F7-450030CCCA4A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "salle du conseil\nconseil des classes\ndeux déléguées rient\ncas souleymane\nprof veut éviter sanction pour S et dit qu'il a peut être atteint ses limites\ndéléguées relèvent --",
+"img": {
+"src": ""
+},
+"title": "salle du conseil",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 4806440,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4806440,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4B193D7E-7EEE-B094-E2A2-A27BF67E7161"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Ici, on rappelle un fondement implicite de la délibération collective et égalitaire qui caractérise la prise de décision entre les profs : elle repose sur une exclusion constitutive, celle des collégiens en tant que pairs dans la discussion. ==",
+"img": {
+"src": ""
+},
+"title": "Conseil de classe de la fin du trimestre",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4806909,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4806909,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_704975DE-B32A-3647-2412-7E1D5F7430CE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4840400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4840400,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B35A1A7E-3080-F9F0-A25B-CBB690494908"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4857600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4857600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BC47345E-56E6-4DB0-C63B-4501846F608F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Le problème des félicitations",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4860247,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4860247,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CC8997E1-AC2F-516F-A74A-DF2E9DA07EE0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "les félicitations",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4861200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4861200,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CE333B66-3158-885C-0048-CBB7DE8EF2A4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. en premier plan",
+"img": {
+"src": ""
+},
+"title": "Contrechamp du plan précedent",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4866600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4866600,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DD4EF539-887B-293C-704E-CBB88CC6333C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. en premier plan ==",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute les autres profs",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4878200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4878200,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9EFA3593-1FEE-CC23-145B-CBB9525A74E8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4887800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4887800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4EFDF7AF-853E-5D75-970B-450207935ADF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. regarde Louise",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4891400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4891400,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AA066D4B-E3E6-F2E2-86DA-CBBA41051777"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Félicitations!",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4892600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4892600,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_07748665-280B-013A-08A4-CBBB5B51AAC7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4916400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4916400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B25D0F42-6176-2768-4CAF-4502BF9D7D4D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4925600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4925600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A4811B18-B186-B20A-62A2-4502ED357231"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4931200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4931200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0AA1021F-4311-2BDF-C094-45031E17F971"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4943000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4943000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A027FC3D-0FD2-2C8B-1406-4503A2BAC1B5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ++",
+"img": {
+"src": ""
+},
+"title": "F.M. regarde les deux filles",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4946200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4946200,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D10C112D-7E01-EB3D-DE82-CBBC99A9AC34"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4947600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4947600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_71B3D571-8A13-C936-03A8-4504030CAF04"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4951400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4951400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C44AD536-FC90-F6CE-D780-45043E42A549"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Esmeralda quitte la salle en riant.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4951791,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4951791,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1DF60C56-A7E4-D325-7F2C-DF30313D2B28"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "problème de conduite",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4963400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4963400,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1498C6C7-2E77-7BCF-10DB-CBBDCA573665"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Le problème de Souleymane.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4984609,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4984609,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_32ACA8D0-42E1-A5BA-626C-DF2FC4D9DC32"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché --",
+"img": {
+"src": ""
+},
+"title": "à propos de Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 4997400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 4997400,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E918E4A3-0847-4072-FB85-CBBE8F455E46"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5003400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5003400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_96270CAB-F154-2D06-2FD8-45051C952C40"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "à propos de Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5008200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5008200,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4190BBA0-2B94-946E-4ECC-CBBF8C26E8FC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5011600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5011600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D4B49C48-A305-EAE0-1D40-4505457DA048"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "à propos de Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5026800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5026800,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D26F47A9-028C-8045-27CF-CBC05A40EFED"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5031000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5031000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9E333A34-0674-E48B-E7A2-4505D4617B70"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5038600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5038600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F184598B-1D87-5965-A139-450614B278F3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5040600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5040600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7E205FCF-EDAF-5032-CF2D-450684836E1D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5054000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5054000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_35F3D6FB-E766-703B-EEA2-4506A8129C91"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5061811,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5061811,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6B43A701-CE90-6632-981B-79C20797B279"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille --",
+"img": {
+"src": ""
+},
+"title": "F.M.ne veut pas une logique de la sanction pour Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5078000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5078000,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_47528C2F-DB6B-6821-A304-CBC19654D1EA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. écoute",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5091200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5091200,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1B329BF4-D5AF-82EE-02C2-CBC239F46FAD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. s'explique et regarde les deux filles",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5096400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5096400,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EE4A74C8-9658-1583-7FE1-CBC2C77C3BB5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Regardant-regardé",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5105000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5105000,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7E802F04-1D5B-168B-C8B8-CBC385699147"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5105000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5105000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BE796FF4-1D44-98F4-D854-4507C8FBBB62"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "F.M. décrit son point devue sur la question de Souleymane",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5109800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5109800,
+"tags": [
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c5bc1c-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_21D036B4-F533-FC38-CA8E-CBC3E1051B1E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Si la position du personnage est celle de l'auteur je me demande si c'est ce qui a séduit le jury de Cannes : Le prof défend l'élève en niant son indiscipline et autres problèmes en pensant faire bien ou le mettre dans sa poche alors qu'il le dévalorise de manière sauvage simultanément !! --",
+"img": {
+"src": ""
+},
+"title": "défense souleman",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5115840,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5115840,
+"tags": [
+{
+"id-ref": "15c88230-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88230-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88780-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_99402203-1727-FF32-E984-BCAADF8003CF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ++",
+"img": {
+"src": ""
+},
+"title": "Valoriser les aspects positifs de ce qu'il fait",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5123000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5123000,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8DFCE82E-F566-265E-F940-CBC4C88ED352"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. en premier plan, flou",
+"img": {
+"src": ""
+},
+"title": "Contrechamp du plan précédent",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5134200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5134200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D126CF0E-B8DA-843E-7A6A-CBC58AD79EDA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "pln rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5143600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5143600,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C431107C-E8D1-03B5-8C8C-CBC753A79A69"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille --",
+"img": {
+"src": ""
+},
+"title": "\"scolairement limité\"",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5152800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5152800,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A3397165-8705-AEE7-8F5A-CBC810C326B7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Regardant-regardé",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5169800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5169800,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_91957E45-2471-965B-C034-CBC82E718C1C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5169800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5169800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_64A4D083-6435-782A-A2B7-4508EADC9734"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5180800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5180800,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9ADE2969-A8AA-A493-BF6C-CBC8F1803324"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5182400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5182400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2C212E74-BE28-B3E6-737F-45092EF5E3A5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Salle de classe 10\nPoésie\nAgression de Souleimane\nARGOT: Me casser\nMot inapropriés : Vengeance\nRire dans un conseil de classe c'est une attitude de Pétasses\nAgression par le tutoiement puis par agression physique et puis quitte la classe --",
+"img": {
+"src": ""
+},
+"title": "Salle de classe 10",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 5184081,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5184081,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F1AF6BED-56D3-C3AA-1245-E5F51F8CD47E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "==",
+"img": {
+"src": ""
+},
+"title": "L'incident.",
+"color": "16724736",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5186912,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5186912,
+"tags": null,
+"color": "16724736",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E870F089-16DA-9770-711D-DF31C92560DA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "salle de classe\npoésie tercet-quatrain\nretou sur moyenne\nprof fait commentaire sur conseil de classe\nvengeance\nil a dit que tu étais limité\nattitude de pétasse\nsouleymane pète un cable*\nkoumba blesse\n--",
+"img": {
+"src": ""
+},
+"title": "salle des classes",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 5187451,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5187451,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A1BEC7DD-9B57-FC37-9196-A27BF67E8558"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. fait cours",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5187600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5187600,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0789EA6A-BDF9-A1BA-119E-FE73389BCBC9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. fait cours",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5187600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5187600,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FA5997FB-16F3-0324-37D2-CBC94172C46D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5190800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5190800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FF3500C0-AB71-BABC-CB27-45096757C5A9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. fait cours",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5194400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5194400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_00DE9FFB-F3A7-7D15-9CD8-CBC9AAA7D75C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. fait cours",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5194400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5194400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_36D84D88-F4CB-A359-1C17-FE73389CC93A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5197200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5197200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2401A43A-DCF6-89D3-F558-4509835866E2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. fait cours",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5199200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5199200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_028A1D5D-287C-A0A9-3609-CBCA31F9795C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. fait cours",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5199200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5199200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_73DE1817-9C3A-195C-FB84-FE73389E7ED0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5203600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5203600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4D3E0CA2-F945-FE5D-33F5-4509B238F0CA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5208800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5208800,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EC59D45A-4956-450D-C751-CBCAEB56594E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5208800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5208800,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_09F291CF-FEB4-FCC6-CE34-FE73389F7834"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille --",
+"img": {
+"src": ""
+},
+"title": "F.M. corrige Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5217600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5217600,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_09FE8541-4FA8-9328-CD05-CBCBA87000CF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. corrige Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5226400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5226400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3B864103-B932-9953-AC25-CBCC4B3206D0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. corrige Koumba",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5226400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5226400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E1C36A2B-1C28-684E-75D6-FE7338A2646B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "F.M. écrit au tableau",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5233600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5233600,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FC8206B7-D780-3D92-EB01-CBCCCCA84EED"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "F.M. écrit au tableau",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5233600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5233600,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F7DDD4AC-1AB8-A34B-522E-FE7338A4DA53"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5240800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5240800,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A0D900BA-4DD6-1C04-CCE1-CBCD8B361930"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5240800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5240800,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6276D011-9D24-4035-3CDA-FE7338A5750D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5246200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5246200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_15E5E54F-C4CA-425F-C397-CBCE30039D26"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5246200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5246200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B0799A36-B115-86C1-4B9C-FE7338A87F15"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille --",
+"img": {
+"src": ""
+},
+"title": "on ne parle plus de la poésie",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5251000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5251000,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A5AFC3CA-E760-B1EC-373F-FE7338A9BA83"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. et la moyenne",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5256000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5256000,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2C129CFA-2FAC-B803-CA4F-CBCF246B2DC5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Début de la dispute",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5257400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5257400,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_05AF1F66-2336-B9B1-2104-CBD0496C2C58"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5257400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5257400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AE98F74B-0334-7ABA-CCC8-450B63EDD295"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "début de la polémique autour des déléguées",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5257400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5257400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C73E7C70-78BA-AFD2-470D-450BCD708D5E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapprochè taille --",
+"img": {
+"src": ""
+},
+"title": "F.M. provoque les déléguées",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5264400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5264400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_76E99466-1F29-9510-3067-FE7338AD362D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5266800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5266800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_31FF320D-6D4C-B750-BC5F-450B892ECE8F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5268400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5268400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EEAA575C-B474-490B-4A59-FE7338B0802E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5271000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5271000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_92276AF0-3223-E980-9216-450BAB413957"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5275600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5275600,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B89F513F-CCD8-8188-EC14-FE7338B2D743"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5277400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5277400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A1DB3C49-A522-C010-CB4F-450C47710370"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. tente de revenir sur la poésie",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5280200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5280200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_17CFC779-7BF0-FF9B-D08D-FE7338B4660C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5283800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5283800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E7C975EA-BBA9-159F-9C4E-450C87C117FC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Souleymane",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5285200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5285200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B553F798-5C12-FA4D-3C18-450CAFAFCACF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille --",
+"img": {
+"src": ""
+},
+"title": "F.M. est interrompu par Souleymane",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5285600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5285600,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0F219E82-0FB3-60E9-571F-FE7338B533B6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5286800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5286800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7A28A821-662A-5041-F55D-450D0A32BCD7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. s'approche de Souleymane",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5290600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5290600,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EDD68DC5-9BEE-C40A-EC3D-CBD3518F36B8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "F.M. s'expose",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5293400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5293400,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_93961711-624A-A658-53AD-CBD3DDDEBCA0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5293600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5293600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F01CB372-3E6A-8303-DAA0-450D464108C6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "F.M. demande à S. de s'expliquer",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5300000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5300000,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6E2EC514-B416-16E7-E857-CBD44741028C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5301400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5301400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A3A09ABE-EDC1-5442-AAB2-450D6A214F55"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ++",
+"img": {
+"src": ""
+},
+"title": "F.M. explique",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5304800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5304800,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7A2F61B4-F0D1-A7FA-0000-CBD513D64C8E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5311200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5311200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E3A62F6A-9023-C194-A555-450D9FC3D9EA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5315000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5315000,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1E12EE3F-0A2A-696B-CB8C-CBD58ABB6A45"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5317000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5317000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_27D44F4A-30F8-600E-8EAB-450DC3CDC572"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Mot inapproprié --",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1205_in.jpg"
+},
+"title": "La vengeance",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5317000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5317000,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D2CB9263-A6DA-FC19-9160-0F6B75DC432B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "\"vengeance\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5321600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5321600,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3B651223-8845-D883-F628-CBD5E24B6768"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5323600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5323600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BE392977-CCBA-8D56-BF0E-450DE85A1324"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "\"on n'est pas dans la rue\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5328400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5328400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BC9135D4-C8FB-4853-E401-CBD645D4444D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5332400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5332400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D24A3FA4-2983-AEC5-15BC-450E0B6348A8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ++",
+"img": {
+"src": ""
+},
+"title": "F.M. explique le mot prévenir",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5335000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5335000,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7868186F-7599-494D-7FD2-CBD6C4D5164E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5337800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5337800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D99C4B43-2927-A583-DB37-450E37AD69DD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5343800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5343800,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A999BFEE-70A1-C1AA-B6FE-CBD776F253A6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5352200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5352200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2006FFC3-A5C8-F52C-B9E1-450E700746F7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapprochè poitrine --",
+"img": {
+"src": ""
+},
+"title": "\"tu crois que je n'ai que ça à faire?\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5356000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5356000,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C273713D-D4FA-4465-CF22-CBD7DCF0CDF9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5358000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5358000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BD7D2F5A-5C3B-6F1A-99A4-450E88EAEEA6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché  poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5359400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5359400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5D5F60BA-7882-A7D1-0518-CBD87AFB7697"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5359753,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5359753,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_56515069-54DC-7FE2-105D-FDE1C21490E9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5360600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5360600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BD589102-4157-F27A-7BCE-450EE956A0EE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "F.M. est interrompu par Esmeralda",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5362200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5362200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6AE9945E-8217-1E3D-ADCB-CBD8F9B825DF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5363000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5363000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7BB3CC44-09F0-2090-736C-450F3DA0AD87"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan ++",
+"img": {
+"src": ""
+},
+"title": "F.M. encaisse les accusations des déléguées",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5378400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5378400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8D45051C-158F-81BD-B075-CBD9AB6C98C8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5378555,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5378555,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D1804326-0A84-51EC-6F77-FDE26A08F876"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5381600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5381600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_13C1E67A-A80F-3941-C5EA-450F6B24049B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché  poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5387400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5387400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_99BE425E-AE38-F2E2-6B74-CBDA44427A50"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5389600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5389600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FE8D4528-6EA5-5277-6402-450F92AFA5FD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "F.M. attaque les déléguées",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5394200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5394200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AAEF9EE0-98F6-BACE-D839-CBDADE374FCF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5398800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5398800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_46D14976-81CC-76F4-8612-450FD19EA459"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5405400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5405400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_81D1D90A-F122-B443-5D13-CBDBA3E6C1A1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Dérapage rôle François",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5406034,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5406034,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E17EAC28-62F9-1B8E-553F-7E2BD2856C80"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5406400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5406400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E301C7AD-01F5-1907-A52C-45101F4310A2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5407800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5407800,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8EE270C7-C937-92E8-4BCC-CBDC0F44FC84"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Dérapage rôle François",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5409726,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5409726,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5BAACABB-2D0B-210C-ED47-7E3CAD348FA1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Dérapage rôle François",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5409726,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5409726,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_33859CEF-1AF5-AD90-1AF4-7E33CC052097"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Les discussions entre profs et collégiens, dans la classe, prennent la forme non d'une délibération mais d'un exercice maïeutique assez paternaliste, avec lequel François offre une plate-forme d'expression aux élèves tout en s'enroulant dans les volutes de son habileté rhétorique et pacificatrice. \nC'est cet équilibre qui se brise, ici. François se voit rappeler que l'exercice d'un pouvoir porte des contraintes, d'ordre sémantique donc de rôle, pour celui qui l'exerce. \nNénamoins, ce rappel à l'ordre se produit fort tard (1h30 après le début du film), et pour peu de temps (6 minutes plus tard, François est de nouveau en train de jouer le défenseur dûment appointé des intérêts de ces laissés pour compte) : il ne s'agit en aucun cas d'un moment de rupture dans le film, simplement d'un nouvel éclairage. --",
+"img": {
+"src": ""
+},
+"title": "Dérapage rôle François",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5409726,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5409726,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1AD7771D-D66E-2C0A-956C-7E28CEAA7E6C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Dérapage rôle François",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5409726,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5409726,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_84AD2B61-41CC-1FF1-DC1B-7E2B8BD84075"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5413000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5413000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D34064AA-C740-549C-28C6-4510475E3D5F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "\"c'était pas très sérieux\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5415800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5415800,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B695CBD2-C424-9E7C-EA9A-CBDC81E652C4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5416800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5416800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4568CEDA-FB44-F096-0701-45105FF9ECBB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5417068,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5417068,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8A88894E-5BA3-3340-244E-FDE461EB5677"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. répond à Esmeralda",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5420000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5420000,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_167E19B6-5A15-6ADD-B673-CBDD04EDE9C3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5424800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5424800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8A78D698-B129-8C1E-E9BD-4510C4AA343F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5426656,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5426656,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D5C5A63E-4F00-681D-7BFD-FDE4A44FA26F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Insulte ou pas ??",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1240_in.jpg"
+},
+"title": "Pétasses",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5428610,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5428610,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F0FCE45C-8B9B-4EC8-DD76-0F6DBFD38E68"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "\"attitude de pétasse\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5429400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5429400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_25AB183F-CE8A-A646-4B94-CBDD9DA5DE90"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "\"attitude de pétasse\"",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5433800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5433800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4B28CDEF-54D0-9BB2-91C5-45110EFA56F4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5438200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5438200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_906410C2-EFBB-8D5A-9E00-CBDE1BE6AD4C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5438200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5438200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_56C93B60-6A77-E352-6A30-FE7338B9080D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5441800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5441800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_42668675-B0C0-AB71-B052-4511642A03DB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "traiter/insulter",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5443000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5443000,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_23BA712F-E540-B67A-F0E0-CBDE6B1CA648"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5445000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5445000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_525AD3E4-17A9-8A90-07AA-4511ADFD7187"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "traiter/insulter",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5447400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5447400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_43448B39-AEA7-57D7-B5F9-FE7338BDBC62"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5452000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5452000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_34AAB828-A3B8-0442-82B4-4511EAC369AA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5454800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5454800,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FABC9A29-E39F-8EFC-7EDA-CBDF3D035B5F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5458400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5458400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9CE6613B-5783-0CCC-0EB5-4512126F5950"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5461200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5461200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_150D1E43-0131-FEC6-DF48-CBDF94F8B824"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5461200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5461200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_25313BED-E864-8C11-AD3D-FE7338C1B55A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5463000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5463000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6AE36E1F-B7ED-682E-25DD-451230410B2B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "F.M. répond à Karl",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5466200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5466200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_168777C2-1021-E537-D082-CBDFD388BD1E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. répond à Karl",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5466200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5466200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_595042BC-3B26-C92E-7C48-FE7338C3E42A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5467000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5467000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AEDAE41F-3057-C6B0-7B25-451245A55840"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Panoramique, Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5469200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5469200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FE16B122-5981-315A-552F-FE7338C511F4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Panoramique, Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5469200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5469200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4168E681-930B-C35A-42DF-CBE0622E7D89"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5471400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5471400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B94B9F93-E810-8BFD-18C0-451264D0F22D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "F.M. discute avec Souleymane",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5473400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5473400,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_59FC4445-65E5-B982-002D-CBE0BA60E2B9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5475000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5475000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FDCF4B17-0D39-EC48-6AFD-45127C02BD73"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5477000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5477000,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BB2F63A4-3C26-81CE-8126-CBE114AB02A4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5480800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5480800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B492FB0E-8BB4-D6BE-4F82-4512A1249599"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "tutoyement",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5484200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5484200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_10732D3D-074A-0EBD-DD46-CBE153E03A4D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5486200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5486200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_251CA667-C61C-4100-D14C-4512BA62BD4F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5488200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5488200,
+"tags": [
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15c88c30-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_461CD05A-9CED-928D-CB6A-CBE1B29EC014"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5489800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5489800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_81401D9D-C8F5-0388-A4F6-4512E009690E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Là le pétage de plomb va être considéré comme l'incident très \"grave\" par l'institution et le prof/auteur sait qu'il est en partie responsable en l'ayant humilié injustement (bien qu'indirectement via les \"pétasses\"). Mais si le comportement est effectivement grave, je me demande si les autres problèmes plus fréquents et plus nocifs selon moi (normes de bruit, impunité des \"délits\" ordinaires des élèves, concentration des problèmes sociaux, etc.) ne sont pas mis au second plan dans ce film et dans les débats en général.\n??",
+"img": {
+"src": ""
+},
+"title": "pétage de plomb",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5495419,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5495419,
+"tags": [
+{
+"id-ref": "15ce845a-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CA9E5498-988A-80D0-EB61-BCB520B2C3BE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "\"tu te crois fort?\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5496200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5496200,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D29273EE-5C91-7D15-93B3-CBE2B33943EB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5497800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5497800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0B31E073-D588-F184-C21E-4513538A0804"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. s'éloigne de Souleymane",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5508200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5508200,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3D0A1247-1DDB-1FB4-E79B-CBE39CECB9EC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. s'éloigne de Souleymane",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5508200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5508200,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_17A31537-70F1-15DC-B7FB-FE7338C7A560"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5510200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5510200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_91ED85FD-A16D-13D2-505E-45138151F50A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5512800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5512800,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_033F3FB2-DFA1-D131-4EA0-CBE411D60C33"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "violence de Souleymane",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5513400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5513400,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_19CDDAEB-8D4A-3A9F-7469-CBE6E3236E45"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5514000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5514000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B24AC19E-E076-8B75-CF6E-451406EA8F8B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5514800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5514800,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7AD174A0-6C1C-262C-6365-CBE4492E1B42"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5519400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5519400,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_201F6B0A-F72E-23E8-7CE1-CBE589743291"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5521200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5521200,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_73CC009B-3515-3E57-33C5-CBE597C06BA6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5524600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5524600,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_72BB1F7F-CCD8-3E88-F7C8-CBE5ADCFFE4C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5527200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5527200,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1E0DDCE7-B8FD-BFDB-81CD-CBE5D7C47052"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Silence après l'incident.",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5527948,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5527948,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2FBB04CB-3E3B-A6A6-EC31-FDE6EEF93250"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Silence après l'incident.",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5540804,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5540804,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_29075858-3B93-5F88-5804-FDE78C026AF9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "salle des profs\nprof rédige incident souleymane ==",
+"img": {
+"src": ""
+},
+"title": "salle des profs",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 5541349,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5541349,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9495B05F-E3D9-7708-5FD1-A27BF67EC311"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan moyen ==",
+"img": {
+"src": ""
+},
+"title": "F.M. rédige le verbal de l'incident",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5541600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5541600,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CF9F961C-F242-079A-3576-CBE6446B5E5B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "François Marin dans le bureau du Proviseur.",
+"color": "16737843",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5542077,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5542077,
+"tags": null,
+"color": "16737843",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F5F811C5-D002-4169-AE8E-DF32900AC313"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Compte-rendu au proviseur",
+"img": {
+"src": ""
+},
+"title": "Compte-rendu au proviseur",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 5548001,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5548001,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_22DA5C3E-9DDC-EE58-100B-E5F51F8CE86A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "Dialogue F.M. /proviseur",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5549800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5549800,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6917C022-317E-D708-12A6-CBE75A145685"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "==",
+"img": {
+"src": ""
+},
+"title": "Détail : le verbal de l'incident",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5550400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5550400,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F642CAE5-B94F-DE86-4A4C-D0907E43E0DF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "bureau du directeur \nmains tenant lettre",
+"img": {
+"src": ""
+},
+"title": "bureau du directeur",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 5550672,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5550672,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D62FFBBC-0A1B-AA07-5D25-A27BF67EC60B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. en premier plan, le proviseur en plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "dialogue F.M./proviseur",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5562000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5562000,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FBE54AD0-C124-222F-B2F1-CBE77AEB63AA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. en plan rapproché poitrine, le proviseur en premier plan",
+"img": {
+"src": ""
+},
+"title": "dialogue F.M./proviseur",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5570800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5570800,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_448AA1F9-00AC-2DE9-B33B-CBE7B095A883"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5584000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5584000,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A0513700-B8C3-398C-16B4-CBE89F689DDC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Panoramique",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5593000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5593000,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B5DEA64D-BD7B-4AD0-37C1-CBE96563B71C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Les deux interlocuteurs ne sont plus les sujets d'une discussion dont l'objet est ailleurs, mais se donnent pour objets de la discussion, en tout cas pour l'un des deux. C'est là aussi une rupture de la délibération coopérative. ++",
+"img": {
+"src": ""
+},
+"title": "L'avertissement à François",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5610299,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5610299,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_58DB1307-5388-1B1D-C51D-7EC550DBC6EF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Lieu forcément intermédiaire : l'escalier vers la cour --",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1300_in.jpg"
+},
+"title": "Le purgatoire avant la plongée en enfer",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5610480,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5610480,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E1E81982-82BC-17BF-ABA3-0F10EDA852F7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "couloir\ncpe avec prof, élèves se plaignent d'avoir été insultées ==",
+"img": {
+"src": ""
+},
+"title": "couloir",
+"color": "6710886",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 5610939,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5610939,
+"tags": null,
+"color": "6710886",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4C0CB713-F70C-6DC0-D4EA-A27BF67EE4C9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "La collègue que les élèves ont renseignée previent François Marin.",
+"color": "16737843",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5610951,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5610951,
+"tags": null,
+"color": "16737843",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7DB7E0DA-9E33-9767-9E84-DF33D03C4A93"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5611600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5611600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E24FFA1C-EC6F-6978-80BA-4514F0A7D053"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Travelling avant, plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "Une collègue s'approche",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5611800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5611800,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_24791B6D-6FFB-90EF-977F-CBE9B2B47230"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5630600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5630600,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_076F818F-1ABE-6C5D-DDF3-CBE9F783CC28"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5640000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5640000,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2F83C5DE-B4CB-C3B1-E119-CBEA3C65391E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plongée, plan rapproché taille ??",
+"img": {
+"src": ""
+},
+"title": "\"tu l'as fait ou tu l'as pas fait?\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5653600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5653600,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C473352E-8F82-E94B-13B3-D0964C3FCC7A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ??",
+"img": {
+"src": ""
+},
+"title": "\"ça n'a rien à voir avec Souleymane\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5660600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5660600,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_011E88C1-4224-6430-BD5B-D0978A71D50A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "Contrechamp",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5667800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5667800,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DCFBCC3B-6EC4-7620-A3A8-D097CDE344AC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Panoramique vertical, plongée ==",
+"img": {
+"src": ""
+},
+"title": "La subjective \"indirecte libre\" de F.M. sur les élèves dans la cour",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5670600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5670600,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DD650764-B480-C0A7-1A4B-D0999691C584"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5670968,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5670968,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0C8253FF-5979-A990-2348-FF06E955D0EC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "le prof est entouré par les élèves ++",
+"img": {
+"src": ""
+},
+"title": "sur le même plan",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5671000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5671000,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_638EBF9F-93D1-E363-B339-4518735A8035"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Dans la cour, François Marin succombe face aux élèves.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5671404,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5671404,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2BB17A83-5EAF-348C-A1FB-DF35397FC05A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Le plan montre les élèves de F.M. qui gagnent la cour, leur espace, dans lequel nous n'avons pas encore vu s'aventurer un enseignant. La caméra est posée en plongée à travers une vitre: cela accentue la sensation de regarder dans un acquarium, dans lequel, finalement, l'enseignant décide de plonger, à son risque (la scène qui précède est, au fait, un avertissement pour F.M. dont les derniers mots sont \"merci de me prévenir\"). ++",
+"img": {
+"src": ""
+},
+"title": "Plan de transition avec la scène précedente.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5671851,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5671851,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B0EDE125-B055-800B-3A74-FF1047955F04"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "2e prise de vues horizontale; la scène est filmée au niveau du visage des acteurs. Ici François se met en danger, dans son statut, en se livrant à une dispute qui, dans les arguments mobilisés, comme dans la gestuelle et le lieu choisi, le place sur un pied d'égalité avec les collégiens. ++",
+"img": {
+"src": ""
+},
+"title": "François engage un conflit avec les élèves, dans la cour",
+"color": "10040268",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5674895,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5674895,
+"tags": null,
+"color": "10040268",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D8DF34F7-A611-B34C-BB31-7EEF605C9F36"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Les bruits de couloir\nIntervention d'un prof.\nCour de récreation = objectif d'être puni\nSENS du MOT : Prostituée\nInjure : les profs sont des enculés\nRevendication d'égalité devant le langage - Je suis prof et j'ai le droit d'utiliser des mots qui vous sont interdits\nL'enjeu révèlé par Koumba : il sera renvoyé au Mali\n--",
+"img": {
+"src": ""
+},
+"title": "La cour interdite - L'enfer profanée par le prof",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 5677498,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5677498,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0C78B05C-4F48-CD29-79EC-E5F51F8CF092"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain ++",
+"img": {
+"src": ""
+},
+"title": "F.M. affronte les élèves",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5679200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5679200,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D655B922-0447-99A9-A487-D09ABE0C0E9A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Il entre dans le champ comme un joueur entrerait dans le champ de foot, cadré en plan américain. ++",
+"img": {
+"src": ""
+},
+"title": "F.M. traverse la cour pour rejoindre ses élèves.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5679538,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5679538,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B8640BD2-23A9-8346-36C4-FF14B661FC7A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Panoramique, plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "F.M. affronte les élèves",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5681800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5681800,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C79AABBF-789B-CE22-69B9-D09C82EF26A2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Légère plongée, on ne voit que les têtes des élèves, que F.M. a encore l'espoir de pouvoir gronder. \nLa triangulation des regards a pour fonction de mettre en évidence l'attente pour la scène qui se prépare. Voir les scènes d'affrontements dans les cours des prisons dans les films (ex. Romanzo Criminale) ==",
+"img": {
+"src": ""
+},
+"title": "Le regard de l'enfant sur le fond, le regard de la fille en premier plan construction d'un triangle avec la figure de F.M.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5682216,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5682216,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B327C937-7139-0D3C-B374-FEAA8C0F1F0F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "prof avec les filles dans la cour\nprof et karl, insulte prof --",
+"img": {
+"src": ""
+},
+"title": "cour",
+"color": "65535",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 5683195,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5683195,
+"tags": null,
+"color": "65535",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F98A8C13-92CD-96AD-B571-A27BF67E58CC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Il cherche l'affrontement frontal. ++",
+"img": {
+"src": ""
+},
+"title": "La caméra effectue un panoramique suivant le mouvement de F.M. qui s'approche au groupe.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5684895,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5684895,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C37AD320-62FF-C3B9-59FE-FF19DEF10A96"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Ce n'est pas un plan subjectif de l'enseignant, la caméra est placée parmi les élèves: ce n'est pas un regard privilegié, même si logiquement F.M. est plus grand que les élèves et ne devrait pas avoir des obstacles à son regard. La caméra doit trouver son chemin pour cadrer les deux déléguées, elle doit même effectuer un zoom. Ce plan nous montre que le regard de F.M. doit aussi trouver son chemin,  A TRAVERS les élèves : il doit se mettre au niveau des élèves (la plongée dans l'acquarium). ++",
+"img": {
+"src": ""
+},
+"title": "Point de vue à la hauteur des élèves.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5687573,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5687573,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EF3F6B94-6A09-0AAD-4130-FF1B02CABCD1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "\"Vous auriez pu passer par moi quand même\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5690000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5690000,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C181EE67-2067-2E16-60F1-D09AD1381C05"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5691322,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5691322,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1DA5CE40-5562-0268-C4ED-FDEA0786C97F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Le contrechamp d'un plan qui montre F.M. nous montre l'objet de son regard, les deux filles. Leurs visages occupent tout le cadre, ne laissant pas d'air. ++",
+"img": {
+"src": ""
+},
+"title": "L'objet du regard de F.M.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5692394,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5692394,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9743C6A5-1524-31D0-22AF-FF1F163A8E3D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, F.M. est entouré par les élèves ==",
+"img": {
+"src": ""
+},
+"title": "\"ça ne marche pas dans les deux sens\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5696000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5696000,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B120D937-F7CD-89E8-5D7E-D09AEABD7E4A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Un ballon sur le fond.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5696143,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5696143,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A505AC80-94BD-8CC4-A6B0-FF2069871ECD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1318_in.jpg"
+},
+"title": "plan 1318",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5699360,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5699360,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6245CE3D-5117-260B-C66C-D0A475F2AAB4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1319_in.jpg"
+},
+"title": "plan 1319",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5701080,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5701080,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0A1391DC-7F88-61F7-8EA0-D0A48E5FDDE9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "to block an opponent (football) == gêner l'adversaire",
+"img": {
+"src": ""
+},
+"title": "la vue de F.M. bloquée par la tête d'une élève qui s'interpose entre lui et la caméra",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5703643,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5703643,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_118B6080-70F8-7DEA-EC25-FEE7CBA7AC27"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1321_in.jpg"
+},
+"title": "plan 1321",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5704000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5704000,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_33FA67AA-0770-92C5-8D20-D0A4BEC37ED4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1322_in.jpg"
+},
+"title": "plan 1322",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5707560,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5707560,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A8A81FBA-B905-24C1-D615-D0A4F4634B7F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1323_in.jpg"
+},
+"title": "plan 1323",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5709320,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5709320,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F13BB3A8-2C9E-E970-0625-D0A50AE60C5E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1324_in.jpg"
+},
+"title": "plan 1324",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5710960,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5710960,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4A2F6A0E-4125-D6EA-CE5D-D0A519A27FE1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "à l'apparition du mot pétasse ++",
+"img": {
+"src": ""
+},
+"title": "La caméra effectue un mouvement en arrière et un panoramique pour cadrer F.M. de face",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5716177,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5716177,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8C235D9C-5FD6-0BC4-D40B-FEEB26030154"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1326_in.jpg"
+},
+"title": "plan 1326",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5716520,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5716520,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2E065BE8-A5DC-6FAD-BCE2-D0A550E8EDA6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "==",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1327_in.jpg"
+},
+"title": "Pétasse : fille qui ricanne bêtement",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5716924,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5716924,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_94975E5F-047D-6688-B0E8-0F72C653B7CD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1327_in.jpg"
+},
+"title": "plan 1327",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5718600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5718600,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2CFB47D3-740A-FBC4-DD48-D0A578D994E7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1328_in.jpg"
+},
+"title": "plan 1328",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5720840,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5720840,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_18B8DD97-EA86-BE9F-98A2-D0A5873C396F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Un plan plus long que les autres coupe la régularité du champ-contrechamp et souligne le gêne de l'enseignant qui n'arrive pas à se faire comprendre et qui doit renoncer à se défendre par rapport au mot \"pétasse\". ++",
+"img": {
+"src": ""
+},
+"title": "Seule la tête de F.M. sort du groupe des élèves.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5721507,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5721507,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8582F461-A1A1-1351-DEB4-FF2344D5CC60"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "champ moyen, plongée, la vision de l'acquarium. ==",
+"img": {
+"src": ""
+},
+"title": "Coupe sur l'axe",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5728283,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5728283,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6BD21901-8D62-3EF2-2C2F-FF24E16B7CF2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "plan moyen",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1329_in.jpg"
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5728680,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5728680,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E185A70E-E8E4-01CD-DD9A-D0A5A9A55209"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5728818,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5728818,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_95526956-2B31-0BB6-39B1-FF0814BC4591"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1330_in.jpg"
+},
+"title": "plan 1330",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5732280,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5732280,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5EE8F07F-50D4-EB56-B358-D0A648BB9300"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1331_in.jpg"
+},
+"title": "plan 1331",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5735480,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5735480,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_11F2CDFF-9ABB-6FC5-A41F-D0A66F206249"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1333_in.jpg"
+},
+"title": "plan 1333",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5739400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5739400,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CEFCCDED-70AD-1911-070E-D0A693A67C73"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1334_in.jpg"
+},
+"title": "plan 1334",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5741920,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5741920,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9747A383-30A1-4E6A-A552-D0A6C419CBD3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1335_in.jpg"
+},
+"title": "plan 1335",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5744120,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5744120,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_93F61AAA-5755-DBE7-7151-D0A70B531BC3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1337_in.jpg"
+},
+"title": "plan 1337",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5749880,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5749880,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4F377CC5-E454-5314-EBBD-D0A7351BBA1C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Koumba encadrée par les corps des autres personnages.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5758279,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5758279,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1E23EC32-D03E-0883-D38B-FF2660A0DE84"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1339_in.jpg"
+},
+"title": "plan 1339",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5762840,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5762840,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_87EC6225-B813-EF67-F61F-D0A7765D563E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "==",
+"img": {
+"src": ""
+},
+"title": "Gros plan (duel à la Sergio Leone?)",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5768560,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5768560,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_72D91A68-244A-D735-A1D2-FF28A3041B2B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1341_in.jpg"
+},
+"title": "plan 1341",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5768720,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5768720,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1169EBB3-F88C-910C-D3F3-D0A7B25BB223"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1343_in.jpg"
+},
+"title": "plan 1343",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5771840,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5771840,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B42A5E69-68DA-5B45-E148-D0A7FCBF9F6D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1345_in.jpg"
+},
+"title": "plan 1345",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5773640,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5773640,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DAB72531-60BB-D5F1-AD5C-D0A829C89978"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1347_in.jpg"
+},
+"title": "plan 1347",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5777000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5777000,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EF7569EE-B333-3F63-9696-D0A8539A8062"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1349_in.jpg"
+},
+"title": "plan 1349",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5782840,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5782840,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_950664BF-3D4B-1BAC-B9CF-D0A88033C401"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1350_in.jpg"
+},
+"title": "plan 1350",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5787920,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5787920,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AC89B700-9E6F-573D-05CC-D0A8AF749B5F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1351_in.jpg"
+},
+"title": "plan 1351",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5794320,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5794320,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4C15C044-801B-1144-4194-D0A8D4F8EF4A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1352_in.jpg"
+},
+"title": "plan 1352",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5796760,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5796760,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5AEEA539-CA1E-3F1E-EDBA-D0A8F9F88107"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1353_in.jpg"
+},
+"title": "plan 1353",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5801920,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5801920,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_14346178-9551-74A7-3D06-D0A9177DE002"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1354_in.jpg"
+},
+"title": "plan 1354",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5805440,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5805440,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E298559C-8384-8BA0-7763-D0A94699E035"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1355_in.jpg"
+},
+"title": "plan 1355",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5808280,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5808280,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_35046A5A-43AC-9DEF-B867-D0A998B120C3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1356_in.jpg"
+},
+"title": "plan 1356",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5811840,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5811840,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_58C0B59F-7994-6A73-64D8-D0A9AD0B2548"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Les mots n'ont pas la même valeur selon qui les prononce --",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1357_in.jpg"
+},
+"title": "Moi je suis prof",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5813605,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5813605,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_808AC713-76F2-2831-8644-0F7530103A24"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1357_in.jpg"
+},
+"title": "plan 1357",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5814040,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5814040,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2B44A25C-26AB-EBD5-661E-D0A9DB7A9BC8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "==",
+"img": {
+"src": ""
+},
+"title": "une flèche jaune relie la tête de F.M. au groupe des élèves",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5831664,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5831664,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B03B0EE5-F68E-5F2D-51E6-FF000D60080C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan ==",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1359_in.jpg"
+},
+"title": "\"ça suffit\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5834680,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5834680,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1121E174-AF1C-4716-7020-D0AA26E184E4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Gros plan : la tête de F.M. est coupée en deux",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5834878,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5834878,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2A66E8A3-1504-334A-ED5C-FF2ABFA56AB3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "craque ça suffit",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5835400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5835400,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B4785DC2-6584-8F29-C718-D08561812F9B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "La caméra suit F.M. qui sort du champ de bataille.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5837650,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5837650,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0FABED8F-980E-B599-FC60-FF2B4D027544"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "F.M. quitte la cour",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5839000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5839000,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6589C48C-FA97-761F-6B94-D0AA61577450"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Panoramique, de plan moyen à plan rapproché poitrine",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1360_in.jpg"
+},
+"title": "F.M. rentre dans le bâtiment",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5839320,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5839320,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_90A6D6DF-4CB0-C5A7-F994-D0AAD206B2B0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "La sortie du champ est complémentaire à son entrée : là il se dirgieait vers la lumière, ici il se dirige vers l'obscurité, il ouvre une porte vitrée et il entre dans un esapce finalement protégé des voix des élèves, où la caméra l'attendait. ++",
+"img": {
+"src": ""
+},
+"title": "Coupe à 180°, plan américain.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5839470,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5839470,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1DE09FA3-FF51-9BE4-5E79-FF2BAE070A78"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "La caméra attend François Marin dans le bâtiment : la focalisation sonore est à l'intérieur et correspond au désir de l'enseignant de ne plus rien entendre. ++",
+"img": {
+"src": ""
+},
+"title": "Silence après l'échange violent.",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5839699,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5839699,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AA6376B1-20B3-00A9-771C-FDEBF18AE333"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5839699,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5839699,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0E761BBE-38A9-8D99-A7C3-FF09D6BC0C8B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "couloir\navec koumba",
+"img": {
+"src": ""
+},
+"title": "couloir",
+"color": "6710886",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 5844453,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5844453,
+"tags": null,
+"color": "6710886",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_10F80A4B-FEBD-D689-5FB4-A27BF67ED74C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "??",
+"img": {
+"src": ""
+},
+"title": "Koumba rejoint F.M. : signe de solidarité ?",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5844600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5844600,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F3DC422D-2866-710E-1429-FF31EF867DA9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "==",
+"img": {
+"src": ""
+},
+"title": "Koumba previent F.M. que souleymane risque d'être renvoyé au Mali.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5849310,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5849310,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1383DA4F-8AF1-4AC9-6518-DF3686A818E7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5849400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5849400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_99823EC5-FADC-3B25-343B-451953C4CBD7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1363_in.jpg"
+},
+"title": "Koumba s'approche de F.M.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5854200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5854200,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B7164307-D967-CF70-E116-D0AB4E37EB35"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5858200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5858200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B4D09C2A-3CE5-D38C-D82F-451983C09252"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1365_in.jpg"
+},
+"title": "Koumba parle à F.M.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5863120,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5863120,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_07FBDC4F-ADA8-E0E4-C370-D0AB8C672B6D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5872400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5872400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_73E0D055-A186-CE2D-38DC-4519D713DEF0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1367_in.jpg"
+},
+"title": "suite du dialogue",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5881720,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5881720,
+"tags": [
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15ce89be-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8CDD7F15-6A95-6D91-B94B-D0ABD884FECB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5890400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5890400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_896F1045-6DFD-624A-C9C5-451A08FB4C6A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1369_in.jpg"
+},
+"title": "F.M. descend les escaliers",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5892280,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5892280,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6492AC85-9E99-0981-A738-D0CFDED3C0DB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Cigarette à la cantine",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5895537,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5895537,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A04C6E63-0540-7E3C-24A2-79D54AD1706A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1370_in.jpg"
+},
+"title": "F.M. allume une cigarette",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5898840,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5898840,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D438ED49-DC39-438F-CB96-D0D099C24205"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "cantine\nprof fume",
+"img": {
+"src": ""
+},
+"title": "cantine",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 5899707,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5899707,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0607ED1B-BCC8-C943-7EED-A27BF67E7F6E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "F.M. cherche la solitude dans la cantine.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5899832,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5899832,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C82FDAFD-8F4C-7363-C84D-DF3776899E29"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Restaurant puis salle des profs\n12 conseils de discipline l'année passée, pour 12 exclusions\nFaut il prendre en compte le risque de retour au bled ? Se substituer aux parents ?\nSouleimane n'est plus avec nous depuis longtemps. ??",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 5907429,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5907429,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1FFFAC83-BE60-7079-B90A-E5F51F8C8557"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1371_in.jpg"
+},
+"title": "F.M.réfléchit",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5920480,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5920480,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B10568CD-9592-4185-9F8C-D0D1B6C06469"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Structure en abyme de la séquence : c'est la discussion même, dans sa structure, sa finalité, et ses conditions d'accès qui est l'objet de la discussion.\nAutre chose, latent dans le reste du film, est éclairé crûment, dans cette scène (12 exclusions sur 12) : la dynamique participative et délibérative du collège produit aussi sûrement de l'asservissement et de la violence que ne le ferait un exercice tyrannique du pouvoir. --",
+"img": {
+"src": ""
+},
+"title": "François contre la tenue d'un conseil de discipline",
+"color": "16763955",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5933280,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5933280,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763955",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2BD599F1-C58E-1B78-C146-7ED624F4C2BA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1378_in.jpg"
+},
+"title": "Discussion entre enseignants sur l'utilité du conseil de discipline",
+"color": "3407871",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5933900,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5933900,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "3407871",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A0975C23-3016-8682-9776-D0E2F6657BCD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "??",
+"img": {
+"src": ""
+},
+"title": "Les enseignants réflechissent aux enjeux d'un conseil de discipline.",
+"color": "16737843",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5933945,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5933945,
+"tags": null,
+"color": "16737843",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_375B3FC9-6CD5-E0D9-ADEE-DF387750B88A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "salle des profs\nprof défend souleymane\nvoudrait éviter le conseil de discipline\nca fait un moment qu'il est plus avec nous",
+"img": {
+"src": ""
+},
+"title": "salle des profs",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 5934629,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 5934629,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DBD7BD40-A431-A0B7-E422-A27BF67ED1A6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "cour\nsonnerie cour vue du haut",
+"img": {
+"src": ""
+},
+"title": "cour",
+"color": "65535",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6212731,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6212731,
+"tags": null,
+"color": "65535",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8C9E8827-2B66-BDD4-5C93-A27BF67E8BBF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "D'autres classes, d'autres élèves, vus par F.M.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6213327,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6213327,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8A32E296-11EF-759F-C986-DF397563BB57"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plongée cour de récréation",
+"img": {
+"src": ""
+},
+"title": "Cour 4",
+"color": "65535",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6216640,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6216640,
+"tags": null,
+"color": "65535",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F1F20E9E-4C87-DF52-A776-E5F51F8D8C91"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6216827,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6216827,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_77E7C3E0-50EB-C32D-1BD8-79D9F6F777C2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "couloir\nprof",
+"img": {
+"src": ""
+},
+"title": "couloir",
+"color": "6710886",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6219195,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6219195,
+"tags": null,
+"color": "6710886",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2C9FFAAC-91B1-0794-7307-A27BF67ED26D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6224400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6224400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_777AB579-88C5-DE87-93BE-451B55B8F7F0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "cour\nvue d'en haut",
+"img": {
+"src": ""
+},
+"title": "cour",
+"color": "65535",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6225019,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6225019,
+"tags": null,
+"color": "65535",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5E86CA62-EBBD-7475-60F2-A27BF67E47C3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6227807,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6227807,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3CF56C19-D829-CFA5-8C57-FDEDFAC312DD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Champ-contrechamp, plan rapporché poitrine, gros plan ++",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1424_in.jpg"
+},
+"title": "Dialogue avec le proviseur:modifier le rapport",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6240520,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6240520,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EF9159B6-4C09-3FAC-EE5B-D0EA87C57B71"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "François Marin discute avec le Proviseur.",
+"color": "16737792",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6240528,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6240528,
+"tags": null,
+"color": "16737792",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4E51EB8B-6B31-F07F-F0DD-DF3C8A867E15"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "bureau du directeur\nprof - principal\nmot avec les délégués\nà inscrire dans le document ==",
+"img": {
+"src": ""
+},
+"title": "bureau du directeur",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6241147,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6241147,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E9AD2A80-5A12-0610-CAB7-A27BF67E7802"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Bureau du proviseur\nIl faut mentionner l'injure aux délégués ==",
+"img": {
+"src": ""
+},
+"title": "L'avis du proviseur",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6241235,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6241235,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_61D88D6C-B607-D815-7FF4-E5F51F8D56E0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "François Marin revise son rapport.",
+"color": "16737792",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6307909,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6307909,
+"tags": null,
+"color": "16737792",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0209A589-020D-4D68-5F1B-DF3D584957B7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapporché taille ++",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1429_in.jpg"
+},
+"title": "F.M. modifie le rapport",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6308160,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6308160,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B06A53C8-A54B-ABA9-0654-D0EDA5C7CF21"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "prof refait le rapport",
+"img": {
+"src": ""
+},
+"title": "salle des profs",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6308837,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6308837,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_81CDE01B-62FB-C39C-3EC4-A27BF67E96A8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6308931,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6308931,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A66CE5FE-5E7D-3EA7-AABF-FDEEA34BFB78"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "François prépare studieusement même le conseil de discipline",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6314781,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6314781,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_589F7DD1-8165-A2F2-BA09-79DB6AD83ABD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "L'angoissse du rapport au conseil de discipline --",
+"img": {
+"src": ""
+},
+"title": "Le rapport",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6317627,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6317627,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3A49D5D5-9C0A-2BE6-87EE-E5F51F8D0FB9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Ici à nouveau, c'est le processus même de discussion qui est mis au jour : il y a une phase qui porte explicitement sur la légitimité des participants à la discussion (en particulier celle de François). En même temps, en dépit de l'exacerbation de l'idée de prise de parole par tous, il est clair que certains ne sont là que pour être jugés. --",
+"img": {
+"src": ""
+},
+"title": "Conseil de discipline",
+"color": "16763955",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6325642,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6325642,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763955",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6DA1875E-1541-A126-8759-7EE164CAF001"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Le conseil de discipline.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6328564,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6328564,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_854B573D-4A51-A194-4D64-DF3EDDCEDD79"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "salle du conseil\nvide, se remplit peu à peu\nsoulymane et sa mère",
+"img": {
+"src": ""
+},
+"title": "salle du conseil",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6329040,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6329040,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8704CAB2-5968-B364-3F76-A27BF67EC131"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Conseil de discipline",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6333339,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6333339,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E540EEB7-F3A9-AD45-1288-451EA3D65089"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Conseil de discipline\nArrivée des membres\nLecture du rapport\nExposé à la mère\nQuestion à Souleimane\nTémoignage poignant de la mère\nAttaque du prof par les inspecteurs\nDéfense du proviseur\nLa mère demande pardon pour son fils ++",
+"img": {
+"src": ""
+},
+"title": "Conseil de discipline",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6340496,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6340496,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_954873BA-31C5-37C9-DA57-E5F51F8DD58F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6389800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6389800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E3699989-266B-D681-AB7D-451BEAC47AD5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. en premier plan, flou",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1433_in.jpg"
+},
+"title": "Conseil de discipline",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6411680,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6411680,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A50A49EF-DB22-7944-F4A4-D0F08123123B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6412000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6412000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_213A43AF-396D-0F9D-64A6-451D06ABE9F3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1434_in.jpg"
+},
+"title": "F.M. regarde Souleymane",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6415720,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6415720,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2773FE20-82B1-CE66-B131-D0F156B0DDAC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Echange de regards entre F.M. et Souleymane ++",
+"img": {
+"src": ""
+},
+"title": "Regardant-regardé",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6420600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6420600,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FD40A22B-F059-5BBA-9654-D0F192F63402"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6420800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6420800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CC96F4B0-B174-CFC5-644E-451D3D2C09A1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6429400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6429400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C8BE86FB-2E72-97CB-A684-451D92ABCB10"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6449305,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6449305,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E312777A-15F6-BBCE-42AA-79E0817DC284"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. en second plan, en premier plan la tête de Souleymane",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1439_in.jpg"
+},
+"title": "F.M. vu à travers le regard de Souleymane",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6449440,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6449440,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2C32111B-8E1B-5933-80BC-D0F317FAF8F8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1440_in.jpg"
+},
+"title": "Contrechamp du plan précedent",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6466400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6466400,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8154A329-6D6B-7905-04D7-D0F56411E4AD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6467000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6467000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0FCEE3AD-9F0F-4C0E-13AD-4523EB39D8B9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "Silence de Souleymane",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6469628,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6469628,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_300BFA31-8A5E-E4A2-C7F4-FDEF9C7D6D0D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1441_in.jpg"
+},
+"title": "plan 1441",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6471960,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6471960,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_199BD87F-7CA0-BBDE-E83B-D0F5EE63A6B4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1442_in.jpg"
+},
+"title": "plan 1442",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6481000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6481000,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B0924008-6DFA-BDAD-0A37-D0F5FE4BF7E7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6490800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6490800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_503FA4B7-1DEE-CE2E-1001-45244FBC537D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Mère de Souleimane 1",
+"color": "6736998",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6493000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6493000,
+"tags": null,
+"color": "6736998",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FF3521CD-9D9F-4A28-5D1C-7EF60FEAFDE1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1446_in.jpg"
+},
+"title": "plan 1446",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6509000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6509000,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C7BD9C40-3C87-7940-6CAF-D0F6C0FB65CE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6509600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6509600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_678A8CDF-1552-0E00-AC35-4524CC0B5C62"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1447_in.jpg"
+},
+"title": "plan 1447",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6525640,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6525640,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2CA47D51-C823-AC90-EDAD-D0F72BC57920"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1448_in.jpg"
+},
+"title": "plan 1448",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6531800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6531800,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_940C3646-7487-E9C5-74BC-D0F79AE09E6A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6532000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6532000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0565F4CD-9E1A-DD76-286F-4525300236E4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1450_in.jpg"
+},
+"title": "Les parents des élèves critiquent la présence de F.M.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6553880,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6553880,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_605684E7-03BD-CF3A-B98D-D0F815877EAA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1452_in.jpg"
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6567960,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6567960,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4F779C47-5B30-6FF8-AE57-D0FB640D82A1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "il prend la place de Souleymane, cela est représenté visuellement ++",
+"img": {
+"src": ""
+},
+"title": "Marin juge et partie à la fois",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6580000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6580000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AFF83DB5-0CD8-A068-4F7C-45275968CD0C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6580200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6580200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_737315DF-4A38-D8FA-99E6-452739C4D3F9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "F.M. en premier plan, gros plan, couvre Souleymane qu'on entrevoit en second plan ++",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1456_in.jpg"
+},
+"title": "F.M. prend la place de l'accusé",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6580320,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6580320,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F3EA2B52-A9AE-803F-ED71-D0F9833EE0D7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "L'image nous parle du conflit : la superposition de F.M. et de Souleymane pendant le conseil de discipline évoque la possibilité que l'enseignant et non l'élève soit le coupable. Pour l'image, sans doute, les deux sont les accusés. ??",
+"img": {
+"src": ""
+},
+"title": "Superposition des deux personnages : F.M. prend la place de l'accusé ?",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6584262,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6584262,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F7E6EA10-7621-AA45-658D-083E05C9B179"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1458_in.jpg"
+},
+"title": "plan 1458",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6597000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6597000,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A2ABF8F1-1A58-C687-2021-D0FA824DA388"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6597200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6597200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6640531A-854C-C811-4D54-452840B3B73A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6605400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6605400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7A25B886-B0A5-2D38-B00E-4528E9A11530"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1460_in.jpg"
+},
+"title": "plan 1460",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6605600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6605600,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3E6CB6A7-FD59-46D5-BD0D-D0FBE5AA1EAC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1461_in.jpg"
+},
+"title": "F.M. flou en premier plan",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6610360,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6610360,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7BAC0A59-4E7E-CF89-9A3F-D0FC5A76B78A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1462_in.jpg"
+},
+"title": "plan 1462",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6625880,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6625880,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F2E27EAB-1878-C232-F90E-D0FCD664DC88"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6628235,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6628235,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_41A9AF1E-3F99-88CD-A87C-79E2CF899D3D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Silence de Soulaymane",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6632466,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6632466,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_487953CE-B19A-2D6A-343C-FDF1B9EAF2E2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6633400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6633400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_99884479-787B-077D-1CB6-45297C6E1E70"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Mère de Souleimane 2",
+"color": "6736998",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6639000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6639000,
+"tags": null,
+"color": "6736998",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6ECC5216-6A2D-3626-9F34-7EFA659EFADD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "L'attente du verdict.",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6678533,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6678533,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FEAFAD96-DCD9-5003-92F1-FDF2521AD3F0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Souleymane et sa mère attendent ??",
+"img": {
+"src": ""
+},
+"title": "couloir",
+"color": "6710886",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6679312,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6679312,
+"tags": null,
+"color": "6710886",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_50E94899-5841-19B8-9B68-A27BF67E1993"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Salle d'attente",
+"img": {
+"src": ""
+},
+"title": "Attente du vote",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6695845,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6695845,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9B8C004C-6D92-D826-865A-E5F51F8DA8B1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6699000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6699000,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B2B44657-A7AC-E37B-3A27-D0FEA7890AB8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "vote",
+"img": {
+"src": ""
+},
+"title": "salle du conseil",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6699835,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6699835,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FA991C50-9F75-1B20-C164-A27BF67EBFA3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Vote de la sanction --",
+"img": {
+"src": ""
+},
+"title": "Vote",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6704336,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6704336,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_41ADEC3E-747D-C8CF-30F1-E5F51F8D7A3C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Mère de Souleimane 3",
+"color": "6736998",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6727574,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6727574,
+"tags": null,
+"color": "6736998",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A1258365-655B-0ECD-696F-7EFC2B735B94"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6729742,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6729742,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F6B00CD7-6262-D020-9517-4529F4547884"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Souleymane et sa mère",
+"img": {
+"src": ""
+},
+"title": "couloir",
+"color": "6710886",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6731579,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6731579,
+"tags": null,
+"color": "6710886",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4D868125-3487-4F32-8FCB-A27BF67E003E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "--",
+"img": {
+"src": ""
+},
+"title": "L'attente du verdict.",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6736758,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6736758,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F26ACB88-CB59-6419-F83C-FDF42CA41DC1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Exposé de la sanction\nExclusion\nSortie digne de la mère",
+"img": {
+"src": ""
+},
+"title": "Délibération",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6738960,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6738960,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_0C57DDB2-170B-FCE9-D6DD-E5F51F8DD5B1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "exclusion de souleymane --",
+"img": {
+"src": ""
+},
+"title": "salle du conseil",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6745893,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6745893,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_84D438A5-1631-2DEC-B02A-A27BF67E2518"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6793200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6793200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DDC15DEF-4C27-DC3B-B735-452A7FA7BDD9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Gros plan",
+"img": {
+"src": ""
+},
+"title": "Souleymane, exclu, quitte la salle",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6798400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6798400,
+"tags": [
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d40f88-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C2A12232-0B83-E90F-01F9-D10181226012"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6807000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6807000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3B9DAFD4-98C5-3785-8DD9-7EE430C25343"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Souleymane et sa mère quittent l'établissement.",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6807625,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6807625,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_48D8E894-3DEE-1AB8-FFF9-FDF51001C692"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "vue d'en haut\nsouleumane et sa mère --",
+"img": {
+"src": ""
+},
+"title": "cour",
+"color": "65535",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6808528,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6808528,
+"tags": null,
+"color": "65535",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5F619499-F9DC-8810-74A8-A27BF67EADDE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6808600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6808600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AC31357F-FE1A-AFC0-71A0-452AF384C852"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Et voila la punition semble forte, la situation et la sanction absurde (et sans traducteur !). Le film semble plaider dans ce sens via le comportement de l'élève antillais et le malaise à la fin du conseil. Certes, mais le propos est globalement léger, comme si seuls les \"pétages de plomb\" et leur traitement par l'institution étaient graves et/ou à critiquer. --\nL'indiscipline et son impunité ordinaire associée à la polarisation des sanctions (tout ou rien) ont des effets beaucoup plus lourds sur l'\"injustice scolaire\" entre élèves plus ou moins exposés au bruit (y compris les plus \"bruyants\") et plus ou moins dépendants des cours en classe ainsi que sur la \"souffrance au travail\" de beaucoup de profs. Même si des facteurs \"externes\" à l'institution influencent ces problèmes (faible croyance dans l'intérêt des études par certains élèves, modification des relations entre parents et profs, etc.) l'impunité ordinaire et la faible diversité des mécanismes de sanction et de responsabilisation semblent peu intéresser l'auteur/personnage/acteur du film qui a l'air de miser essentiellement sur la \"bonne relation/bonne inter-compréhension\" avec les élèves.",
+"img": {
+"src": ""
+},
+"title": "procédures punitives et apprentissage",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6808869,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6808869,
+"tags": [
+{
+"id-ref": "15d85f84-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d863b2-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86696-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8F20A2B5-8924-10E2-0811-BCC93CD816C3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plongée cour de récréation = silence, bruit de machine oppressante. ++",
+"img": {
+"src": ""
+},
+"title": "Hors champ sonore",
+"color": "65535",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6817000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6817000,
+"tags": null,
+"color": "65535",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FD115118-96CE-FBBF-72A4-E5F51F8D28D5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Bilan de l'année\nSVT\nMath = fiertée\nLe commerce triangulaire\nChimie = pourquoi remettre en cause ce que l'on nous apprend puisqu'on nous l'apprend\nKumba cherche à séduire le prof\nARGOT : sont \"chem\" = nuls\nProvocation de Esmeralda : Platon , c'est pas un livre de pettasse.\nJ'ai rien appris moi : L'echec scolaire - Je veux pas aller en professionel\nOn ressent la mort - le suicide\n--",
+"img": {
+"src": ""
+},
+"title": "Scène de classe 11",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6825313,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6825313,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FBD77F62-A93F-73F8-8EBE-E5F51F8D99E1"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Dernier jour : F.M. demande aux élèves ce qu'ils ont appris pendant l'année.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6826298,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6826298,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_79262030-4072-F01C-BEE9-DF41282F387F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6827000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6827000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1083BB03-7D99-78B8-CEB6-452B3B54EDEC"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "ce que les élèves ont retenu\ntriginométrie\ncommerce triangulaire\ncombustion\nla reproduction\nespagnol \"llegan las vacaciones\"\nesmeralda : j'ai rien appris, puis la république, socrate, les gens ils se posent des questions.\ndistribution des autoportraits\nj'ai rien appris moi, je comprends pas ce qu'on fait --",
+"img": {
+"src": ""
+},
+"title": "salle de classe",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 6828283,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6828283,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D0920870-A6BD-4F3D-077F-A27BF67EA14B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. demande aux élèves ce qu'ils ont appris pendant l'année",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6832000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6832000,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D10F3CE9-57A2-4113-6FAC-D102A3736BC6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. demande aux élèves ce qu'ils ont appris pendant l'année",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6832000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6832000,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AC971942-ABE3-0F16-346C-FE7338CA8610"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Fin de l'année.\nQuestion du prof: qu'avez-vous retenu de l'année écoulée ??",
+"img": {
+"src": ""
+},
+"title": "Qu'avez-vous appris?",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6833286,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6833286,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D82D73C1-90DD-CE68-CF67-68B2BE482802"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6838600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6838600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E838FA59-D9DB-0051-22C4-452B68806690"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "\"Si tu as aimé tu as retenu\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6845000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6845000,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_492DCC02-5A8A-5E34-BD0F-D103BFA8BA2A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ++",
+"img": {
+"src": ""
+},
+"title": "\"Si tu as aimé tu as retenu\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6845000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6845000,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3FC9F84D-B924-5E1D-989A-FE7338CC9C98"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6846400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6846400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AA659E02-A936-6FD3-6884-452B8B34B21B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6851200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6851200,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1D8EFF3F-3DD5-0C6F-B8A4-D10476ACB762"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6851200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6851200,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7B36D583-25CB-3F83-20B7-FE7338CE74A9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6853200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6853200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D5C77E86-1DAB-D26B-757C-452BE10DEC94"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "Théorème de Pitagore",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6869800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6869800,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_305660B1-EAA7-C4C5-37B0-D1050DA3E46D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "F.M. invite Boubacar à réciter le théorème de Pitagore.",
+"color": "10027263",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6870297,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6870297,
+"tags": null,
+"color": "10027263",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C8D290C1-3FB7-9DE8-1200-FDF5FA2F33BE"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6876800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6876800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_95BAD9A6-2933-2F99-BAF4-452CEBB6C6AD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ??",
+"img": {
+"src": ""
+},
+"title": "Quoi en chimie?",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6929800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6929800,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4B5B39F9-EA36-A70C-5A18-FE7338D19F14"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6931400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6931400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_52C47578-4881-3147-2FC9-452D1D8AA96F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6939000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6939000,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F2059CE8-61E2-C1E2-84FE-FE7338D338A7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6939000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6939000,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2367F687-B935-D23D-7AEA-D10768E1B0A4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6940400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6940400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6E596B5C-4B99-0E60-9D73-452D7759E7AA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "??",
+"img": {
+"src": ""
+},
+"title": "\"Pourquoi nous le font enseigner s'il n'y a pas d'intérêt?\"",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6950109,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6950109,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C81006C8-23F4-7B22-7F74-FDF7EFD5EEAF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine ==",
+"img": {
+"src": ""
+},
+"title": "La reproduction",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6959400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6959400,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F875B423-13BC-C4DA-007C-D107EDF4AB5E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6962000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6962000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_704F1B8E-2676-E8DF-208B-452DBA212266"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6973800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6973800,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AFB76882-AF63-9E95-F43E-FE7338D70790"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6975200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6975200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_AB5C3C12-5FB1-F2BE-FEEC-452DEC76BD55"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, panoramique",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6982600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6982600,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_52AFE50F-4DC9-1860-5633-D108CCF38A1A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine, panoramique",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6982600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6982600,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_39AA72C2-59B8-A949-C958-FE7338D98A15"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6984600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6984600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_99C52022-B098-EFBF-24CB-452E2A32130D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6994800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6994800,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C4F0BB4B-559A-022D-4053-D109D1B71D94"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6994800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6994800,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1F21936D-F065-2DD0-BC0F-FE7338DB544E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6996600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 6996600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7D5697A7-6F19-672B-F23C-452E5085359D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7002800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7002800,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3305EBED-84AD-0DF6-CBD6-D10A3840A04D"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7006800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7006800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FC0FACF4-398A-0F56-DFF1-452EB514D32F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Une élève a lu La République de Platon. Elle parle de sa lecture.\n- Socrate pose tout un tas de questions, sur tous les sujets\n- Socrate déstabilise ses interlocuteurs (\"Il est trop fort\")\nComme pour le journal d'AF, ce choix est signifiant, il en dit plus sur le vécu de la situation d'enseignement dans ce contexte, que les apprentissages sur la reproduction humaine ou les mathématiques. ++\nLa lecture de Platon est à  la fois un contenu appris pendant l'année, mais dit aussi quelque chose sur la situation de communication enseignant-élèves.\nHypothèses:\n- l'enseignant comme Socrate pose beaucoup de questions\n- sur tous les sujets\n- il manie l'ironie\n- il cherche à déstabiliser (\"les gens ne savent plus où ils en sont\")\n++",
+"img": {
+"src": ""
+},
+"title": "Posture d'énonciation 2: le questionnement socratique",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7020000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7020000,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_16CC7CDF-70AE-6B96-72D9-68A54C828447"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7021720,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7021720,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_37A33ADF-19B6-AAAC-C482-7E52605A989C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "255",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7021720,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7021720,
+"tags": null,
+"color": "255",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7DD5E36B-6B5D-F012-AF57-7E50B8674357"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "F.M. face à Esmeralda",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7025600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7025600,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E2AF5E2A-ABF6-C4A8-8151-FE7338DC4500"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7028609,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7028609,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4F9A4A34-7F1C-F5E6-2696-FDF9E29A3CC9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Argot : nuls, chemo (italien), moche\nDes livres pour machdi = des livres pour moi ??",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1506_in.jpg"
+},
+"title": "Sont \"cheum\" vos livres",
+"color": "16776960",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7032160,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7032160,
+"tags": null,
+"color": "16776960",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8E474A57-5348-DAC5-520D-0F782B94DB6E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7032400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7032400,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_DFDF7AED-EFBC-4C01-1434-FE7338DE6C27"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7037000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7037000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_42FBEB1D-50BD-4F61-C7C3-452F26A81492"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Esmeralda a lu la \"République\" de Platon.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7040272,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7040272,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_A1C2A65F-F605-7A28-0319-DF3FB7DCF000"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7040800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7040800,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F7ED4350-C201-6271-F793-FE7338E04DDF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "François Marin n'as pas de mots face au fait qu'Esmeralda ait lu la \"République\" de Platon.",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7051109,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7051109,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C81E87CE-65AE-91C6-9FF1-FDFAF650411C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7051400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7051400,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_92E30E1A-BE2F-420C-817A-FE7338E2E1F8"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7054000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7054000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_40D46128-7F74-6FDB-2327-452F7D770157"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7058400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7058400,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1C2BF0EB-8120-A6E6-EACD-FE7338E42724"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7059600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7059600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_706E8D25-7020-A9B0-16BC-452F99913CF4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7062800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7062800,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_995203B7-1161-8DC0-6439-FE7338E68ECD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7064400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7064400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_2B026A81-114B-5BD6-F9AA-452FB35C7B29"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7067200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7067200,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9AB9270E-DFDA-504F-FCC4-FE7338E9EDA2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7067200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7067200,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4DBBDE4F-17DF-0864-E385-D118EE9E44FD"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7068200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7068200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B89F9B86-7DF3-A156-F875-452FCD91B356"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7071200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7071200,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_219D1A7B-9FA1-5C9E-84DD-FE7338EBE651"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7071200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7071200,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8CA06848-CB74-7760-2496-D11919208113"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7073000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7073000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_471DC1A6-3188-E59F-B79A-453035AEFF2B"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7093600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7093600,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6EE7FF0F-31A4-EC0C-BAE4-D1198B152134"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7093600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7093600,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_27EE08AB-61EE-4BEC-38B8-FE7338EDBCC3"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7096000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7096000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_C2B3D68C-A627-0566-EEB2-453076A2B661"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "\"C'est pas un livre de pétasses, hein?\"",
+"color": "16711935",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7101578,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7101578,
+"tags": null,
+"color": "16711935",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_447A423C-6691-87BB-B579-FDFCF0E7CF26"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7103200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7103200,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_71370F05-8E03-38DD-701D-D119C366BDA4"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7103200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7103200,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1EB56F93-584A-2311-AF0F-FE7338EF921F"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7105400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7105400,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3CF30830-F889-770B-98FF-4530988F9E01"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7107385,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7107385,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3C7789DF-59D7-96AC-9992-FDFDA2626947"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7109600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7109600,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3AF411E5-F4BF-9C38-40F6-D119F03D4D90"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "++",
+"img": {
+"src": ""
+},
+"title": "Regardant-regardé",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7111200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7111200,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_125E0195-EF7C-F0E5-531A-D11A21D8F139"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7111200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7111200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1DFF5880-C9E1-1D84-52F8-4530B0215EB9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "PLan rapproché taille, panoramique",
+"img": {
+"src": ""
+},
+"title": "F.M. distribue les autoportraits",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7112800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7112800,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BFF0732E-ED24-060E-A49B-D11AE3691AFB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7117600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7117600,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_EF9CDB5A-9A54-E3D4-FAAF-45315EF071D5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. distribue les autoportraits",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7125000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7125000,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6184E50D-67E7-D8DB-ACA3-D11BB5AE0C49"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plongée, travelling, Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. range ses affaires",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7150200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7150200,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BDC479B1-3FCE-B52E-EA03-FE7338F161CA"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plongée, travelling, Plan rapproché taille",
+"img": {
+"src": ""
+},
+"title": "F.M. range ses affaires",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7150200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7150200,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5D773E39-51BD-F7C9-72E9-D11D5B0BFB77"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7156800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7156800,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_9C7C8394-3DF0-A637-2483-45319D56615C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plongée, plan rapproché poitrine ++",
+"img": {
+"src": ""
+},
+"title": "Henriette s'approche de F.M.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7161800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7161800,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B11D730D-8AB3-122C-514F-D11E8B303FD6"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7165000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7165000,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_FFD532C8-D833-D201-9167-4532048039B9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plongée, travelling avant ?? , plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7169600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7169600,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_502B6A42-01C7-17C0-89A4-FE7338F48B9A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan rapproché poitrine --",
+"img": {
+"src": ""
+},
+"title": "F.M. essaye de minimiser l'angoisse d'Henriette",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7185600,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7185600,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_7F8A4325-EE43-BAE6-AE42-FE7338F6E126"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7196200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7196200,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1ECC57AC-6C46-53BD-3FCA-4532F9C3FC86"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plongée, plan rapproché poitrine ??",
+"img": {
+"src": ""
+},
+"title": "\"Tu comprends pas, c'est à dire?\"",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7201000,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7201000,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1C8A5127-0F01-8351-FCBF-FE7338F8FC46"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plongée, plan rapproché poitrine ??",
+"img": {
+"src": ""
+},
+"title": "F.M. étonné",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7205200,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7205200,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6F841D6B-C794-649B-A65E-FE7338FAC409"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plongée, plan rapproché poitrine",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7210400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7210400,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_5EDF409A-19F3-DD93-DEC8-FE7338FCE9A0"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "3e prise de vues de la cour qui n'est pas en plongée. En montrant un exercice soigneusement maîtrisé d'aplatissement fictif des hiérarchies, cette scène restaure le caractère inoffensif de la cour pour François et pour les profs. ++",
+"img": {
+"src": ""
+},
+"title": "Partie de foot prisonniers-gardiens",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7244344,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7244344,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D1A4399D-137E-BA5D-EB73-7EEBA053F566"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Dernier jour : le match de foot.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7246224,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7246224,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_4CFB1ABB-96C1-D45D-BCC8-DF41E8A92526"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "vue d'en haut\nmatch prof élèves\nvue d'en bas\n++",
+"img": {
+"src": ""
+},
+"title": "Cour",
+"color": "6710886",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 7246608,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7246608,
+"tags": null,
+"color": "6710886",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_03DD5570-C7E4-89BE-6619-A27BF67E9123"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan de demi-ensemble",
+"img": {
+"src": ""
+},
+"title": "match de foot",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7251400,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7251400,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_95DB9543-89CF-34EA-5406-D12470D9C874"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Plan américain",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1555_in.jpg"
+},
+"title": "match de foot",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7258120,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7258120,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CB017C9D-4195-CC70-0198-D126B8E7BEA5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Le match de foot avec les profs\nHors champ de la salle de classe vide\nSignification : un champ de bataille déserté, une prison ouverte, l'école apprendrai à mentir, à ne pas être soi-même ??",
+"img": {
+"src": ""
+},
+"title": "Match de foot",
+"color": "65535",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 7260133,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7260133,
+"tags": null,
+"color": "65535",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_BE53B99F-2E21-1FC3-0FA6-E5F51F8D652E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1558_in.jpg"
+},
+"title": "plan 1558",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7262480,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7262480,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_41FC3413-3977-7A43-E3C5-D12788371885"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1562_in.jpg"
+},
+"title": "plan 1562",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7272480,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7272480,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_B7316DFF-CC84-6004-956B-D127E34FEDF2"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1569_in.jpg"
+},
+"title": "plan 1569",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7283800,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7283800,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_08E2B040-5DE1-DBDA-0479-D1285450812A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1573_in.jpg"
+},
+"title": "match de foot",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7288080,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7288080,
+"tags": [
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+},
+{
+"id-ref": "15d86ba0-41e1-11e1-b830-08002791f1b7"
+}
+],
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F1D2F0F0-B024-0A6F-C93B-D1291AB1CD60"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "en contraste avec la cour hurlante , le son est entendu reverbéré dans la classe vide, exprimant la césure entre l'espace vide de la classe et la vie tumultueuse de la cour, un effet de prégnance du dispositif du drame, semble indiquer que la classe comme espace autonome et lieu du drame passé,  reste même si les acteurs en partent, ils sont de passage, l'école elle dans ses murs reste intemporelle et donc peut-être inhumaine. ??",
+"img": {
+"src": ""
+},
+"title": "son de la salle de classe vide",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7298740,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7298740,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D8852242-E0FA-B771-8CE6-03EDEC62D0B7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "??",
+"img": {
+"src": ""
+},
+"title": "La salle vide. Le bruit provenant de l'exterieur ne nous renseigne pas sur qui a gagné le match.",
+"color": "16750848",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7298820,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7298820,
+"tags": null,
+"color": "16750848",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F6EB10B8-D3A6-5EBA-7D07-DF43B66CACAF"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "vide\nen bas bruit de la cour ==",
+"img": {
+"src": ""
+},
+"title": "salle de classe",
+"color": "65280",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 7299237,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7299237,
+"tags": null,
+"color": "65280",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_8E4D9D9D-6F0F-4A5E-1A86-A27BF67EFB47"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": "laurentcantet_entrelesmurs/thumbs/1574_in.jpg"
+},
+"title": "plan 1574",
+"color": "65535",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7300528,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7300528,
+"tags": null,
+"color": "65535",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_68BC48AD-F767-F190-7DD6-0F18A5C71159"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16711680",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7300737,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7300737,
+"tags": null,
+"color": "16711680",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_773CA6B4-F5C6-6717-5E63-FE00B28F8184"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "Générique de fin",
+"img": {
+"src": ""
+},
+"title": "Fin",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 7319351,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7319351,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_D350FE66-19F8-7CFA-F5C6-E5F51F8DAAD9"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "Générique",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7321159,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7321159,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_3C7A889A-399E-6C47-64E3-DF4483C038B5"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "pas de musique, juste des bruits mixés modulés en dynamique. Très peu de réalisateur ont utilisé ce choix radical : clouzot cavalier par exemple , à chaque fois dans un but de radicaliser l'esthétique et l'univers exprimé. Ici pas d'intériorité des images, juste une volonté de faire réaliste... voir aussi le choix de prise de vue ==",
+"img": {
+"src": ""
+},
+"title": "générique, son off de la cour et d'oiseux seule référence à la nature. En effet on ne voit jamais de végétaux dans le film , ce qui exacerbe le sentiment carcéral de huit clos culturel.",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7321560,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7321560,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_1E331803-6958-DF02-8124-03F057E4069E"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "fond noir\ngénérique\nbruit de la cour\npépiement des oiseaux",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": "undefined"
+}
+},
+"begin": 7323579,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7323579,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_F692982E-5E36-E0A4-01E9-A27BF67E9D53"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "les bruits très mixés de l'école finissent dans la confusion , quelques cris d'oiseaux se font entendre  ... évocation d'une nature absente des lieux ==",
+"img": {
+"src": ""
+},
+"title": "le son du générique",
+"color": "6771296",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 7350670,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:modified": "2012-01-18T14:31:18.255700",
+"dc:creator": "perso"
+},
+"end": 7350670,
+"tags": null,
+"color": "6771296",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_83CDF93E-F95B-CC66-2E3A-03F40C7FEEAB"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 38279,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_2344556E-A818-EA23-37FC-0E47A150EACD",
+"dc:created": "2012-01-18T14:31:18.253563",
+"dc:modified": "2012-01-18T14:31:18.253563",
+"dc:creator": "perso"
+},
+"end": 1655576,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_6AABD5F5-B806-1B80-AEAA-0E47BBC2717A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 1665646,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_2344556E-A818-EA23-37FC-0E47A150EACD",
+"dc:created": "2012-01-18T14:31:18.253563",
+"dc:modified": "2012-01-18T14:31:18.253563",
+"dc:creator": "perso"
+},
+"end": 2430752,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_581C79AC-F31B-E9C0-3951-0E47FD5596A7"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 2440300,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_2344556E-A818-EA23-37FC-0E47A150EACD",
+"dc:created": "2012-01-18T14:31:18.253563",
+"dc:modified": "2012-01-18T14:31:18.253563",
+"dc:creator": "perso"
+},
+"end": 3885340,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_939C9678-82E0-095A-00D9-0E47C1FC9A8A"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 3894912,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_2344556E-A818-EA23-37FC-0E47A150EACD",
+"dc:created": "2012-01-18T14:31:18.253563",
+"dc:modified": "2012-01-18T14:31:18.253563",
+"dc:creator": "perso"
+},
+"end": 5062429,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_CEAF1192-9D4C-E884-B61F-0E47C73D3E2C"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 5072497,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_2344556E-A818-EA23-37FC-0E47A150EACD",
+"dc:created": "2012-01-18T14:31:18.253563",
+"dc:modified": "2012-01-18T14:31:18.253563",
+"dc:creator": "perso"
+},
+"end": 6115106,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E39828FC-AC1C-333C-B273-0E47DAA70D33"
+},
+{
+"content": {
+"mimetype": "application/x-ldt-structured",
+"description": "",
+"img": {
+"src": ""
+},
+"title": "",
+"color": "16763904",
+"polemics": [],
+"audio": {
+"mimetype": "audio/mp3",
+"src": "",
+"href": null
+}
+},
+"begin": 6115606,
+"meta": {
+"dc:contributor": "perso",
+"id-ref": "c_2344556E-A818-EA23-37FC-0E47A150EACD",
+"dc:created": "2012-01-18T14:31:18.253563",
+"dc:modified": "2012-01-18T14:31:18.253563",
+"dc:creator": "perso"
+},
+"end": 7426170,
+"tags": null,
+"color": "16763904",
+"media": "laurentcantet_entrelesmurs",
+"id": "s_E1BBFA1E-0D0F-C0DB-F411-0E47E2C52131"
+}
+],
+"annotation-types": [
+{
+"dc:contributor": "perso",
+"dc:creator": "perso",
+"dc:title": "Twitter",
+"id": "c_81135A3E-8870-4586-8597-7CD758DA3A54",
+"dc:created": "2012-01-18T14:31:18.255700",
+"dc:description": "",
+"dc:modified": "2012-01-18T14:31:18.255700"
+},
+{
+"dc:contributor": "perso",
+"dc:creator": "perso",
+"dc:title": "Chapitrage",
+"id": "c_2344556E-A818-EA23-37FC-0E47A150EACD",
+"dc:created": "2012-01-18T14:31:18.253563",
+"dc:description": "",
+"dc:modified": "2012-01-18T14:31:18.253563"
+}
+]
+}
\ No newline at end of file