add bab player, as/swf files and example.
--- a/.hgignore Fri Apr 27 11:52:05 2012 +0200
+++ b/.hgignore Thu May 10 18:11:46 2012 +0200
@@ -8,3 +8,6 @@
*.orig
src/js/site.js
doc/jsdoc/*
+
+syntax: regexp
+^assets/player_bab_ldt/player_bab_ldt/bin$
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/bab/URLLoaderLdt.as Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,29 @@
+package tools
+{
+ import flash.net.URLLoader;
+ import flash.net.URLRequest;
+
+ public class URLLoaderLdt extends URLLoader
+ {
+ private var _url:String;
+ private var _preVideo:String;
+ private var _prePict:String;
+ private var _preExtra:String;
+
+ public function URLLoaderLdt(request:URLRequest=null, preVideo:String=null, prePict:String=null, preExtra:String=null)
+ {
+ if(request!=null){
+ _url = request.url;
+ _preVideo = preVideo;
+ _prePict = prePict;
+ _preExtra = preExtra;
+ }
+ super(request);
+ }
+ public function get url():String{ return _url; }
+ public function get preVideo():String{ return _preVideo; }
+ public function get prePict():String{ return _prePict; }
+ public function get preExtra():String{ return _preExtra; }
+
+ }
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/bab/XMLInOut.as Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,1 @@
+package bab
{
import flash.events.Event;
import flash.events.IOErrorEvent;
import flash.net.FileReference;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.system.Capabilities;
import player_bab_ldt;
public class XMLInOut
{
private var app:player_bab_ldt;
private var myLdtEdits:XMLList;
private var editsAr:Array = [];
private var titlesAr:Array = [];
private var nbBab:uint = 0;
private var curBab:Number = -1;
private var segAr1:Array;
private var segAr2:Array;
public function XMLInOut(o:player_bab_ldt, urlData:String)
{
app = o;
var urll:URLLoader = new URLLoader(new URLRequest(urlData));
urll.addEventListener(Event.COMPLETE, onloadData);
urll.addEventListener(IOErrorEvent.IO_ERROR, errorLoad);
}
private function errorLoad(e:IOErrorEvent):void{
trace("errorLoad");
//Alert.show("Impossible to load the file") + " " + e.text + "\n" + (e.target as URLLoaderLdt).url, "Error");
}
private function onloadData(e:Event):void{
var ldtXml:XML = new XML(e.currentTarget.data);
// We test if the project is in old iri/ldt format or cinelab format
if(ldtXml.project.length()>0){
// There is a project tag in the xml -> iri/ldt format
myLdtEdits = ldtXml.edits.editing;
loadEditsXML(myLdtEdits);
}
else{
// Else cinelab format
trace("No LDT format, No load");
//Alert.show("No LDT format","No load");
}
}
public function loadEditsXML(xl:XMLList):void{
trace("loadEditsXML l = " + xl.length() + ", nodename = " + xl[0].name().localName);
if(xl!=null && xl.length()>0){
if(xl[0].name().localName=="view"){
//loadEditsXMLCinelab(xl);
trace("No BAB LDT format, No load");
}
else{
//trace(xl.toString());
editsAr = new Array();
titlesAr = new Array();
for each(var editing:XML in xl){
nbBab++;
var inst:XML, curMedia:XMLList, a:Array, content:String;
// First edit's line
var ar1:Array = new Array();
var editList:XMLList = editing.edit.(@id=="edit1").eList.inst;
var mediaList:XMLList = editing.edit.(@id=="edit1").mList.m;
// We adapt the program to the new and old version of content/media place
// new <m ref="kia_closeup" id="0" t="v" c="color_uint"><content>url or text content</content></m>
// old <m ref="kia_closeup" id="0" t="v" c="color_or_quality" src="path/media_or_pict.flv"><content/></m>
for each(inst in editList){
a = inst.@ref.split("|;|");
curMedia = mediaList.(@id==inst.@m);
content = (curMedia.@src.toString()=="" || curMedia.@src==undefined) ? curMedia.content.toString() : curMedia.@src.toString();
//trace("m = " + inst.@m.toString() + ", " + curMedia.@t.toString() + ", " + uint(curMedia.@c) + ", " + curMedia.@src.toString() + ", " + curMedia.content.toString() + ", content=" + content);
if(a[0]=="title"){ a[0]="text"; } // To allow old version
// A video path can be dependant on the user's folder organisation.
// If a user B receives a project from a user A, the video paths will be like
// /users/userA/docs/video/id/id.flv and /users/userB/ldt/id/i d.flv
// So in order ta read the BàB without problems, we match the bàb paths
// with the video paths actually recorded.
// if(curMedia.@t.toString()=="v"){
// content = content.replace(/\\/g,"/");
// var videoName:String = content.substr(content.lastIndexOf("/")+1);
// for(var idCtt:String in Global.arContents){
// if(Global.arContents[idCtt]["path"].substr(Global.arContents[idCtt]["path"].replace(/\\/g,"/").lastIndexOf("/")+1)==videoName){
// content = Global.arContents[idCtt]["path"];
// }
// }
// }
// Now that we got the good video path, we push in the array
ar1.push({idCtt:a[0], idGrp:a[1], idCut:a[2], idView:a[3], crit:a[3], idSeg:a[5], tIn:Number(inst.@begin), tOut:Number(inst.@end), type:curMedia.@t.toString(), v:uint(inst.@v), color:uint(curMedia.@c), content:content, idAuthor:"", author:"", idTitle:"", title:"", date:"", trId:Number(inst.@trId), trIc:Number(inst.@trIc), trOd:Number(inst.@trOd), trOc:Number(inst.@trOc)});
}
// Second edit's line
var ar2:Array = new Array();
editList = editing.edit.(@id=="edit2").eList.inst;
mediaList = editing.edit.(@id=="edit2").mList.m;
for each(inst in editList){
a = inst.@ref.split("|;|");
//trace("m = " + inst.@m.toString() + ", " + edit1Media.(@id==inst.@m.toString()).@t.toString() + ", " + uint(edit1Media.(@id==inst.@m).@c) + ", " + edit1Media.(@id==inst.@m).@src.toString() + ", " + edit1Media.(@id==inst.@m).content.toString());
curMedia = mediaList.(@id==inst.@m);
content = (curMedia.@src.toString()=="" || curMedia.@src==undefined) ? curMedia.content.toString() : curMedia.@src.toString();
if(a[0]=="title"){ a[0]="text"; } // To allow old version
// A video path can be dependant on the user's folder organisation.
// If a user B receives a project from a user A, the video paths will be like
// /users/userA/docs/video/id/id.flv and /users/userB/ldt/id/id.flv
// So in order ta read the BàB without problems, we match the bàb paths
// with the video paths actually recorded.
// if(curMedia.@t.toString()=="v"){
// content = content.replace(/\\/g,"/");
// videoName = content.substr(content.lastIndexOf("/")+1);
// for(idCtt in Global.arContents){
// if(Global.arContents[idCtt]["path"].substr(Global.arContents[idCtt]["path"].replace(/\\/g,"/").lastIndexOf("/")+1)==videoName){
// content = Global.arContents[idCtt]["path"];
// }
// }
// }
// Now that we got the good video path, we push in the array
ar2.push({idCtt:a[0], idGrp:a[1], idCut:a[2], idView:a[3], crit:a[3], idSeg:a[5], tIn:Number(inst.@begin), tOut:Number(inst.@end), type:curMedia.@t.toString(), v:uint(inst.@v), color:uint(curMedia.@c), content:content, idAuthor:"", author:"", idTitle:"", title:"", date:"", trId:Number(inst.@trId), trIc:Number(inst.@trIc), trOd:Number(inst.@trOd), trOc:Number(inst.@trOc)});
}
// And we push a new edit entry with the edit's title and abstract
editsAr.push({id:"bab_1", title:editing.title.toString(), abstract:editing.abstract.toString(), segAr1:ar1, segAr2:ar2, creator:"projectCreator", created:now, contributor:"projectCreator", modified:now});
titlesAr.push(editing.title.toString());
}
if(editsAr.length==0){
editsAr.push({id:"bab_1", title:"Bout à bout 1", abstract:"", segAr1:new Array(), segAr2:new Array(), creator:"projectCreator", created:now, contributor:"projectCreator", modified:now});
titlesAr.push("Bout à bout 1");
}
//setBab(0, true);
}
}
else{
editsAr = [{id:"bab_1", title:"Bout à bout 1", abstract:"", segAr1:new Array(), segAr2:new Array(), creator:"projectCreator", created:now, contributor:"projectCreator", modified:now}];
titlesAr = ["Bout à bout 1"];
//setBab(0, true);
}
app.youCanStart();
}
public function getEditList1():Array{
trace("bab getEditList1");
// For each line, 2 arrays have to be prepared. The first is the edit instructions.
// The second is the media array (type, content -path or text-, background color)
return getEditMediaList(0, 1);
}
private function getEditMediaList(numBab:Number, line:uint):Array{
var a:Array = [];
if(0<=numBab && numBab<editsAr.length){
// For each line, 2 arrays have to be prepared. The first is the edit instructions.
// The second is the media array (type, content -path or text-, background color)
var segAr:Array = [];
// We get the good datas function of the bab id and the line id
if(numBab==curBab && line==1) segAr = segAr1;
else if(numBab==curBab && line==2) segAr = segAr2;
else if(line==1) segAr = editsAr[numBab].segAr1;
else if(line==2) segAr = editsAr[numBab].segAr2;
// Now we scan to segment array to build the edit list and the media list
var nbSegs:uint = segAr.length;
var editList:Array = [];
var mediaList:Array = [];
var dur:uint = 0;
for(var i:uint=0;i<nbSegs;i++){
var posMedia:Number = NaN;
var nbMedia:uint = mediaList.length;
//trace("bab1 " + i + ", " + posMedia + ", nbMedia=" + nbMedia + ", " + segAr[i].content);
var j:uint = 0;
while(j<nbMedia && isNaN(posMedia)){
if(mediaList[j].type==segAr[i].type && mediaList[j].color==segAr[i].color && mediaList[j].content==segAr[i].content){
//trace("bab1 j'ai trouvé " + segAr[i].content);
posMedia = j;
}
j++;
}
// If the media was not already in the array, we add it
if(isNaN(posMedia)){
//trace("bab " + numBab + " je push " + segAr[i].content);
//(this.parentApplication as LignesDeTempsFlex).debug.text += "\nbab " + numBab + " je push " + segAr[i].content;
mediaList.push({ref:segAr[i].idCtt, type:segAr[i].type, color:segAr[i].color, content:segAr[i].content});
posMedia = mediaList.length - 1;
}
// First we get the media position : if
// segAr.push({seg:s, idCtt:idCttPar, idGrp:idGrpPar, idCut:idCutPar, idView:idViewPar, crit:critPar, idSeg:idSeg, tIn:tcIn, tOut:tcOut, type:type, v:100, color:color, content:content, idAuthor:idAuthor, author:author, idTitle:idTitle, title:title, date:date, trId:trIdPar, trIc:trIcPar, trOd:trOdPar, trOc:trOcPar});
var ref:String = segAr[i].idCtt + "|;|" + segAr[i].idGrp + "|;|" + segAr[i].idCut + "|;|" + segAr[i].idView + "|;|" + segAr[i].crit + "|;|" + segAr[i].idSeg;
editList.push({ref:ref, m:posMedia, tIn:segAr[i].tIn, tOut:segAr[i].tOut, eIn:dur, eOut:(dur+(segAr[i].tOut-segAr[i].tIn)), v:segAr[i].v, trId:segAr[i].trId, trIc:segAr[i].trIc, trOd:segAr[i].trOd, trOc:segAr[i].trOc});
dur += segAr[i].tOut - segAr[i].tIn;
}
a = [editList, mediaList];
}
// We return an array with the 2 array, edit list and media list
return a;
}
//
// Functions to code colors int to Hexa string RRGGBB and Hexa string to int
//
private function colorNbrToHexaStr(c:int):String{
var s:String = c.toString(16);
var nbZero:uint = 6 - s.length;
for(var i:uint=0;i<nbZero;i++){
s = "0" + s;
}
return s;
}
private function colorHexaStrToNbr(s:String):Number{
var n:Number;
if(s.substr(0,1)=="#") n = Number("0x" + s.substr(1));
else n = Number(s);
return n;
}
public function get now():String{
var d:Date = new Date();
var m:uint = d.month + 1; // because Date.month begins at 0
return d.fullYear + "-" + (m<10?("0"+m):m) + "-" + (d.date<10?("0"+d.date):d.date) + "T" + (d.hours<10?("0"+d.hours):d.hours) + ":" + (d.minutes<10?("0"+d.minutes):d.minutes) + ":" + (d.seconds<10?("0"+d.seconds):d.seconds);
}
}
}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/bab/player/EditSkin.as Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,1 @@
+package bab.player
{
import bab.player.events.EditEvent;
import flash.display.MovieClip;
import flash.display.SimpleButton;
import flash.display.Sprite;
import flash.events.EventDispatcher;
import flash.events.MouseEvent;
import flash.geom.Rectangle;
import bab.player.FlvPlayer;
public class EditSkin extends EventDispatcher
{
//private var flvP:FlvPlayer;
private var skinMc:MovieClip;
private var playBtn:SimpleButton;
private var pauseBtn:SimpleButton;
private var backBtn:SimpleButton;
private var forwardBtn:SimpleButton;
private var volBtn:Sprite;
private var volBar:Sprite;
private var xVol:uint;
private var yVol:uint;
private var curVol:Number;
public function EditSkin(f:FlvPlayer)
{
//flvP = f;
skinMc = f.babSkin;
//trace("babSkin 2 = " + skinMc.play_mc + ", " + skinMc.pause_mc + ", " + skinMc.back_mc + ", " + skinMc.forward_mc + ", " + skinMc.volumeBarHandle_mc + ", " + skinMc.volumeBar_mc);
playBtn = skinMc.play_mc;
pauseBtn = skinMc.pause_mc;
pauseBtn.visible = false;
backBtn = skinMc.back_mc;
forwardBtn = skinMc.forward_mc;
volBtn = skinMc.volumeBarHandle_mc;
volBtn.buttonMode = true;
xVol = volBtn.x;
volBtn.x = xVol + 50*f.volume;
//trace("volBtn.x : " + volBtn.x);
yVol = volBtn.y;
volBar = skinMc.volumeBar_mc.fullness_mc.fill_mc;
volBar.useHandCursor = volBar.buttonMode = true;
skinMc.volumeBar_mc.fullness_mc.fill_mc.mouseEnabled = false;
skinMc.volumeBar_mc.fullness_mc.mouseEnabled = false;
skinMc.volumeBar_mc.hit_mc.mouseEnabled = false;
skinMc.volumeBar_mc.mouseEnabled = false;
// <TEMP> while the volume management has not been coded
volBtn.visible = skinMc.volumeBar_mc.visible = true;
// </TEMP>
playBtn.addEventListener(MouseEvent.CLICK, playPauseHandler);
pauseBtn.addEventListener(MouseEvent.CLICK, playPauseHandler);
backBtn.addEventListener(MouseEvent.CLICK, backHandler);
forwardBtn.addEventListener(MouseEvent.CLICK, forwardHandler);
volBtn.addEventListener(MouseEvent.MOUSE_DOWN, startVolHandler);
volBar.addEventListener(MouseEvent.MOUSE_DOWN, startVolHandler);
}
//
// Mouse Event handlers
//
private function playPauseHandler(e:MouseEvent=null):void{
dispatchEvent(new EditEvent(EditEvent.EDIT_PLAYPAUSE, curVol));
}
private function backHandler(e:MouseEvent=null):void{
dispatchEvent(new EditEvent(EditEvent.EDIT_BACK, curVol));
}
private function forwardHandler(e:MouseEvent=null):void{
dispatchEvent(new EditEvent(EditEvent.EDIT_FORWARD, curVol));
}
private function startVolHandler(e:MouseEvent=null):void{
//trace("startVolHandler");
volBtn.startDrag(false,new Rectangle(xVol,yVol,50,0));
volBtn.stage.addEventListener(MouseEvent.MOUSE_MOVE,updateSound);
volBtn.stage.addEventListener(MouseEvent.MOUSE_UP, stopVolHandler);
}
private function stopVolHandler(e:MouseEvent=null):void{
volBtn.stopDrag();
volBtn.stage.removeEventListener(MouseEvent.MOUSE_MOVE,updateSound);
volBtn.stage.removeEventListener(MouseEvent.MOUSE_UP, stopVolHandler);
volBtn.buttonMode = true;
// We dispatch the event only at the end
}
private function updateSound(e:MouseEvent=null):void{
//trace("xVol : " + xVol);
//trace("volBtn.x : "+ volBtn.x);
volBar.width = volBtn.x - xVol;
//trace("volBar.width : " + volBar.width);
curVol = (100 / 50) * (volBtn.x - xVol);
dispatchEvent(new EditEvent(EditEvent.EDIT_SOUNDUPDATE, curVol/100));
}
//
// Enable to switch display between play and pause buttons
//
public function set isPlaying(b:Boolean):void{
if(b==true){
playBtn.visible = false;
pauseBtn.visible = true;
}
else if(b==false){
playBtn.visible = true;
pauseBtn.visible = false;
}
}
public function setVolume(vol:Number):void{
volBtn.x = xVol + 50*vol;
volBar.width = volBtn.x - xVol;
//trace("setVolume, vol : " + vol);
dispatchEvent(new EditEvent(EditEvent.EDIT_SOUNDUPDATE, vol));
}
}
}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/bab/player/ExternalPlayer.as Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,1 @@
+package bab.player
{
import fl.video.VideoEvent;
import flash.display.DisplayObjectContainer;
import flash.display.Loader;
import flash.display.SimpleButton;
import flash.events.ErrorEvent;
import flash.events.Event;
import flash.events.EventDispatcher;
import flash.events.MouseEvent;
import flash.events.SecurityErrorEvent;
import flash.events.TimerEvent;
import flash.net.URLRequest;
import flash.system.Security;
import flash.text.TextField;
import flash.utils.Timer;
//import mx.controls.Alert;
public class ExternalPlayer extends EventDispatcher
{
private var curParent:DisplayObjectContainer;
private var player:Object;
private var playerYT:Object;
private var playerDM:Object;
private var playBtn:SimpleButton;
private var pauseBtn:SimpleButton;
private var volPlus:SimpleButton;
private var volMinus:SimpleButton;
private var playheadTimer:Timer;
private var urlToLoad:String;
private var sizeUpdated:Boolean = false;
public static function get EXTERNALPLAYER_RATIO():Number{
return 1.6;
}
public function ExternalPlayer(prnt:DisplayObjectContainer, url:String="")
{
Security.allowDomain("*");
Security.allowInsecureDomain("*");
curParent = prnt;
// Simple button Play
var t:TextField = new TextField();
t.text = "PLAY";
t.autoSize = "left";
playBtn = new SimpleButton(t,t,t,t);
playBtn.useHandCursor = playBtn.mouseEnabled = true;
prnt.addChild(playBtn);
// Simple button Pause
var t2:TextField = new TextField();
t2.text = "PAUSE";
t2.autoSize = "left";
pauseBtn = new SimpleButton(t2,t2,t2,t2);
pauseBtn.useHandCursor = pauseBtn.mouseEnabled = true;
prnt.addChild(pauseBtn);
// Simple button Volume +
var t3:TextField = new TextField();
t3.text = "Vol + /";
t3.autoSize = "left";
volPlus = new SimpleButton(t3,t3,t3,t3);
volPlus.useHandCursor = volPlus.mouseEnabled = true;
prnt.addChild(volPlus);
// Simple button Pause
var t4:TextField = new TextField();
t4.text = "Vol -";
t4.autoSize = "left";
volMinus = new SimpleButton(t4,t4,t4,t4);
volMinus.useHandCursor = volMinus.mouseEnabled = true;
prnt.addChild(volMinus);
pauseBtn.x = 50;
volPlus.x = 200;
volMinus.x = 235;
// Play pause listeners
playBtn.addEventListener(MouseEvent.CLICK, onBtnClick);
pauseBtn.addEventListener(MouseEvent.CLICK, onBtnClick);
// Volume listeners
volPlus.addEventListener(MouseEvent.CLICK, onVolClick);
volMinus.addEventListener(MouseEvent.CLICK, onVolClick);
loadVideo(url);
}
//
// Load Players
//
private function loadYTPlayer():void{
// Youtube loader
var l:Loader = new Loader();
l.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadYTCLP);
l.addEventListener(ErrorEvent.ERROR, onError, true);
l.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onError, true);
l.contentLoaderInfo.addEventListener(ErrorEvent.ERROR, onError, true);
l.contentLoaderInfo.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onError, true);
l.load(new URLRequest("http://www.youtube.com/apiplayer?version=3"));
// The parent will load;
curParent.addChild(l);
}
private function loadDMPlayer():void{
// Dailymotion loader
var l:Loader = new Loader();
l.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadDMCLP);
l.addEventListener(ErrorEvent.ERROR, onError, true);
l.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onError, true);
l.contentLoaderInfo.addEventListener(ErrorEvent.ERROR, onError, true);
l.contentLoaderInfo.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onError, true);
l.load(new URLRequest("http://www.dailymotion.com/swf?enableApi=1&chromeless=1"));
// The parent will load;
curParent.addChild(l);
}
//
// OnLoad Players management
//
private function onLoadYTCLP(e:Event):void {
//addChild(loader);
playerYT = e.target.content;
playerYT.addEventListener(ErrorEvent.ERROR, onError);
playerYT.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onError);
playerYT.addEventListener("onReady", onYTPlayerReady);
playerYT.addEventListener("onError", onYTPlayerError);
playerYT.addEventListener("onStateChange", onYTStateChange);
//YTPlayer.addEventListener("onPlaybackQualityChange", onVideoPlaybackQualityChange);
}
private function onLoadDMCLP(e:Event):void {
//addChild(loader);
playerDM = e.target.content;
playerDM.addEventListener(ErrorEvent.ERROR, onError);
playerDM.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onError);
playerDM.addEventListener("onReady", onYTPlayerReady);
playerDM.addEventListener("onError", onYTPlayerError);
playerDM.addEventListener("onStateChange", onYTStateChange);
//YTPlayer.addEventListener("onPlaybackQualityChange", onVideoPlaybackQualityChange);
}
//
// Player event management
//
private function onYTPlayerReady(o:Object):void {
// Event.data contains the event parameter, which is the Player API ID
trace("player ready:" + o.data);
// Once this event has been dispatched by the player, we can use
// cueVideoById, loadVideoById, cueVideoByUrl and loadVideoByUrl
// to load a particular YouTube video.
loadVideo(urlToLoad);
}
private function onYTPlayerError(o:Object):void {
// Event.data contains the event parameter, which is the error code
trace("player error:", o.data);
}
private function onYTStateChange(o:Object):void {
// Event.data contains the event parameter, which is the new player state
trace("player state:" + o.data + (o.data==1) + (o.data=="1"));
// o.data : unstarted (-1), ended (0), playing (1), paused (2), buffering (3), video cued (5)
if(o.data==1 || o.data=="1" || o.data==3 || o.data=="3"){
// When the YTplayer enters in play state, it sends 1 or 3.
if(playheadTimer!=null){
playheadTimer.stop();
playheadTimer = null;
}
playheadTimer = new Timer(500, 3600*2);
playheadTimer.addEventListener(TimerEvent.TIMER, onTimer);
playheadTimer.addEventListener(TimerEvent.TIMER_COMPLETE, onTimerComplete);
playheadTimer.start();
}
else{
// When the YTplayer enters in play state, it sends 1 or 3.
if(playheadTimer!=null){
playheadTimer.stop();
playheadTimer = null;
}
}
// When the video has been loaded, we ask a resize to the manager
if(!sizeUpdated && o.data!=-1 && o.data!="-1"){
dispatchEvent(new VideoEvent(VideoEvent.READY));
}
}
//
// Size matters
//
public function setSize(w:Number, h:Number):void{
if(player!=null){
//trace("setSize " + w + ", " + h);
if(player.setSize) player.setSize(EXTERNALPLAYER_RATIO*Math.max(h,242),Math.max(h,242));
playBtn.y = pauseBtn.y = volPlus.y = volMinus.y = Math.max(h,240) + 10;
}
}
//
// Play/pause mangement
//
private function onBtnClick(e:MouseEvent):void{
if(e.target==playBtn) play();
else if(e.target==pauseBtn) pause();
}
//
// Play/pause mangement
//
public function play():void{
if(player!=null){
player.playVideo();
}
}
public function pause():void{
if(player!=null){
player.pauseVideo();
}
}
//
// Timer management
//
private function onTimer(e:TimerEvent):void{
//trace("onTimer");
if(player!=null){
//trace("onTimer 2 " + player.getCurrentTime());
dispatchEvent(new VideoEvent(VideoEvent.PLAYHEAD_UPDATE, false, false, "playing", player.getCurrentTime()));
}
}
private function onTimerComplete(e:TimerEvent):void{
// nothing to do
}
//
// Visible management
//
public function set visible(b:Boolean):void{
if(player!=null){
player.visible = playBtn.visible = pauseBtn.visible = volMinus.visible = volPlus.visible = b;
if(!b) pause();
}
}
public function get visible():Boolean{
if(player!=null){
return player.visible;
}
return false;
}
//
// Volume management
//
private function onVolClick(e:MouseEvent):void{
if(player!=null){
if(e.target==volPlus) player.setVolume(Math.min(100, player.getVolume()+10));
else if(e.target==volMinus) player.setVolume(Math.max(0, player.getVolume()-10));
}
}
//
// Url management
//
public function loadVideo(url:String):void{
var id:String = "";
if(url!=""&& url.search("youtube")>-1){
if(playerYT!=null){
// A valid youtube url is like : http://www.youtube.com/watch?v=PgEu923nxSE or http://www.youtube.com/v/PgEu923nxSE
// The idea is to get the id from the url. The id is ALWAYS 11 characters.
if(url.search("v=")>-1) id = url.substr(url.search("v=")+2, 11);
else if(url.search("v/")>-1) id = url.substr(url.search("v/")+2, 11);
sizeUpdated = false;
player = playerYT;
if(id!="" && id.length==11) player.loadVideoById(id);
//else Alert.show("Youtube URL must be like\nhttp://www.youtube.com/watch?v=VIDEO_ID", "Attention");
//player.loadVideoById("PgEu923nxSE"); // Stiegler
//player.loadVideoById("7xzU9Qqdqww"); // Kid Cudi - Pursuit Of Happiness ft. Ratatat
}
else{
urlToLoad = url;
loadYTPlayer();
}
}
else if(url!=""&& url.search("dailymotion")>-1){
if(playerDM!=null){
// A valid DM url is like : http://www.dailymotion.com/video/VIDEO_ID
// The idea is to get the id from the url.
if(url.search("video/")>-1) id = url.substr(url.search("video/")+6);
sizeUpdated = false;
player = playerDM;
if(id!="") player.loadVideoById(id);
//else Alert.show("Dailymotion URL must be like\nhttp://www.dailymotion.com/video/VIDEO_ID", "Attention");
//player.loadVideoById("PgEu923nxSE"); // Stiegler
//player.loadVideoById("7xzU9Qqdqww"); // Kid Cudi - Pursuit Of Happiness ft. Ratatat
}
else{
urlToLoad = url;
loadDMPlayer();
}
}
}
//
// Seek management
//
public function goTo(tc:Number, paramPlay:Boolean):void{
if(player!=null){
//player.seekTo(tc, paramPlay);
if(player==playerYT) player.seekTo(tc, true);
else if(player==playerDM) player.seekTo(tc);
}
}
//
// Trying to catch the sandbox errors but does not work...
//
public function onError(er:*):void{
// do nothing
trace("onError " + er);
}
}
}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/bab/player/FLVPlaybackCaptioningLDT.as Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,1 @@
+package bab.player
{
import fl.video.*;
import flash.events.Event;
import flash.events.IOErrorEvent;
import flash.net.URLLoader;
import flash.net.URLRequest;
//import mx.controls.Alert;
import nl.inlet42.data.subtitles.SubTitleData;
import nl.inlet42.data.subtitles.SubtitleParser;
use namespace flvplayback_internal;
public class FLVPlaybackCaptioningLDT extends FLVPlaybackCaptioning
{
public function FLVPlaybackCaptioningLDT()
{
super();
}
public function loadCapXml(capXml:XML):void{
ttm = new TimedTextManager(this);
//trace("ttm 2 = " + ttm);
ttm.xmlLoader = new URLLoader();
ttm.xmlLoader.data = capXml;
//trace("ttm.xmlLoader.data = " + ttm.xmlLoader.data.toString());
ttm.xmlLoadEventHandler(new Event(Event.COMPLETE));
}
//
// Generates a time text xml from a srt file
//
public function loadSrt(urlSrt:String):void{
var urll:URLLoader = new URLLoader(new URLRequest(urlSrt));
urll.addEventListener(Event.COMPLETE, onloadSrt);
urll.addEventListener(IOErrorEvent.IO_ERROR, errorLoadSrt);
}
private function errorLoadSrt(e:IOErrorEvent):void{
//Alert.show("Impossible to load the file " + e.text, "Error");
}
private function onloadSrt(e:Event):void{
var a:Array = SubtitleParser.parseSRT(e.currentTarget.data);
//trace("a = " + a);
var nbSub:uint = a.length;
default xml namespace = new Namespace("http://www.w3.org/2006/10/ttaf1");
var subTtmXml:XML =
<tt xml:lang='en' xmlns='http://www.w3.org/2006/10/ttaf1' xmlns:tts='http://www.w3.org/2006/10/ttaf1#style'>
<head/>
<body>
<div xml:id="captions"/>
</body>
</tt>;
var divNode:XML = subTtmXml.body.div[0];
for(var i:uint=0;i<nbSub;i++){
var sub:SubTitleData = a[i];
divNode.appendChild(new XML("<p begin=\"" + sub.startStr + "\" end=\"" + sub.endStr + "\"><![CDATA[<font face=\"Arial\">" + sub.text + "</font>]]></p>"));
}
loadCapXml(subTtmXml);
}
}
}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/bab/player/FLVPlaybackLDT.as Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,1 @@
+package bab.player
{
import fl.video.*;
import flash.display.DisplayObjectContainer;
use namespace flvplayback_internal;
public class FLVPlaybackLDT extends FLVPlayback
{
public function FLVPlaybackLDT()
{
super();
}
public function showHideSkin(b:Boolean):void{
flvplayback_internal::uiMgr.visible = b;
}
public function hideSeekBarHit():void{
// In some cases, we need to disable the access to the whole media.
// In this purpose, we hise the SeekBarHit and SeekBarHandle.
if(seekBar!=null){
var s:DisplayObjectContainer = seekBar.parent;
var n:uint = s.numChildren;
for(var i:uint=0;i<n;i++){
if(s.getChildAt(i).toString()=="[object SeekBarHit]" || s.getChildAt(i).toString()=="[object SeekBarHandle]"){
s.getChildAt(i).visible = false;
}
}
}
}
//
// Getter setter for smoothing video parameter
//
public function set smoothing(b:Boolean):void{
getVideoPlayer(activeVideoPlayerIndex).smoothing = b;
}
public function get smoothing():Boolean{
return getVideoPlayer(activeVideoPlayerIndex).smoothing;
}
public function switchSmooth():void{
smoothing = !smoothing;
}
}
}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/bab/player/FlvPlayer.as Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,1 @@
+package bab.player
{
import fl.video.MetadataEvent;
import fl.video.SoundEvent;
import fl.video.VideoEvent;
import fl.video.VideoScaleMode;
import fl.video.VideoState;
import flash.display.Graphics;
import flash.display.Loader;
import flash.display.MovieClip;
import flash.display.Sprite;
import flash.events.Event;
import flash.events.IOErrorEvent;
import flash.events.MouseEvent;
import flash.events.TimerEvent;
import flash.net.URLRequest;
import flash.text.StyleSheet;
import flash.text.TextField;
import flash.text.TextFormat;
import flash.text.TextFormatAlign;
import flash.utils.Timer;
import fl.controls.ProgressBar;
import bab.player.events.EditEvent;
public class FlvPlayer extends Sprite
{
private var wMin:Number = 550;
private var hMin:Number = 400;
public var flvPB:FLVPlaybackLDT;
private var widthFlv:uint;
private var heightFlv:uint;
private var uic:Sprite;
private var loading:TextField;
private var tcLabel:TextField;
private var metas:Array = new Array();
private var curRatio:Number;
private var savePlay:Boolean = false;
public var editSkin:EditSkin;
//private var babAr:Array;
private var curInst:int = -1;
private var babRunning:Boolean = false;
private var babRunningTimer:Timer;
public var babSkin:MovieClip;
private var babRatio:Number = 1.25;
private var editList:Array;
private var mediaList:Array;
private var instanceToPlay:uint = 0;
private var imageLayer:MovieClip;
private var pictAr:Array;
private var nbPictLoaded:uint;
private var mcContainer:Sprite;
private var bgMcCtn:Sprite;
private var textLayer:TextField;
private var styles:StyleSheet;
private var tf:TextFormat;
private var pb:ProgressBar;
private var caption:FLVPlaybackCaptioningLDT;
private var fullScreenOn:Boolean = false;
public var writeTC:Boolean = true;
private var YTPlayer:ExternalPlayer;
private var currentTcBab:Number;
private var debugText:TextField;
public function FlvPlayer(wInit:Number=550, hInit:Number=400, urlSkin:String="", debug:TextField=null)
{
super();
wMin = wInit;
hMin = hInit;
debugText = debug;
// Container for text layer, image layer and flvPB
uic = new Sprite();
addChild(uic);
// Background container
mcContainer = new Sprite();
mcContainer.visible = false;
uic.addChild(mcContainer);
bgMcCtn = new Sprite();
bgMcCtn.graphics.beginFill(0x770000);
bgMcCtn.graphics.drawRect(0,0,wMin,hMin);
bgMcCtn.graphics.endFill();
mcContainer.addChild(bgMcCtn);
// Text layer
textLayer = new TextField();
textLayer.width = wMin;
tf = new TextFormat("Verdana",12,0xFFFFFF);
tf.align = TextFormatAlign.CENTER;
/*styles = new StyleSheet();
var body:Object = new Object();
body.fontFamily = "Verdana";
body.fontSize = 12;
body.color = "#FFFFFF";
body.align = "center";
styles.setStyle("body", body);
textLayer.styleSheet = styles;*/
textLayer.wordWrap = true;
textLayer.visible = false;
mcContainer.addChild(textLayer);
// Flv playback component
flvPB = new FLVPlaybackLDT();
uic.addChild(flvPB);
flvPB.autoPlay = false;
flvPB.fullScreenTakeOver = false;
flvPB.scaleMode = VideoScaleMode.MAINTAIN_ASPECT_RATIO;
//flvPB.skin = urlSkin + "SkinUnderPlaySeekMuteVol.swf"; // urlSkin finishes with a "/"
//flvPB.skinBackgroundColor = 0xCCCCCC;
flvPB.addEventListener(MetadataEvent.METADATA_RECEIVED, onMDReceived);
flvPB.addEventListener(VideoEvent.PLAYHEAD_UPDATE, onPlayheadUpdate);
flvPB.addEventListener(VideoEvent.READY, onReady);
flvPB.addEventListener(VideoEvent.SEEKED, onSeeked);
flvPB.addEventListener(VideoEvent.STATE_CHANGE, onStateChange);
caption = new FLVPlaybackCaptioningLDT();
uic.addChild(caption);
var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, placeBabSkin);
loader.load(new URLRequest(urlSkin));
uic.addChild(loader);
imageLayer = new MovieClip();
this.addChild(imageLayer);
tcLabel = new TextField();
tcLabel.text = "[00:00:00]";
tcLabel.textColor = 0xFFFFFF;
tcLabel.x = 120;
this.addChild(tcLabel);
loading = new TextField();
loading.text = "Loading...";
loading.textColor = 0x0000FF;
loading.visible = false;
loading.mouseEnabled = false;
//loading.styleSheet.setStyle("horizontalCenter",0);
this.addChild(loading);
pb = new ProgressBar();
pb.visible = false;
addChild(pb);
}
//
// On creation complete
//
private function placeBabSkin(e:Event):void {
babSkin = e.target.content;
//trace("babSkin 2 = " + babSkin.play_mc + ", " + babSkin.pause_mc + ", " + babSkin.back_mc + ", " + babSkin.forward_mc + ", " + babSkin.volumeBarHandle_mc + ", " + babSkin.volumeBar_mc);
babSkin.y = heightFlv;
babSkin.getChildAt(0).width = widthFlv;
babSkin.visible = false;
editSkin = new EditSkin(this);
editSkin.addEventListener(EditEvent.EDIT_PLAYPAUSE, onEditPlayPause);
editSkin.addEventListener(EditEvent.EDIT_BACK, onEditBack);
editSkin.addEventListener(EditEvent.EDIT_FORWARD, onEditForward);
editSkin.addEventListener(EditEvent.EDIT_SOUNDUPDATE, onEditVolumeUpdate);
// usefull to notice edit skin has been loaded.
dispatchEvent(new Event(EditEvent.EDIT_CHANGEINSTRUCTION));
}
//
// load media function
//
public function loadMedia(path:String, live:Boolean=false, paramPlay:Boolean=false, firstST:String="", extrasAr:Array=null):void{
//trace("loadMedia " + path);
stopBab();
// First, we check if the url to load is a Youtube url
if(path.search("youtube.com")>-1 || path.search("dailymotion.com")>-1){
pause();
// A valid youtube url is like : http://www.youtube.com/watch?v=PgEu923nxSE or http://www.youtube.com/v/PgEu923nxSE
if(YTPlayer==null){
YTPlayer = new ExternalPlayer(uic, path);
YTPlayer.addEventListener(VideoEvent.PLAYHEAD_UPDATE, onPlayheadUpdate);
YTPlayer.addEventListener(VideoEvent.READY, initSizes);
}
else YTPlayer.loadVideo(path);
curRatio = ExternalPlayer.EXTERNALPLAYER_RATIO;
//initSizes();
YTPlayer.visible = true;
flvPB.visible = false;
}
else{
if(YTPlayer!=null) YTPlayer.visible = false;
flvPB.visible = true;
// We check if the media is already loaded
var nbMedias:uint = metas.length;
var vp:Number = getVp(path);
var vol:Number = flvPB.volume;
// We stop the current reading if possible
if(nbMedias>0 && allowFlvPB()) { flvPB.stop(); }
// We load the new content or play the already loaded content
if(isNaN(vp)){
vp = metas.length;
// We activate the good video player index
flvPB.activeVideoPlayerIndex = flvPB.visibleVideoPlayerIndex = vp;
flvPB.smoothing = true;
//trace("je load " + vp + ", " + path);
metas.push({path:path, w:3, h:1, ratio:3});
curRatio = metas[vp].ratio;
savePlay = paramPlay;
if(live==true){
savePlay = true;
flvPB.play(path, NaN, true);
}
else flvPB.load(path); // Then the window will be resized on metadata received
//trace("LoadMedia flvPB.volume : " + flvPB.volume);
// sets the volume to 0 (to avoid a bug) then sets it back to its previous level
flvPB.volume = 0;
flvPB.volume = vol;
}
else{
// We activate the good video player index
flvPB.activeVideoPlayerIndex = flvPB.visibleVideoPlayerIndex = vp;
flvPB.smoothing = true;
//trace("vp = " + flvPB.activeVideoPlayerIndex + ", " + flvPB.isLive);
//trace("je play " + vp + ", " + path);
if(allowFlvPB()){ savePlay==false ? flvPB.pause() : flvPB.play(); }
// sets the volume to 0 (to avoid a bug) then sets it back to its previous level
flvPB.volume = 0;
flvPB.volume = vol;
// We have to resize the window
curRatio = metas[vp].ratio;
initSizes();
}
// If a subtitle path is indicated we display it
var ext:String = firstST.toLowerCase().substr(firstST.length-3);
if(ext=="xml"){
caption.source = firstST;
}
else if(ext=="srt"){
caption.loadSrt(firstST);
}
// We set the caption/subtitles module to the good videoPlayerIndex index
caption.videoPlayerIndex = vp;
}
}
private function getVp(path:String):Number{
// We check if the media is already loaded
var i:uint = 0;
var nbMedias:uint = metas.length;
var vp:Number = NaN;
while(i<nbMedias && isNaN(vp)){
if(metas[i].path==path){
vp = i;
}
i++;
}
return vp;
}
//
// Function allowing to go to the wanted timecode. TC is in milliseconds, paramPlay enable to play or pause the video
//
public function goTo(tc:Number=0, paramPlay:Boolean=true):void{
//trace("goto " + paramPlay + ", flvPB.isLive = " + flvPB.isLive);
if((flvPB.isLive==false && allowFlvPB()) && metas.length>0 && (YTPlayer==null || !YTPlayer.visible)){
// It appears that we have some problems when the video is streamed :
// if we ask seek while the video is being played, the server plays the video from the beginning,
// so we have to pause it first.
if((metas[flvPB.visibleVideoPlayerIndex].path.substr(0,4).toLowerCase()=="rtmp") && paramPlay){
if(allowFlvPB()) flvPB.pause();
}
if(allowFlvPB()) flvPB.seek(tc/1000);
savePlay = paramPlay;
}
else if(YTPlayer!=null){
if(YTPlayer.visible){
YTPlayer.goTo(tc/1000, paramPlay);
}
}
}
//
// Function enabling to know the flvPB is playing (or pause)
//
public function isPlaying():Boolean{ return flvPB.playing; }
//
// Function enabling to switch play-pause and pause-play
//
public function playPause():void{
//trace(this.name + " playPause " + babRunning + ", flvPB.playing = " + flvPB.playing);
if(babRunning==false){
if(flvPB.playing==true){
if(allowFlvPB()) flvPB.pause();
savePlay = false;
}
else{
if(allowFlvPB()) flvPB.play();
savePlay = true;
}
}
else onEditPlayPause();
}
public function play():void{
if(allowFlvPB()) flvPB.play();
savePlay = true;
}
public function pause():void{
if(allowFlvPB()) flvPB.pause();
savePlay = false;
}
public function stop():void{
if(metas.length>0 && allowFlvPB()){ flvPB.stop(); }
savePlay = false;
if(babRunning==true){
if(babRunningTimer!=null){ if(babRunningTimer.running==true){ babRunningTimer.stop(); } }
babRunning = false;
}
}
//
// Manage video events
//
private function onMDReceived(e:MetadataEvent):void{
/*var o:Object;
trace("MD");
for(o in e.info){
trace(o + " : " + e.info[o.toString()]);
}*/
if(e.info["duration"]!=null){
//(this.parentApplication as LignesDeTempsFlex).debug.text += "\nw = " + e.info["width"] + "\nh = " + e.info["height"] + "\ndur = " + e.info["duration"];
}
var w:uint = Math.max(3, uint(e.info["width"]));
var h:uint = Math.max(1, uint(e.info["height"]));
metas[e.vp].w = w;
metas[e.vp].h = h;
metas[e.vp].ratio = w/h;
if(e.vp==flvPB.activeVideoPlayerIndex){
// If we load the content for a bout à bout (edit), we force the ratio at the bab Ratio
curRatio = (babRunning==true) ? babRatio : metas[e.vp].ratio;
initSizes();
}
}
private function getInfoID3(e:Event):void{
var o:Object;
trace("getInfoID3");
for(o in e){
trace(o + " : " + e[o.toString()]);
}
}
private function onStateChange(e:VideoEvent=null):void {
// If the user is not allowed to read the whole media, we hide the SeekBarHit
//if(Config.readFullLength==false) flvPB.hideSeekBarHit();
// We display an alert message if there is a connection error
dispatchEvent(new VideoEvent(VideoEvent.STATE_CHANGE, false, false, e.state));
if(e.state==VideoState.CONNECTION_ERROR){
//Alert.show("The player can not find the video file :\n" + metas[e.vp].path, "No video file");
}
}
private function allowFlvPB():Boolean{
return (flvPB.state!=VideoState.CONNECTION_ERROR && flvPB.state!=VideoState.DISCONNECTED);
}
private function onReady(e:VideoEvent=null):void {
//trace("onReady savePlay = " + savePlay);
// We have to do that to force pause on load
if(allowFlvPB()){ savePlay==false ? flvPB.pause() : flvPB.play(); }
}
private function onSeeked(e:VideoEvent):void {
//trace(name + " onSeeked savePlay = " + savePlay);
loading.visible = false;
// We have to do that to force pause on load
if(allowFlvPB()){ savePlay==false ? flvPB.pause() : flvPB.play(); }
}
public function onPlayheadUpdate(e:VideoEvent):void {
//trace("onPU " + e.state + ", " + e.playheadTime + ", " + babRunning);//editList[curInst].tOut + ", " +
if(e.state=="seeking"){ loading.visible = true; }
if(babRunning==false && writeTC==true){
tcLabel.text = "[" + convertTC(e.playheadTime*1000, false) + "]";
this.dispatchEvent(e);
}
else if(babRunning==true){
if(e.playheadTime>=editList[curInst].tOut && e.state=="playing"){
playBabInst(curInst+1);
}
//var tcBab:Number;
if(mediaList[editList[curInst].m].type=="v"){
//trace(editList[curInst].eIn + ", " + e.playheadTime + ", " + editList[curInst].tIn + ", diff = " + (editList[curInst].tIn - e.playheadTime));
// If the current playheadTime is inferior to editList[curInst].tIn more than 2 seconds, we reseek to the tIn
if((editList[curInst].tIn - e.playheadTime)>3){
if(allowFlvPB()) flvPB.seek(editList[curInst].tIn);
}
else{
// We apply max : because of the playhead's approximation, e.playheadTime can be inferior to tIn
currentTcBab = Math.max(editList[curInst].eIn*1000,(editList[curInst].eIn + e.playheadTime - editList[curInst].tIn)*1000);
//currentTcBab = tcBab;
tcLabel.text = "[" + convertTC(currentTcBab, false) + "]";
this.dispatchEvent(new EditEvent(EditEvent.EDIT_UPDATETC, currentTcBab));
}
}
else if(mediaList[editList[curInst].m].type=="p" || mediaList[editList[curInst].m].type=="t"){
currentTcBab = (editList[curInst].eIn)*1000;
tcLabel.text = "[" + convertTC(currentTcBab, false) + "]";
this.dispatchEvent(new EditEvent(EditEvent.EDIT_UPDATETC, currentTcBab));
}
}
}
//
// Set the good sizes function of the ratio
//
public function initSizes(e:VideoEvent=null):void{
// We set hMin and wMin for the video to take the maximum of space. wMax = 415, hMax = 310
/*if((Math.round(424/curRatio)+24+37)>310){
hMin = 310;
wMin = (310-24-37)*curRatio;
}
else{
wMin = 415;
hMin = Math.round(wMin/curRatio) + 24 + 37;
}
if(width<wMin) {}
else{
height = Math.round(width/curRatio) + 24 + 37;
}*/
}
//
// Function enabling to take or let control of the timecode label
//
public function set manageEventTimer(b:Boolean):void{
writeTC = b;
}
public function set tcText(s:String):void{
tcLabel.text = s;
}
private function onResize():void{
setSize(wMin, hMin - 37);
}
public function setSize(w:uint, h:uint):void{
//trace("setSize " + w + ", " + h);
if(h<1000){ // avoids resize problems if metadatas were not good
//mcContainer.width = imageLayer.width = widthFlv = w;
//mcContainer.height = imageLayer.height = heightFlv = h;
imageLayer.width = widthFlv = w;
imageLayer.height = heightFlv = h;
loading.y = heightFlv - 16;
tcLabel.y = heightFlv;
//if(metas.length==1 && metas[0]["path"].search("mp3:")>-1){
flvPB.setSize(widthFlv,heightFlv);
flvPB.scaleMode = VideoScaleMode.MAINTAIN_ASPECT_RATIO;
if(babSkin!=null){
babSkin.y = heightFlv - 3;
babSkin.getChildAt(0).width = widthFlv;
}
var nbChilds:uint = imageLayer.numChildren;
for(var i:uint=0;i<nbChilds;i++){
imageLayer.getChildren()[i].width = widthFlv;
imageLayer.getChildren()[i].height = heightFlv;
}
if(YTPlayer!=null) YTPlayer.setSize(widthFlv,heightFlv);
}
}
//
// BOUT A BOUT (EDIT) FUNCTIONS
//
public function getEditList(editListPar:Array, mediaListPar:Array):void{
//if(Global.flv2==name) trace("flv getEditList " + editListPar.length + ", " + mediaListPar.length);
if(mediaListPar.length>0 && editListPar.length>0){
instanceToPlay = 0;
curInst = -1;
// We don't display the different layers
textLayer.visible = false;
mcContainer.visible = false;
imageLayer.visible = false;
flvPB.visible = false;
// We search for every media
var i:uint;
editList = editListPar;
mediaList = mediaListPar;
var nbMedias:uint = mediaList.length;
var nbLoaded:uint = metas.length;
var canStart:Boolean = true;
var a:Array = new Array();
for(i=0;i<nbMedias;i++){
// We check if the videos are not already loaded
if(mediaList[i].type=="v"){
var found:Boolean = false;
var j:uint = 0;
while(j<nbLoaded && found==false){
if(metas[j].path==mediaList[i].content){ found = true; }
j++;
}
// If the path was not found, we load the media
if(nbLoaded==0 || found==false){
loadMedia(mediaList[i].content);
}
}
// We load every picture before the bout a bout starts
else if(mediaList[i].type=="p"){
canStart = false;
// We add the Global.projPath to the pict url when its path is relative (= "_resources/...")
//a.push( ((mediaList[i].content.substr(0,9)=="_resource") ? Global.projPath : "") + mediaList[i].content);
a.push(mediaList[i].content);
}
}
if(canStart==true) startBab();
else{
// We delete doubloons
a.sort(Array.CASEINSENSITIVE);
for(i=0;i<a.length;i++){
if(a[i]==a[i+1] || a[i]==""){
a.splice(i,1);
i--; // We do i-- because we spliced an index so we have to redo the test at "i" position
}
}
loadPicts(a);
}
}
}
//
// Image load management
//
private function loadPicts(a:Array):void{
var i:uint;
// We delete the old pictures
pictAr = [];
var nbChilds:uint = imageLayer.getChildren().length;
for(i=0;i<nbChilds;i++){
imageLayer.removeChildAt(0);
}
// We add the new ones
var nbPict:uint = a.length;
nbPictLoaded = 0;
if(nbPict>0){
// We prepare pictAr
for(i=0;i<nbPict;i++){
pictAr.push({src:a[i], img:null});
}
loadPict(a[0]);
}
else startBab();
}
private function loadPict(src:String):void{
var nbPict:uint = pictAr.length;
var i:uint = 0;
var found:Boolean = false;
while(i<nbPict && found==false){
if(pictAr[i].src==src && pictAr[i].img!=null){ found = true; }
i++;
}
if(found==false){
var img:Image = new Image();
img.width = widthFlv;
img.height = widthFlv / babRatio;
//img.setStyle("horizontalAlign","center");
//img.setStyle("verticalAlign","center");
//img.maintainAspectRatio = true;
img.y = 0;
img.addEventListener(Event.INIT, imgComplete);
img.addEventListener(IOErrorEvent.IO_ERROR, imgError);
pb.visible = true;
//pb.label = "Loading picture " + (nbPictLoaded+1) + " %3%%";
pb.source = img;
// trace("load img :\n" + src);
// (this.parentApplication as LignesDeTempsFlex).debug.text += "\nload img :\n" + src;
img.source = src;
img.visible = false;
imageLayer.addChild(img);
}
else{
nbPictLoaded++;
if(nbPictLoaded==nbPict) startBab();
}
//(this.parentApplication as LignesDeTempsFlex).debug.text += "\nload img" + src
}
private function imgError(e:IOErrorEvent):void {
// We don't display the progress bar anymore
pb.visible = false;
// We update pictAr
var img:Image = e.target as Image;
var src:String = img.source as String;
// trace("imgError :\n" + src);
// (this.parentApplication as LignesDeTempsFlex).debug.text += "\nimgError" + src;
loadNextPict(src, img);
}
private function imgComplete(e:Event):void {
// We don't display the progress bar anymore
pb.visible = false;
// We update pictAr
var img:Image = e.target as Image;
var src:String = img.source as String;
// trace("imgComplete :\n" + src);
// (this.parentApplication as LignesDeTempsFlex).debug.text += "\nimgComplete" + src;
loadNextPict(src, img);
}
private function loadNextPict(src:String, img:Image):void{
var nbPict:uint = pictAr.length;
var i:uint = 0;
var found:Boolean = false;
while(i<nbPict && found==false){
if(pictAr[i].src==src){
found = true;
pictAr[i].img = img;
}
i++;
}
nbPictLoaded++;
if(nbPictLoaded==nbPict){
// Because of the time needed when we load picture, BaB can start before all pictures are loaded
// So we curInst we recall set curInst at -1 in order to call startBab at the correct time.
curInst = -1;
startBab();
}
else loadPict(pictAr[nbPictLoaded].src);
}
private function displayPict(src:String):void{
var nbPict:uint = pictAr.length;
for(var i:uint=0;i<nbPict;i++){
if(pictAr[i].src==src && pictAr[i].img!=null){
// trace("img vis : " + pictAr[i].src + " : " + pictAr[i].img);
// (this.parentApplication as LignesDeTempsFlex).debug.text += "\nimg vis : " + pictAr[i].src + " : " + pictAr[i].img;
pictAr[i].img.visible = true;
}
else if(pictAr[i].img!=null){ pictAr[i].img.visible = false; }
}
}
//
// Bab timer management
//
private function completeTimer(e:TimerEvent):void {
//trace("completeTimer");
babRunningTimer.stop();
babRunningTimer.removeEventListener(TimerEvent.TIMER, onRunningTimer);
babRunningTimer.removeEventListener(TimerEvent.TIMER_COMPLETE,completeTimer);
playBabInst(curInst+1);
}
private function onRunningTimer(e:TimerEvent):void {
//trace("onRunningTimer " + babRunningTimer.currentCount + " sur " + babRunningTimer.repeatCount);
currentTcBab = editList[curInst].eOut*1000 - (babRunningTimer.repeatCount-babRunningTimer.currentCount)*250;
tcLabel.text = "[" + convertTC(currentTcBab, false) + "]";
//(this.parentApplication as LignesDeTempsFlex).debug.text += "[" + convertTC(tcBab, false) + "]";
dispatchEvent(new EditEvent(EditEvent.EDIT_UPDATETC, currentTcBab));
}
private function onEditPlayPause(e:EditEvent=null):void{
//trace(this.name + " onEditPlayPause " + mediaList[editList[curInst].m].type);
if(babRunning==true){
var tcBab:Number;
if(mediaList[editList[curInst].m].type=="v"){
//flvPB.playing==true ? (flvPB.pause();trace("je pause");) : (flvPB.play();trace("je play"););
if(flvPB.playing==true){
if(allowFlvPB()) flvPB.pause();
editSkin.isPlaying = false;
}else{
savePlay = true;
if(allowFlvPB()) flvPB.play();
editSkin.isPlaying = true;
}
}
else if(mediaList[editList[curInst].m].type=="p" || mediaList[editList[curInst].m].type=="t"){
if(babRunningTimer!=null){
if(babRunningTimer.running==true){
babRunningTimer.stop();
editSkin.isPlaying = false;
//trace("after stop " + babRunningTimer.currentCount + " sur " + babRunningTimer.repeatCount);
}
else{
var newNb:uint = babRunningTimer.repeatCount - babRunningTimer.currentCount;
babRunningTimer = new Timer(250, newNb);
//trace("je reprends " + babRunningTimer.currentCount + " sur " + newNb);
babRunningTimer.addEventListener(TimerEvent.TIMER, onRunningTimer);
babRunningTimer.addEventListener(TimerEvent.TIMER_COMPLETE, completeTimer);
babRunningTimer.start();
editSkin.isPlaying = true;
}
}
}
}
}
//
// Edit events functions
//
public function onEditBack(e:EditEvent=null):void{
//trace("onEditBack");
playBabInst(curInst-1);
}
public function onEditForward(e:EditEvent=null):void{
//trace("onEditForward");
playBabInst(curInst+1);
}
private function onEditVolumeUpdate(e:EditEvent=null):void{
//trace("onEditVolumeUpdate " + e.volume);
flvPB.volume = e.volume;
}
//
// Edit play functions
//
public function startBab():void{
trace("startBab flvPB = " + flvPB);
try{
flvPB.showHideSkin(false);
}
catch(e:*){ trace("flvPB.showHideSkin error"); }
curRatio = babRatio;
//hMin = Math.round(wMin/babRatio) + 24 + 37;
//height = Math.round(width/babRatio) + 24 + 37;
onResize();
tcLabel.text = "[" + convertTC(0, false) + "]";
if(babSkin) { babSkin.visible = true; }
playBabInst(instanceToPlay, false);
onResize();
}
public function stopBab():void{
//trace("stopBab");
textLayer.visible = false;
mcContainer.visible = false;
imageLayer.visible = false;
babRunning = false;
if(babSkin!=null){ babSkin.visible = false; }
flvPB.visible = true;
flvPB.showHideSkin(true);
if(babRunningTimer!=null){
if(babRunningTimer.running==true){
babRunningTimer.stop();
}
}
curInst = -1;
}
public function playBabInst(i:uint, paramPlay:Boolean=true):void{
//if(Global.flv2==name) trace(name + " playBabInst change je passe a " + i + ", curInst = " + curInst + ", paramPlay = " + paramPlay);
if(editList!=null){if(i<editList.length){
// We update the edit player skin
editSkin.isPlaying = paramPlay;
if(curInst!=i || paramPlay==true){
babRunning = true;
instanceToPlay = curInst = i;
if(babRunningTimer!=null){ if(babRunningTimer.running==true){ babRunningTimer.stop(); } }
if(mediaList[editList[curInst].m].type=="v"){
// Video case
textLayer.visible = false;
mcContainer.visible = true;
drawBgCtn(0x000000); // We draw a black background
imageLayer.visible = false;
savePlay = paramPlay || mediaList[editList[curInst].m].content.substr(0,4).toLowerCase()=="rtmp";
var vp:Number = getVp(mediaList[editList[curInst].m].content);
//if(Global.flv2==name) trace(name + " vp = " + vp);
if(flvPB.activeVideoPlayerIndex!=vp){
if(allowFlvPB()) flvPB.pause();
flvPB.activeVideoPlayerIndex = flvPB.visibleVideoPlayerIndex = vp;
flvPB.smoothing = true;
}
if(allowFlvPB()){
// If the video is NOT streamed and savePlay==true, we play it.
if(savePlay==true && mediaList[editList[curInst].m].content.substr(0,4).toLowerCase()!="rtmp") flvPB.play();
// If the video IS streamed and the player is playing, we have to pause it for the seek to work.
if(!flvPB.paused && mediaList[editList[curInst].m].content.substr(0,4).toLowerCase()=="rtmp") flvPB.pause();
flvPB.seek(editList[curInst].tIn);
}
flvPB.visible = true;
// sets the volume to 0 (to avoid a bug) then sets it back to its previous level
var vol:Number = flvPB.volume;
flvPB.volume = 0;
flvPB.volume = vol;
}
else if(mediaList[editList[curInst].m].type=="p"){
// Picture case
textLayer.visible = false;
mcContainer.visible = true;
drawBgCtn(mediaList[editList[curInst].m].color);
imageLayer.visible = true;
flvPB.visible = false;
if(metas.length>0 && allowFlvPB()){ flvPB.pause(); }
//displayPict( ((mediaList[editList[curInst].m].content.substr(0,9)=="_resource") ? Global.projPath : "") + mediaList[editList[curInst].m].content);
displayPict(mediaList[editList[curInst].m].content);
imageLayer.y = 0;
babRunningTimer = new Timer(250, editList[i].tOut*4);
//trace("je lance un timer sur " + (babAr[i].tOut*4));
babRunningTimer.addEventListener(TimerEvent.TIMER, onRunningTimer);
babRunningTimer.addEventListener(TimerEvent.TIMER_COMPLETE, completeTimer);
babRunningTimer.start();
if(paramPlay==false){ onEditPlayPause(); }
}
else if(mediaList[editList[curInst].m].type=="t"){
// Text case
textLayer.visible = true;
mcContainer.visible = true;
drawBgCtn(mediaList[editList[curInst].m].color);
imageLayer.visible = false;
flvPB.visible = false;
if(metas.length>0 && allowFlvPB()){ flvPB.pause(); }
textLayer.htmlText = mediaList[editList[curInst].m].content;
// If the color is clear the text will be black, if the color is dark the text will be white.
tf.color = (RGB2L(mediaList[editList[curInst].m].color)>(255*3/2)) ? 0x000000 : 0xFFFFFF;
textLayer.setTextFormat(tf);
textLayer.height = Math.floor(textLayer.textHeight) + 10;
textLayer.y = ((hMin-37-37)/2) - (textLayer.textHeight/2);
if(babRunningTimer!=null){
if(babRunningTimer.running==true){
babRunningTimer.stop();
}
}
babRunningTimer = new Timer(250, editList[i].tOut*4);
//trace("je lance un timer sur " + (babAr[i].tOut*4));
babRunningTimer.addEventListener(TimerEvent.TIMER, onRunningTimer);
babRunningTimer.addEventListener(TimerEvent.TIMER_COMPLETE, completeTimer);
babRunningTimer.start();
if(paramPlay==false){ onEditPlayPause(); }
}
//if(Global.flv2==name) trace(name + " playBabInst textLayer = " + textLayer.visible + ", mcContainer = " + mcContainer.visible + ", imageLayer = " + imageLayer.visible + ", flvPB = " + flvPB.visible);
//trace("4* tcBab = " + (editList[curInst].eIn*1000));
currentTcBab = editList[curInst].eIn * 1000;
dispatchEvent(new EditEvent(EditEvent.EDIT_UPDATETC, currentTcBab));
tcLabel.text = "[" + convertTC(currentTcBab, false) + "]";
}
// Else we run the current segment from the beginning
else if(curInst==i){
babRunning = true;
if(babRunningTimer!=null){ if(babRunningTimer.running==true){ babRunningTimer.stop(); } }
//if(Global.flv2==name) trace(name + " 2 type m = " + mediaList[editList[curInst].m].type);
//trace("m " + mediaList[editList[curInst].m].type + ", c = " + mediaList[editList[curInst].m].content + ", col = " + mediaList[editList[curInst].m].color);
if(mediaList[editList[curInst].m].type=="v"){
savePlay = paramPlay;
//if(Global.flv2==name) trace(name + " 2 vp = " + vp);
if(allowFlvPB()){
// If the video is NOT streamed and savePlay==true, we play it.
if(savePlay==true && mediaList[editList[curInst].m].content.substr(0,4).toLowerCase()!="rtmp") flvPB.play();
// If the video IS streamed and the player is playing, we have to pause it for the seek to work.
if(!flvPB.paused && mediaList[editList[curInst].m].content.substr(0,4).toLowerCase()=="rtmp") flvPB.pause();
flvPB.seek(editList[curInst].tIn);
}
}
else if(mediaList[editList[curInst].m].type=="p"){
babRunningTimer = new Timer(250, editList[i].tOut*4);
//trace("je lance un timer sur " + (editList[i].tOut*4));
babRunningTimer.addEventListener(TimerEvent.TIMER, onRunningTimer);
babRunningTimer.addEventListener(TimerEvent.TIMER_COMPLETE, completeTimer);
babRunningTimer.start();
if(paramPlay==false){ onEditPlayPause(); }
}
else if(mediaList[editList[curInst].m].type=="t"){
if(babRunningTimer!=null){
if(babRunningTimer.running==true){
babRunningTimer.stop();
}
}
babRunningTimer = new Timer(250, editList[i].tOut*4);
//trace("je lance un timer sur " + (babAr[i].tOut*4));
babRunningTimer.addEventListener(TimerEvent.TIMER, onRunningTimer);
babRunningTimer.addEventListener(TimerEvent.TIMER_COMPLETE, completeTimer);
babRunningTimer.start();
if(paramPlay==false){ onEditPlayPause(); }
}
//if(Global.flv2==name) trace(name + " playBabInst 2 textLayer = " + textLayer.visible + ", mcContainer = " + mcContainer.visible + ", imageLayer = " + imageLayer.visible + ", flvPB = " + flvPB.visible);
currentTcBab = editList[curInst].eIn * 1000;
dispatchEvent(new EditEvent(EditEvent.EDIT_UPDATETC, currentTcBab));
tcLabel.text = "[" + convertTC(currentTcBab, false) + "]";
}
}
else{
if(metas.length>0 && allowFlvPB()){ flvPB.pause(); }
babRunning = false;
}}
//if(Global.flv2==name) trace(name + " playBabInst 2 textLayer = " + textLayer.visible + ", mcContainer = " + mcContainer.visible + ", imageLayer = " + imageLayer.visible + ", flvPB = " + flvPB.visible);
}
private function drawBgCtn(col:uint):void{
var g:Graphics = bgMcCtn.graphics;
g.clear();
g.beginFill(col);
g.drawRect(0,0,wMin,hMin-39);
g.endFill();
}
//
// Empties the edit arrays
//
public function empty():void{
editList = [];
mediaList = [];
babRunning = false;
curInst = -1;
}
//
// Get luminance from RGB. Luminance is the sum between the 3 values from 0 to 255 of red, green and blue.
//
private function RGB2L(c:uint):uint{
var r:uint = (c >> 16) & 0xFF;
var g:uint = (c >> 8) & 0xFF;
var b:uint = c & 0xFF;
var l:uint = r + g + b;
return l;
}
public function get volume():Number{ return flvPB.volume;}
private function convertTC(monTC:Number, tenth:Boolean=true) : String {
// We do this 2 divisions to keep only 1 number after "."
monTC = Math.floor(monTC/100);
monTC = (tenth==true) ? monTC/10 : Math.floor(monTC/10);
var MaHeu:Number = Math.floor(monTC/3600);
var MaMin:Number = Math.floor(monTC/60)-(60*MaHeu);
var MaSec:Number = ((monTC*10)%600) / 10; // We have to do that because there is an incomprehensible probleme with %60
var MonTime:String = ((MaHeu<10)?"0":"") + MaHeu + ":" + ((MaMin<10)?"0":"") + MaMin + ":" + ((MaSec<10)?"0":"") + MaSec;
return MonTime;
}
//
// External Interface functions
//
public function playVideo(e:*=null):Boolean{
if(metas.length>0 && allowFlvPB()){
flvPB.play();
editSkin.isPlaying = true;
}
debugOutput("playVideo e = " + e);
return true;
}
public function pauseVideo(e:*=null):Boolean{
if(metas.length>0 && allowFlvPB()){
flvPB.pause();
editSkin.isPlaying = false;
}
debugOutput("pauseVideo e = " + e);
return true;
}
public function getCurrentTime(e:*=null):Number{
// We send in seconds
var tc:Number = Math.floor(currentTcBab) / 1000;
debugOutput("getCurrentTime e = " + tc);
return tc;
}
public function seekTo(e:*=null):Boolean{
debugOutput("seekTo e = " + e);
return true;
}
public function isMuted(e:*=null):Boolean{
var b:Boolean = (flvPB.volume==0);
debugOutput("isMuted e = " + b);
return b;
}
public function mute(e:*=null):Boolean{
debugOutput("mute e = " + e);
flvPB.volume = 0;
flvPB.volume = 0;
return true;
}
public function unMute(e:*=null):Boolean{
debugOutput("unMute e = " + e);
flvPB.volume = 0;
flvPB.volume = 1;
return true;
}
public function getVolume(e:*=null):Number{
debugOutput("getVolume e = " + volume);
return volume;
}
public function setVolume(e:*=null):Boolean{
flvPB.volume = 0;
flvPB.volume = e;
debugOutput("setVolume e = " + e);
return true;
}
private function debugOutput(s:String):void{
if(debugText) debugText.text = "bab " + s;
}
}
}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/bab/player/Image.as Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,1 @@
+package bab.player
{
import flash.display.Sprite;
public class Image extends Sprite
{
public var source:*;
public function Image()
{
super();
}
}
}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/bab/player/events/EditEvent.as Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,1 @@
+package bab.player.events
{
import flash.events.Event;
public class EditEvent extends Event
{
public static var EDIT_PLAYPAUSE:String = "EditPlayPause";
public static var EDIT_BACK:String = "EditBack";
public static var EDIT_FORWARD:String = "EditForward";
public static var EDIT_SOUNDUPDATE:String = "EditSoundUpdate";
public static var EDIT_UPDATETC:String = "EditUpdateTC";
public static var EDIT_CHANGEINSTRUCTION:String = "EditChangeInstruction";
public var volume:Number; // between 0 and 100;
public var inst:Number; // number of instruction in an edit from 0 to ...
public var tc:Number; // bab-edit's timecode
public function EditEvent(typePar:String, nb:Number=100, bubbles:Boolean=false, cancelable:Boolean=false)
{
super(typePar, bubbles, cancelable);
if(typePar==EDIT_SOUNDUPDATE) volume = nb;
else if(typePar==EDIT_UPDATETC) tc = nb;
else if(typePar==EDIT_CHANGEINSTRUCTION) inst = nb;
}
}
}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/nl/inlet42/data/subtitles/SubTitleData.as Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,25 @@
+package nl.inlet42.data.subtitles {
+
+ public class SubTitleData {
+ public var text : String;
+ public var start : Number;
+ public var duration : Number;
+ public var end : Number;
+ public var startStr : String;
+ public var endStr : String;
+
+ public function SubTitleData(inText : String = "",inStart : Number = 0,inDuration : Number = 0,inEnd : Number = 0,inStartStr : String = "",inEndStr : String = "") {
+ text = inText;
+ start = inStart;
+ duration = inDuration;
+ end = inEnd;
+ startStr = inStartStr;
+ endStr = inEndStr;
+ }
+
+ public function toString() : void {
+ //trace("nl.inlet42.data.subtitles.SubTitleData " + );
+ trace("SubTitleData " + start + ", " + duration + ", " + end + ", " + text);
+ }
+ }
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/nl/inlet42/data/subtitles/SubtitleParser.as Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,83 @@
+package nl.inlet42.data.subtitles {
+
+ /**
+ * @author Jankees.van.Woezik
+ */
+ public class SubtitleParser {
+ public static function parseSRT(data : String) : Array {
+ var result : Array = new Array();
+
+ var lines : Array;
+ var translation : SubTitleData;
+
+ var blocks : Array = data.split(/^[0-9]+$/gm);
+ for each (var block : String in blocks) {
+ translation = new SubTitleData();
+ lines = block.split(/[\r\n]+/);
+ for each (var line : String in lines) {
+ //all lines in a translation block
+ if(trim(line) != "") {
+ if(line.match("-->")) {
+ //timecodes line
+ var timecodes : Array = line.split(/[ ]+-->[ ]+/gm);
+ if(timecodes.length != 2) {
+ trace("Translation error, something wrong with the start or end time");
+ } else {
+ translation.start = stringToSeconds(timecodes[0]);
+ translation.end = stringToSeconds(timecodes[1]);
+ translation.startStr = timecodes[0].replace(",",".");
+ translation.endStr = timecodes[1].replace(",",".");
+ translation.duration = translation.end - translation.start;
+ if(translation.duration < 0) {
+ trace("Translation error, something wrong with the start or end time");
+ }
+ }
+ } else {
+ //translation line
+ if(translation.text.length != 0) line = "\n" + trim(line);
+ translation.text += line;
+ }
+ }
+ }
+ result.push(translation);
+ }
+ return result;
+ }
+
+ public static function trim(p_string : String) : String {
+ if (p_string == null) {
+ return '';
+ }
+ return p_string.replace(/^\s+|\s+$/g, '');
+ }
+
+ /**
+ * Convert a string to seconds, with these formats supported:
+ * 00:03:00.1 / 03:00.1 / 180.1s / 3.2m / 3.2h / 00:01:53,800
+ *
+ * Special thanks to Thijs Broerse of Media Monks!
+ *
+ **/
+ public static function stringToSeconds(string : String) : Number {
+ var arr : Array = string.split(':');
+ var sec : Number = 0;
+ if (string.substr(-1) == 's') {
+ sec = Number(string.substr(0, string.length - 1));
+ }else if (string.substr(-1) == 'm') {
+ sec = Number(string.substr(0, string.length - 1)) * 60;
+ }else if(string.substr(-1) == 'h') {
+ sec = Number(string.substr(0, string.length - 1)) * 3600;
+ }else if(arr.length > 1) {
+ if(arr[2] && String(arr[2]).indexOf(',') != -1) arr[2] = String(arr[2]).replace(/\,/, ".");
+ sec = Number(arr[arr.length - 1]);
+ sec += Number(arr[arr.length - 2]) * 60;
+ if(arr.length == 3) {
+ sec += Number(arr[arr.length - 3]) * 3600;
+ }
+ } else {
+ sec = Number(string);
+ }
+ return sec;
+ }
+ }
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/player_bab_ldt.as Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,1 @@
+package {
import flash.display.MovieClip;
import flash.display.StageScaleMode;
import bab.XMLInOut;
import bab.player.FlvPlayer;
import bab.player.events.EditEvent;
import flash.text.TextField;
import flash.display.StageAlign;
import flash.external.*;
import flash.system.Security;
import flash.events.Event;
import fl.video.VideoEvent;
import fl.video.VideoState;
public class player_bab_ldt extends MovieClip {
private var flashVars:Object;
private var xio:XMLInOut;
private var flvP1:FlvPlayer;
private var ar:Array;
private var t:TextField;
public function player_bab_ldt() {
// constructor code
Security.allowDomain("*");
Security.allowInsecureDomain("*");
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
// Fuck CS5 "new feature from built-in preloader" : loaderInfo.parameters is from parent.parent.loaderInfo.parameter
flashVars = new Object();
if(parent!=null){
if (parent.parent!=null) flashVars = parent.parent.loaderInfo.parameters;
else flashVars = parent.loaderInfo.parameters;
}
else flashVars = loaderInfo.parameters;
for(var param:Object in flashVars){
trace(" flashVars " + param + " : " + flashVars[param.toString()]);
}
var urlData:String = "test/yeelen_bab.ldt";
if(flashVars["urlData"]!="" && flashVars["urlData"]!=null){
urlData = flashVars["urlData"];
}
trace("init w = " + this.width + ", s.w = " + stage.stageWidth + ", h = " + this.height + ", s.h = " + stage.stageHeight);
xio = new XMLInOut(this, urlData);
}
public function youCanStart():void{
trace("youCanStart");
ar = xio.getEditList1();
trace("youCanStart 2 = " + ar.length);
var urlSkin:String = "test/SkinBoutABout.swf";
if(flashVars["urlSkin"]!="" && flashVars["urlSkin"]!=null){
urlSkin = flashVars["urlSkin"];
}
flvP1 = new FlvPlayer(stage.stageWidth, stage.stageHeight, urlSkin, t = new TextField());
flvP1.addEventListener(EditEvent.EDIT_CHANGEINSTRUCTION, youCanStartBab);
flvP1.addEventListener(EditEvent.EDIT_UPDATETC, onBabVideoProgress);
flvP1.addEventListener(VideoEvent.STATE_CHANGE, onBabStateChange);
addChild(flvP1);
t.text = "init s.w = " + stage.stageWidth + ", s.h = " + stage.stageHeight + ", ei.a = " + ExternalInterface.available;
t.textColor = 0xFFFFFF;
t.width = stage.stageWidth;
addChild(t);
// External interface management
try{
ExternalInterface.addCallback("playVideo", flvP1.playVideo);
ExternalInterface.addCallback("pauseVideo", flvP1.pauseVideo);
ExternalInterface.addCallback("getCurrentTime", flvP1.getCurrentTime);
ExternalInterface.addCallback("seekTo", flvP1.seekTo);
ExternalInterface.addCallback("isMuted", flvP1.isMuted);
ExternalInterface.addCallback("mute", flvP1.mute);
ExternalInterface.addCallback("unMute", flvP1.unMute);
ExternalInterface.addCallback("getVolume", flvP1.getVolume);
ExternalInterface.addCallback("setVolume", flvP1.setVolume);
}
catch(e:*){
t.text = "ExternalInterface error catch e = " + e;
t.textColor = 0xFFFFFF;
}
ExternalInterface.call("onBabPlayerReady","cool");
}
public function youCanStartBab(e:*):void{
flvP1.removeEventListener(EditEvent.EDIT_CHANGEINSTRUCTION, youCanStartBab);
flvP1.getEditList(ar[0], ar[1]);
}
private function onBabVideoProgress(e:EditEvent):void{
// e.tc arrives in milliseconds
ExternalInterface.call("onBabVideoProgress",{mediaTime:(Math.floor(e.tc)/1000)});
}
private function onBabStateChange(e:VideoEvent):void{
var s:Number;
// Embeddable adaptation : we limit the number of states
// States can be : loading, stopped, seeking (3), paused (2), buffering, playing (1).
switch(e.state){
case VideoState.SEEKING:
s = 3;
break;
case VideoState.PAUSED:
s = 2;
break;
case VideoState.PLAYING:
s = 1;
break;
}
if(!isNaN(s)){
ExternalInterface.call("onBabStateChange",s);
}
}
}
}
\ No newline at end of file
Binary file assets/player_bab_ldt/player_bab_ldt.swf has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/player_bab_ldt/DOMDocument.xml Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,1239 @@
+<DOMDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" currentTimeline="1" xflVersion="2.0" creatorInfo="Adobe Flash Professional CS5" platform="Macintosh" versionInfo="Saved by Adobe Flash Macintosh 11.0 build 489" majorVersion="11" buildNumber="489" nextSceneIdentifier="2" playOptionsPlayLoop="false" playOptionsPlayPages="false" playOptionsPlayFrameActions="false" hasAccessibleData="true">
+ <folders>
+ <DOMFolderItem name="Component Assets" itemID="44e488a0-000016d6"/>
+ <DOMFolderItem name="Component Assets/_private" itemID="4573a4bc-000003c6"/>
+ <DOMFolderItem name="Component Assets/ProgressBarSkins" itemID="44c91c22-00000249"/>
+ </folders>
+ <media>
+ <DOMCompiledClipItem name="Component Assets/_private/ComponentShim" itemID="4b858ac3-000002a3" linkageExportForAS="true" linkageClassName="fl.core.ComponentShim" sourceLastImported="1267043011" displayAsComponent="false" customIconID="0" actionscriptClass="fl.core.ComponentShim" swfScmHRef="a4evqyd4nn.swf" swfScmSourceFilename="C:\Documents and Settings\jkamerer\Local Settings\Application Data\Adobe\Flash CS5\en_US\Configuration\TMPa3zn4yd4n3..swf" persistLivePreview11="true" livePreview11ScmHRef="a4evqyd4nn1.swf" livePreview11ScmSourceFilename="C:\Documents and Settings\jkamerer\Local Settings\Application Data\Adobe\Flash CS5\en_US\Configuration\TMPa3zn4yd4n3..swf" editFrameIndex="1" requiredMinimumPlayerVersion="0" requiredMinimumASVersion="0" parametersAreLocked="true" swcPath="Component Assets/_private/ComponentShim.xml" rootSymbolLinkageID="fl.core.ComponentShim" playerVersion="9" actionscriptVersion="3" hashKey="kfuaIecnz3BPM/B8Awo4b.">
+ <classProperties><![CDATA[<component id="fl/core/ComponentShim" class="fl.core.ComponentShim" modified="1267043003888">
+<movieBounds xmin="0" xmax="0" ymin="0" ymax="0" />
+<classDefs>
+ <classDef id="fl.core.AccessibilityShim"/>
+ <classDef id="fl.controls.CheckBox"/>
+ <classDef id="fl.controls.LabelButton"/>
+ <classDef id="fl.controls.List"/>
+ <classDef id="fl.controls.ComboBox"/>
+ <classDef id="fl.controls.ProgressBarDirection"/>
+ <classDef id="fl.data.SimpleCollectionItem"/>
+ <classDef id="fl.controls.TextArea"/>
+ <classDef id="fl.controls.Slider"/>
+ <classDef id="fl.events.DataChangeEvent"/>
+ <classDef id="fl.accessibility.ComboBoxAccImpl"/>
+ <classDef id="fl.events.DataChangeType"/>
+ <classDef id="fl.accessibility.TileListAccImpl"/>
+ <classDef id="fl.accessibility.ButtonAccImpl"/>
+ <classDef id="fl.controls.BaseButton"/>
+ <classDef id="fl.core.UIComponent"/>
+ <classDef id="fl.controls.DataGrid"/>
+ <classDef id="fl.containers.BaseScrollPane"/>
+ <classDef id="fl.livepreview.LivePreviewParent"/>
+ <classDef id="fl.controls.Label"/>
+ <classDef id="fl.managers.IFocusManagerComponent"/>
+ <classDef id="fl.controls.UIScrollBar"/>
+ <classDef id="fl.controls.listClasses.ICellRenderer"/>
+ <classDef id="fl.controls.dataGridClasses.DataGridCellEditor"/>
+ <classDef id="fl.controls.ColorPicker"/>
+ <classDef id="fl.managers.FocusManager"/>
+ <classDef id="fl.events.DataGridEventReason"/>
+ <classDef id="fl.events.SliderEvent"/>
+ <classDef id="fl.events.SliderEventClickTarget"/>
+ <classDef id="fl.controls.progressBarClasses.IndeterminateBar"/>
+ <classDef id="fl.controls.listClasses.ListData"/>
+ <classDef id="fl.core.InvalidationType"/>
+ <classDef id="fl.controls.RadioButtonGroup"/>
+ <classDef id="fl.controls.NumericStepper"/>
+ <classDef id="fl.accessibility.LabelButtonAccImpl"/>
+ <classDef id="fl.containers.UILoader"/>
+ <classDef id="fl.events.ColorPickerEvent"/>
+ <classDef id="fl.controls.ButtonLabelPlacement"/>
+ <classDef id="fl.accessibility.CheckBoxAccImpl"/>
+ <classDef id="fl.managers.StyleManager"/>
+ <classDef id="fl.controls.TileList"/>
+ <classDef id="fl.controls.RadioButton"/>
+ <classDef id="fl.containers.ScrollPane"/>
+ <classDef id="fl.controls.listClasses.TileListData"/>
+ <classDef id="fl.events.InteractionInputType"/>
+ <classDef id="fl.controls.Button"/>
+ <classDef id="fl.core.ComponentShim"/>
+ <classDef id="fl.accessibility.UIComponentAccImpl"/>
+ <classDef id="fl.controls.SelectableList"/>
+ <classDef id="fl.events.ComponentEvent"/>
+ <classDef id="fl.accessibility.RadioButtonAccImpl"/>
+ <classDef id="fl.controls.listClasses.CellRenderer"/>
+ <classDef id="fl.managers.IFocusManagerGroup"/>
+ <classDef id="fl.controls.ScrollPolicy"/>
+ <classDef id="fl.controls.ScrollBar"/>
+ <classDef id="fl.controls.ProgressBar"/>
+ <classDef id="fl.controls.listClasses.ImageCell"/>
+ <classDef id="fl.managers.IFocusManager"/>
+ <classDef id="fl.controls.ProgressBarMode"/>
+ <classDef id="fl.accessibility.SelectableListAccImpl"/>
+ <classDef id="fl.controls.TextInput"/>
+ <classDef id="fl.events.ListEvent"/>
+ <classDef id="fl.accessibility.AccImpl"/>
+ <classDef id="fl.accessibility.DataGridAccImpl"/>
+ <classDef id="fl.controls.dataGridClasses.DataGridColumn"/>
+ <classDef id="fl.events.ScrollEvent"/>
+ <classDef id="fl.events.DataGridEvent"/>
+ <classDef id="fl.data.TileListCollectionItem"/>
+ <classDef id="fl.data.DataProvider"/>
+ <classDef id="fl.accessibility.ListAccImpl"/>
+ <classDef id="fl.controls.dataGridClasses.HeaderRenderer"/>
+ <classDef id="fl.controls.ScrollBarDirection"/>
+ <classDef id="fl.controls.SliderDirection"/>
+</classDefs>
+<class id="fl.core.ComponentShim" >
+ <method id="ComponentShim" isConstructor="true" isProperty="false">
+ </method>
+</class></component>
+]]></classProperties>
+ <customIcon>
+ <CustomIcon rowByteCount="72" colorDepth="32" width="18" height="18" frameRight="360" frameBottom="360" isTransparent="true" href="a4ew6yd4nn.dat"/>
+ </customIcon>
+ <SwcItem name="fl.core.ComponentShim" version="1267043003" isTopLevel="true"/>
+ </DOMCompiledClipItem>
+ <DOMCompiledClipItem name="FLVPlayback 2.5" itemID="4faa3474-0000004b" linkageExportForAS="true" linkageClassName="fl.video.FLVPlayback" sourceLastImported="1268346527" sourcePlatform="macintosh" tooltip="FLVPlayback component 2.5" customIconID="0" actionscriptClass="fl.video.FLVPlayback" livePreviewScmHRef="50KJV3R4CP.swf" livePreviewScmSourceFilename="/Users/tc/Library/Application Support/Adobe/Flash CS5/fr_FR/Configuration/TMP50KJV3R4CP..swf" persistLivePreview11="true" livePreview11ScmHRef="50KJW3R4CP.swf" livePreview11ScmSourceFilename="/Users/tc/Library/Application Support/Adobe/Flash CS5/fr_FR/Configuration/TMP50KJT3R4CP..swf" editFrameIndex="1" requiredMinimumPlayerVersion="0" requiredMinimumASVersion="0" parametersAreLocked="true" swcPath="FLVPlayback 2.5.xml" rootSymbolLinkageID="fl.video.FLVPlayback" movieRectRight="6401" movieRectBottom="4800" playerVersion="10" actionscriptVersion="3" hashKey="LWJ4qfDKC.LqmxYv0myxv1">
+ <parametersAsXML><![CDATA[ <property id="align">
+ <Inspectable name="align" variable="align" category="" verbose="0" defaultValue="center" enumeration="center,top,left,bottom,right,topLeft,topRight,bottomLeft,bottomRight" type="List"/>
+ </property>
+ <property id="autoPlay">
+ <Inspectable name="autoPlay" variable="autoPlay" category="" verbose="0" defaultValue="true" type="Boolean"/>
+ </property>
+ <property id="cuePoints">
+ <Inspectable name="cuePoints" variable="cuePoints" category="" verbose="0" defaultValue="" type="Video Cue Points"/>
+ </property>
+ <property id="dvrFixedDuration">
+ <Inspectable name="dvrFixedDuration" variable="dvrFixedDuration" category="" verbose="0" defaultValue="false" type="Boolean"/>
+ </property>
+ <property id="dvrIncrement">
+ <Inspectable name="dvrIncrement" variable="dvrIncrement" category="" verbose="0" defaultValue="1800" type="Number"/>
+ </property>
+ <property id="dvrIncrementVariance">
+ <Inspectable name="dvrIncrementVariance" variable="dvrIncrementVariance" category="" verbose="0" defaultValue="300" type="Number"/>
+ </property>
+ <property id="dvrSnapToLive">
+ <Inspectable name="dvrSnapToLive" variable="dvrSnapToLive" category="" verbose="0" defaultValue="true" type="Boolean"/>
+ </property>
+ <property id="isDVR">
+ <Inspectable name="isDVR" variable="isDVR" category="" verbose="0" defaultValue="false" type="Boolean"/>
+ </property>
+ <property id="isLive">
+ <Inspectable name="isLive" variable="isLive" category="" verbose="0" defaultValue="false" type="Boolean"/>
+ </property>
+ <property id="preview">
+ <Inspectable name="preview" variable="preview" category="" verbose="0" defaultValue="" type="Video Preview"/>
+ </property>
+ <property id="scaleMode">
+ <Inspectable name="scaleMode" variable="scaleMode" category="" verbose="0" defaultValue="maintainAspectRatio" enumeration="maintainAspectRatio,noScale,exactFit" type="List"/>
+ </property>
+ <property id="skin">
+ <Inspectable name="skin" variable="skin" category="" verbose="0" defaultValue="" type="Video Skin"/>
+ </property>
+ <property id="skinAutoHide">
+ <Inspectable name="skinAutoHide" variable="skinAutoHide" category="" verbose="0" defaultValue="false" type="Boolean"/>
+ </property>
+ <property id="skinBackgroundAlpha">
+ <Inspectable name="skinBackgroundAlpha" variable="skinBackgroundAlpha" category="" verbose="0" defaultValue="0.85" type="Number"/>
+ </property>
+ <property id="skinBackgroundColor">
+ <Inspectable name="skinBackgroundColor" variable="skinBackgroundColor" category="" verbose="0" defaultValue="#47ABCB" type="Color"/>
+ </property>
+ <property id="source">
+ <Inspectable name="source" variable="source" category="" verbose="0" defaultValue="" type="Video Content Path"/>
+ </property>
+ <property id="volume">
+ <Inspectable name="volume" variable="volume" category="" verbose="0" defaultValue="1" type="Number"/>
+ </property>
+]]></parametersAsXML>
+ <classProperties><![CDATA[<component id="fl/video/FLVPlayback" class="fl.video.FLVPlayback" livePreviewClass="FLVPlaybackStageLivePreview" modified="1268346527643">
+<movieBounds xmin="0" xmax="6400" ymin="0" ymax="4800" />
+<classDefs>
+ <classDef id="fl.video.CuePointType"/>
+ <classDef id="fl.video.ParseResults"/>
+ <classDef id="fl.video.VideoPlayerState"/>
+ <classDef id="fl.video.NCManagerDynamicStream"/>
+ <classDef id="fl.video.NCManagerNativeShim"/>
+ <classDef id="fl.video.FMSCapabilities"/>
+ <classDef id="fl.video.ConnectClientDynamicStream"/>
+ <classDef id="fl.video.VideoError"/>
+ <classDef id="fl.video.VideoEvent"/>
+ <classDef id="fl.video.AutoLayoutEvent"/>
+ <classDef id="fl.video.SkinErrorEvent"/>
+ <classDef id="fl.video.VolumeBarAccImpl"/>
+ <classDef id="fl.video.FPADManager"/>
+ <classDef id="fl.video.SeekBarAccImpl"/>
+ <classDef id="fl.video.ReconnectClient"/>
+ <classDef id="fl.video.VideoScaleMode"/>
+ <classDef id="fl.video.ConnectClient"/>
+ <classDef id="fl.livepreview.LivePreviewParent"/>
+ <classDef id="fl.video.NCManagerNative"/>
+ <classDef id="fl.video.DynamicStreamItem"/>
+ <classDef id="fl.video.VideoPlayerClient"/>
+ <classDef id="fl.video.LayoutEvent"/>
+ <classDef id="fl.video.Icon"/>
+ <classDef id="fl.video.DynamicStream"/>
+ <classDef id="fl.video.ControlData"/>
+ <classDef id="fl.video.FPMediaCapabilities"/>
+ <classDef id="fl.video.VideoState"/>
+ <classDef id="fl.video.QueuedCommand"/>
+ <classDef id="fl.video.VideoProgressEvent"/>
+ <classDef id="fl.video.VideoAlign"/>
+ <classDef id="fl.video.CuePointManager"/>
+ <classDef id="fl.video.IVPEvent"/>
+ <classDef id="fl.video.VideoPlayer"/>
+ <classDef id="fl.video.UIManager"/>
+ <classDef id="fl.video.ConnectClientNative"/>
+ <classDef id="fl.video.INCManager"/>
+ <classDef id="fl.video.SoundEvent"/>
+ <classDef id="fl.video.FLVPlayback"/>
+ <classDef id="fl.video.MetadataEvent"/>
+ <classDef id="fl.video.SMILManager"/>
+ <classDef id="fl.video.NCManager"/>
+ <classDef id="fl.video.DVRManager"/>
+</classDefs>
+<class id="fl.video.FLVPlayback" >
+ <LivePreviewVersion param1="1" />
+ <RequiresDataBinding param1="true" />
+ <minimumPlayerVersion param1="10" />
+ <IconFile param1="FLVPlayback.png" />
+ <Event param1="soundUpdate" type="fl.video.SoundEvent" />
+ <Event param1="stoppedStateEntered" type="fl.video.VideoEvent" />
+ <Event param1="unsupportedPlayerVersion" type="fl.video.VideoEvent" />
+ <Event param1="stateChange" type="fl.video.VideoEvent" />
+ <Event param1="skinLoaded" type="fl.video.VideoEvent" />
+ <Event param1="skinError" type="fl.video.SkinErrorEvent" />
+ <Event param1="seeked" type="fl.video.VideoEvent" />
+ <Event param1="scrubStart" type="fl.video.VideoEvent" />
+ <Event param1="scrubFinish" type="fl.video.VideoEvent" />
+ <Event param1="rewind" type="fl.video.VideoEvent" />
+ <Event param1="layout" type="fl.video.LayoutEvent" />
+ <Event param1="ready" type="fl.video.VideoEvent" />
+ <Event param1="progress" type="fl.video.VideoProgressEvent" />
+ <Event param1="playheadUpdate" type="fl.video.VideoEvent" />
+ <Event param1="playingStateEntered" type="fl.video.VideoEvent" />
+ <Event param1="pausedStateEntered" type="fl.video.VideoEvent" />
+ <Event param1="metadataReceived" type="fl.video.MetadataEvent" />
+ <Event param1="fastForward" type="fl.video.VideoEvent" />
+ <Event param1="cuePoint" type="fl.video.MetadataEvent" />
+ <Event param1="complete" type="fl.video.VideoEvent" />
+ <Event param1="close" type="fl.video.VideoEvent" />
+ <Event param1="bufferingStateEntered" type="fl.video.VideoEvent" />
+ <Event param1="autoRewound" type="fl.video.VideoEvent" />
+ <Event param1="autoLayout" type="fl.video.AutoLayoutEvent" />
+ <__go_to_ctor_definition_help file="C:\devsrc\flashfarm\media_frameworks\branches\FLVPlayback_AS3_DVR\FLVPlayback\..\fl\video\FLVPlayback.as" pos="31557" />
+ <method id="playheadPercentage" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="activeVideoPlayerIndex" returnType="uint" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="align" returnType="String" isProperty="true" permissions="readwrite">
+ <Inspectable type="List" enumeration="center,top,left,bottom,right,topLeft,topRight,bottomLeft,bottomRight" defaultValue="center" />
+ </method>
+ <method id="autoPlay" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="true" />
+ </method>
+ <method id="autoRewind" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="bitrate" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="buffering" returnType="Boolean" isProperty="true" permissions="readonly">
+ </method>
+ <method id="bufferingBar" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="bufferingBarHidesAndDisablesOthers" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="backButton" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="bufferTime" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="bytesLoaded" returnType="uint" isProperty="true" permissions="readonly">
+ </method>
+ <method id="bytesTotal" returnType="uint" isProperty="true" permissions="readonly">
+ </method>
+ <method id="source" returnType="String" isProperty="true" permissions="readwrite">
+ <Inspectable type="Video Content Path" />
+ </method>
+ <method id="dvrIncrement" returnType="Number" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="1800" />
+ </method>
+ <method id="dvrIncrementVariance" returnType="Number" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="300" />
+ </method>
+ <method id="dvrFixedDuration" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="false" />
+ </method>
+ <method id="dvrSnapToLive" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="true" />
+ </method>
+ <method id="enableLiveCast" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="forwardButton" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="fullScreenBackgroundColor" returnType="uint" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="fullScreenButton" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="fullScreenSkinDelay" returnType="int" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="fullScreenTakeOver" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="height" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="idleTimeout" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="isDVR" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="false" />
+ </method>
+ <method id="isRTMP" returnType="Boolean" isProperty="true" permissions="readonly">
+ </method>
+ <method id="isLive" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="false" />
+ </method>
+ <method id="metadata" returnType="Object" isProperty="true" permissions="readonly">
+ </method>
+ <method id="metadataLoaded" returnType="Boolean" isProperty="true" permissions="readonly">
+ </method>
+ <method id="muteButton" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="ncMgr" returnType="INCManager" isProperty="true" permissions="readonly">
+ </method>
+ <method id="pauseButton" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="paused" returnType="Boolean" isProperty="true" permissions="readonly">
+ </method>
+ <method id="playButton" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="playheadTime" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="playheadUpdateInterval" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="playing" returnType="Boolean" isProperty="true" permissions="readonly">
+ </method>
+ <method id="playPauseButton" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="preferredHeight" returnType="int" isProperty="true" permissions="readonly">
+ </method>
+ <method id="preferredWidth" returnType="int" isProperty="true" permissions="readonly">
+ </method>
+ <method id="progressInterval" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="registrationX" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="registrationY" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="registrationWidth" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="registrationHeight" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="scaleMode" returnType="String" isProperty="true" permissions="readwrite">
+ <Inspectable type="List" enumeration="maintainAspectRatio,noScale,exactFit" defaultValue="maintainAspectRatio" />
+ </method>
+ <method id="scaleX" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="scaleY" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="scrubbing" returnType="Boolean" isProperty="true" permissions="readonly">
+ </method>
+ <method id="seekBar" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="seekBarInterval" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="seekBarScrubTolerance" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="seekToPrevOffset" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="skin" returnType="String" isProperty="true" permissions="readwrite">
+ <Inspectable type="Video Skin" />
+ </method>
+ <method id="skinAutoHide" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="false" />
+ </method>
+ <method id="skinBackgroundAlpha" returnType="Number" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="0.85" />
+ </method>
+ <method id="skinBackgroundColor" returnType="uint" isProperty="true" permissions="readwrite">
+ <Inspectable type="Color" defaultValue="#47ABCB" />
+ </method>
+ <method id="skinFadeTime" returnType="int" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="skinScaleMaximum" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="soundTransform" returnType="SoundTransform" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="state" returnType="String" isProperty="true" permissions="readonly">
+ </method>
+ <method id="stateResponsive" returnType="Boolean" isProperty="true" permissions="readonly">
+ </method>
+ <method id="stopButton" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="stopped" returnType="Boolean" isProperty="true" permissions="readonly">
+ </method>
+ <method id="totalTime" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="visibleVideoPlayerIndex" returnType="uint" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="volume" returnType="Number" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="1" />
+ </method>
+ <method id="volumeBar" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="volumeBarInterval" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="volumeBarScrubTolerance" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="width" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="x" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="y" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="endTabIndex" returnType="int" isProperty="true" permissions="readonly">
+ </method>
+ <method id="startTabIndex" returnType="int" isProperty="true" permissions="readonly">
+ </method>
+ <method id="preview" returnType="String" isProperty="true" permissions="writeonly">
+ <Inspectable type="Video Preview" />
+ </method>
+ <method id="componentInspectorSetting" returnType="Boolean" isProperty="true" permissions="writeonly">
+ </method>
+ <method id="cuePoints" returnType="Array" isProperty="true" permissions="writeonly">
+ <Inspectable type="Video Cue Points" />
+ </method>
+ <method id="boundingBox_mc" returnType="DisplayObject" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="setSize" returnType="void" isProperty="false">
+ </method>
+ <method id="setScale" returnType="void" isProperty="false">
+ </method>
+ <method id="load" returnType="void" isProperty="false">
+ </method>
+ <method id="play" returnType="void" isProperty="false">
+ </method>
+ <method id="play2" returnType="void" isProperty="false">
+ </method>
+ <method id="playWhenEnoughDownloaded" returnType="void" isProperty="false">
+ </method>
+ <method id="pause" returnType="void" isProperty="false">
+ </method>
+ <method id="stop" returnType="void" isProperty="false">
+ </method>
+ <method id="seek" returnType="void" isProperty="false">
+ </method>
+ <method id="seekSeconds" returnType="void" isProperty="false">
+ </method>
+ <method id="seekPercent" returnType="void" isProperty="false">
+ </method>
+ <method id="seekToNavCuePoint" returnType="void" isProperty="false">
+ </method>
+ <method id="seekToNextNavCuePoint" returnType="void" isProperty="false">
+ </method>
+ <method id="seekToPrevNavCuePoint" returnType="void" isProperty="false">
+ </method>
+ <method id="addASCuePoint" returnType="Object" isProperty="false">
+ </method>
+ <method id="removeASCuePoint" returnType="Object" isProperty="false">
+ </method>
+ <method id="findCuePoint" returnType="Object" isProperty="false">
+ </method>
+ <method id="findNearestCuePoint" returnType="Object" isProperty="false">
+ </method>
+ <method id="findNextCuePointWithName" returnType="Object" isProperty="false">
+ </method>
+ <method id="setFLVCuePointEnabled" returnType="Number" isProperty="false">
+ </method>
+ <method id="isFLVCuePointEnabled" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="bringVideoPlayerToFront" returnType="void" isProperty="false">
+ </method>
+ <method id="getVideoPlayer" returnType="VideoPlayer" isProperty="false">
+ </method>
+ <method id="closeVideoPlayer" returnType="void" isProperty="false">
+ </method>
+ <method id="enterFullScreenDisplayState" returnType="void" isProperty="false">
+ </method>
+ <method id="assignTabIndexes" returnType="int" isProperty="false">
+ </method>
+ <method id="FLVPlayback" isConstructor="true" isProperty="false">
+ </method>
+</class><livePreview class="FLVPlaybackStageLivePreview">
+<movieBounds xmin="0" xmax="6401" ymin="0" ymax="4800" />
+<classDefs>
+ <classDef id="fl.livepreview.IEditContextV1"/>
+ <classDef id="fl.livepreview.IPreviewInterface"/>
+ <classDef id="fl.video.CuePointType"/>
+ <classDef id="fl.video.VideoPlayerState"/>
+ <classDef id="fl.video.DynamicStreamItem"/>
+ <classDef id="fl.video.ControlData"/>
+ <classDef id="fl.video.CuePointManager"/>
+ <classDef id="fl.video.UIManager"/>
+ <classDef id="fl.video.INCManager"/>
+ <classDef id="fl.video.VideoScaleMode"/>
+ <classDef id="fl.livepreview.EditContextFlags"/>
+ <classDef id="fl.video.VideoState"/>
+ <classDef id="fl.video.QueuedCommand"/>
+ <classDef id="fl.video.IVPEvent"/>
+ <classDef id="fl.video.ParseResults"/>
+ <classDef id="fl.video.FPMediaCapabilities"/>
+ <classDef id="fl.video.SMILManager"/>
+ <classDef id="fl.video.FPADManager"/>
+ <classDef id="fl.video.FMSCapabilities"/>
+ <classDef id="fl.video.VideoAlign"/>
+ <classDef id="fl.video.ConnectClient"/>
+ <classDef id="fl.video.ReconnectClient"/>
+ <classDef id="fl.video.VideoPlayerClient"/>
+ <classDef id="fl.video.LayoutEvent"/>
+ <classDef id="fl.video.SoundEvent"/>
+ <classDef id="fl.video.VolumeBarAccImpl"/>
+ <classDef id="fl.video.SeekBarAccImpl"/>
+ <classDef id="fl.livepreview.IVideoInterfaceV1"/>
+ <classDef id="fl.video.VideoError"/>
+ <classDef id="UIManagerStage"/>
+ <classDef id="fl.video.NCManager"/>
+ <classDef id="fl.video.VideoEvent"/>
+ <classDef id="fl.video.MetadataEvent"/>
+ <classDef id="fl.video.ConnectClientDynamicStream"/>
+ <classDef id="fl.video.ConnectClientNative"/>
+ <classDef id="fl.video.DVRManager"/>
+ <classDef id="fl.video.VideoProgressEvent"/>
+ <classDef id="fl.video.AutoLayoutEvent"/>
+ <classDef id="fl.video.NCManagerDynamicStream"/>
+ <classDef id="fl.video.NCManagerNative"/>
+ <classDef id="fl.video.DynamicStream"/>
+ <classDef id="fl.video.SkinErrorEvent"/>
+ <classDef id="fl.video.VideoPlayer"/>
+ <classDef id="FLVPlaybackStageLivePreview"/>
+ <classDef id="fl.stage.video.StopButtonDown"/>
+ <classDef id="fl.stage.video.StopButtonNormal"/>
+ <classDef id="fl.stage.video.StopButtonOver"/>
+ <classDef id="fl.video.FLVPlayback"/>
+ <classDef id="fl.stage.video.ComponentVersionView"/>
+ <classDef id="fl.stage.video.BackgroundBox"/>
+ <classDef id="FLVPlaybackStage"/>
+ <classDef id="fl.livepreview.LivePreviewParent"/>
+ <classDef id="fl.video.Icon"/>
+</classDefs>
+<class id="FLVPlaybackStageLivePreview" >
+ <method id="width" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="height" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="source" returnType="String" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="isLive" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="volume" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="align" returnType="String" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="skinAutoHide" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="scaleMode" returnType="String" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="autoPlay" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="skin" returnType="String" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="skinBackgroundAlpha" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="skinBackgroundColor" returnType="uint" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="DocumentRoot" returnType="String" isProperty="true" permissions="writeonly">
+ </method>
+ <method id="FullPathSourceFromRelativePath" returnType="String" isProperty="true" permissions="writeonly">
+ </method>
+ <method id="avatar_mc" returnType="DisplayObject" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="caPreviewClass" returnType="ComponentVersionView" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="createButtonsOverlay" returnType="void" isProperty="false">
+ </method>
+ <method id="destroyButtonsOverlay" returnType="void" isProperty="false">
+ </method>
+ <method id="SetFLVplaybackPlayheadUpdateTimer" returnType="void" isProperty="false">
+ </method>
+ <method id="initFLVplaybackPlayheadUpdateTimer" returnType="void" isProperty="false">
+ </method>
+ <method id="stopFLVplaybackPlayheadUpdateTimer" returnType="void" isProperty="false">
+ </method>
+ <method id="onFLVplaybackPlayheadUpdateTimer" returnType="void" isProperty="false">
+ </method>
+ <method id="startFLVplaybackRemotePreloadBufferingTimer" returnType="void" isProperty="false">
+ </method>
+ <method id="stopFLVplaybackRemotePreloadBufferingTimer" returnType="void" isProperty="false">
+ </method>
+ <method id="onFLVplaybackRemotePreloadBufferingTimer" returnType="void" isProperty="false">
+ </method>
+ <method id="FileExist" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="setSize" returnType="void" isProperty="false">
+ </method>
+ <method id="draw" returnType="void" isProperty="false">
+ </method>
+ <method id="setIPreviewInterface" returnType="void" isProperty="false">
+ </method>
+ <method id="designTimeEdit" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="load" returnType="void" isProperty="false">
+ </method>
+ <method id="play" returnType="void" isProperty="false">
+ </method>
+ <method id="pause" returnType="void" isProperty="false">
+ </method>
+ <method id="stop" returnType="void" isProperty="false">
+ </method>
+ <method id="seek" returnType="void" isProperty="false">
+ </method>
+ <method id="seekVideo" returnType="void" isProperty="false">
+ </method>
+ <method id="seekSeconds" returnType="void" isProperty="false">
+ </method>
+ <method id="startSeek" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="stopSeek" returnType="void" isProperty="false">
+ </method>
+ <method id="setDocumentRoot" returnType="void" isProperty="false">
+ </method>
+ <method id="ResetSource" returnType="void" isProperty="false">
+ </method>
+ <method id="DisableSetSource" returnType="void" isProperty="false">
+ </method>
+ <method id="EnableSetSource" returnType="void" isProperty="false">
+ </method>
+ <method id="loadPreview" returnType="void" isProperty="false">
+ </method>
+ <method id="unloadPreview" returnType="void" isProperty="false">
+ </method>
+ <method id="close" returnType="void" isProperty="false">
+ </method>
+ <method id="Mute" returnType="void" isProperty="false">
+ </method>
+ <method id="grabBitmap" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="FLVPlaybackStageLivePreview" isConstructor="true" isProperty="false">
+ </method>
+</class></livePreview>
+</component>
+]]></classProperties>
+ <customIcon>
+ <CustomIcon rowByteCount="72" colorDepth="32" width="18" height="18" frameRight="360" frameBottom="360" isTransparent="true" href="50KJY3R4CP.dat"/>
+ </customIcon>
+ <SwcItem name="fl.video.FLVPlayback" version="1268346527" isTopLevel="true"/>
+ </DOMCompiledClipItem>
+ <DOMCompiledClipItem name="FLVPlaybackCaptioning" itemID="4faa3474-00000059" linkageExportForAS="true" linkageClassName="fl.video.FLVPlaybackCaptioning" sourceLastImported="1263907861" sourcePlatform="macintosh" customIconID="0" actionscriptClass="fl.video.FLVPlaybackCaptioning" livePreviewScmHRef="50O3J3R4CU.swf" livePreviewScmSourceFilename="/Users/tc/Library/Application Support/Adobe/Flash CS5/fr_FR/Configuration/TMP50O3I3R4CU..swf" persistLivePreview11="true" livePreview11ScmHRef="50O3J3R4CU2.swf" livePreview11ScmSourceFilename="/Users/tc/Library/Application Support/Adobe/Flash CS5/fr_FR/Configuration/TMP50O3H3R4CU..swf" editFrameIndex="1" requiredMinimumPlayerVersion="0" requiredMinimumASVersion="0" parametersAreLocked="true" swcPath="FLVPlaybackCaptioning.xml" rootSymbolLinkageID="fl.video.FLVPlaybackCaptioning" movieRectRight="1440" movieRectBottom="1680" playerVersion="9" actionscriptVersion="3" hashKey="u6WoxbQBPf5MDbMcy6Jt7.">
+ <parametersAsXML><![CDATA[ <property id="autoLayout">
+ <Inspectable name="autoLayout" variable="autoLayout" category="" verbose="0" defaultValue="true" type="Boolean"/>
+ </property>
+ <property id="captionTargetName">
+ <Inspectable name="captionTargetName" variable="captionTargetName" category="" verbose="0" defaultValue="auto" type="String"/>
+ </property>
+ <property id="flvPlaybackName">
+ <Inspectable name="flvPlaybackName" variable="flvPlaybackName" category="" verbose="0" defaultValue="auto" type="String"/>
+ </property>
+ <property id="showCaptions">
+ <Inspectable name="showCaptions" variable="showCaptions" category="" verbose="0" defaultValue="true" type="Boolean"/>
+ </property>
+ <property id="simpleFormatting">
+ <Inspectable name="simpleFormatting" variable="simpleFormatting" category="" verbose="0" defaultValue="false" type="Boolean"/>
+ </property>
+ <property id="source">
+ <Inspectable name="source" variable="source" category="" verbose="0" defaultValue="" type="String"/>
+ </property>
+]]></parametersAsXML>
+ <classProperties><![CDATA[<component id="fl/video/FLVPlaybackCaptioning" class="fl.video.FLVPlaybackCaptioning" modified="1263907861046">
+<movieBounds xmin="0" xmax="1440" ymin="0" ymax="1680" />
+<classDefs>
+ <classDef id="fl.livepreview.LivePreviewParent"/>
+ <classDef id="fl.video.TimedTextManager"/>
+ <classDef id="fl.video.CaptionChangeEvent"/>
+ <classDef id="fl.video.CaptionTargetEvent"/>
+ <classDef id="fl.video.FLVPlaybackCaptioning"/>
+</classDefs>
+<class id="fl.video.FLVPlaybackCaptioning" >
+ <RequiresDataBinding param1="true" />
+ <IconFile param1="FLVPlaybackCaptioning.png" />
+ <Event param1="securityError" type="flash.events.SecurityErrorEvent" />
+ <Event param1="progress" type="flash.events.ProgressEvent" />
+ <Event param1="open" type="flash.events.Event" />
+ <Event param1="ioError" type="flash.events.IOErrorEvent" />
+ <Event param1="httpStatus" type="flash.events.HTTPStatusEvent" />
+ <Event param1="complete" type="flash.events.Event" />
+ <Event param1="captionTargetCreated" type="fl.video.CaptionTargetEvent" />
+ <Event param1="captionChange" type="fl.video.CaptionChangeEvent" />
+ <method id="showCaptions" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="true" />
+ </method>
+ <method id="source" returnType="String" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="" />
+ </method>
+ <method id="autoLayout" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="true" />
+ </method>
+ <method id="captionTargetName" returnType="String" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="auto" />
+ </method>
+ <method id="captionTarget" returnType="DisplayObject" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="captionButton" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="flvPlaybackName" returnType="String" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="auto" />
+ </method>
+ <method id="flvPlayback" returnType="FLVPlayback" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="track" returnType="uint" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="videoPlayerIndex" returnType="uint" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="simpleFormatting" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="false" />
+ </method>
+ <method id="getCaptionsAsTranscript" returnType="String" isProperty="false">
+ </method>
+ <method id="getCaptionsAsArray" returnType="Array" isProperty="false">
+ </method>
+ <method id="secondsToTime" returnType="String" isProperty="false">
+ </method>
+ <method id="findInCaptions" returnType="Array" isProperty="false">
+ </method>
+ <method id="FLVPlaybackCaptioning" isConstructor="true" isProperty="false">
+ </method>
+</class></component>
+]]></classProperties>
+ <customIcon>
+ <CustomIcon rowByteCount="64" colorDepth="32" width="16" height="16" frameRight="320" frameBottom="320" isTransparent="true" href="50O3K3R4CU.dat"/>
+ </customIcon>
+ <SwcItem name="fl.video.FLVPlaybackCaptioning" version="1263907861" isTopLevel="true"/>
+ </DOMCompiledClipItem>
+ </media>
+ <symbols>
+ <Include href="Component Assets/_private/Component_avatar.xml" loadImmediate="false"/>
+ <Include href="Component Assets/ProgressBarSkins/ProgressBar_barSkin.xml"/>
+ <Include href="Component Assets/ProgressBarSkins/ProgressBar_indeterminateSkin.xml"/>
+ <Include href="Component Assets/ProgressBarSkins/ProgressBar_trackSkin.xml"/>
+ <Include href="ProgressBar.xml"/>
+ </symbols>
+ <timelines>
+ <DOMTimeline name="Séquence 1">
+ <layers>
+ <DOMLayer name="Calque 1" color="#4FFF4F" current="true" isSelected="true">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements/>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timelines>
+ <swatchLists>
+ <swatchList>
+ <swatches>
+ <SolidSwatchItem/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#003300" hue="80" saturation="239" brightness="24"/>
+ <SolidSwatchItem color="#006600" hue="80" saturation="239" brightness="48"/>
+ <SolidSwatchItem color="#009900" hue="80" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#00CC00" hue="80" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#00FF00" hue="80" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#330000" saturation="239" brightness="24"/>
+ <SolidSwatchItem color="#333300" hue="40" saturation="239" brightness="24"/>
+ <SolidSwatchItem color="#336600" hue="60" saturation="239" brightness="48"/>
+ <SolidSwatchItem color="#339900" hue="67" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#33CC00" hue="70" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#33FF00" hue="72" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#660000" saturation="239" brightness="48"/>
+ <SolidSwatchItem color="#663300" hue="20" saturation="239" brightness="48"/>
+ <SolidSwatchItem color="#666600" hue="40" saturation="239" brightness="48"/>
+ <SolidSwatchItem color="#669900" hue="53" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#66CC00" hue="60" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#66FF00" hue="64" saturation="239" brightness="120"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#333333" brightness="48"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#000033" hue="160" saturation="239" brightness="24"/>
+ <SolidSwatchItem color="#003333" hue="120" saturation="239" brightness="24"/>
+ <SolidSwatchItem color="#006633" hue="100" saturation="239" brightness="48"/>
+ <SolidSwatchItem color="#009933" hue="93" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#00CC33" hue="90" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#00FF33" hue="88" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#330033" hue="200" saturation="239" brightness="24"/>
+ <SolidSwatchItem color="#333333" brightness="48"/>
+ <SolidSwatchItem color="#336633" hue="80" saturation="80" brightness="72"/>
+ <SolidSwatchItem color="#339933" hue="80" saturation="120" brightness="96"/>
+ <SolidSwatchItem color="#33CC33" hue="80" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#33FF33" hue="80" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#660033" hue="220" saturation="239" brightness="48"/>
+ <SolidSwatchItem color="#663333" saturation="80" brightness="72"/>
+ <SolidSwatchItem color="#666633" hue="40" saturation="80" brightness="72"/>
+ <SolidSwatchItem color="#669933" hue="60" saturation="120" brightness="96"/>
+ <SolidSwatchItem color="#66CC33" hue="67" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#66FF33" hue="70" saturation="239" brightness="144"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#666666" brightness="96"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#000066" hue="160" saturation="239" brightness="48"/>
+ <SolidSwatchItem color="#003366" hue="140" saturation="239" brightness="48"/>
+ <SolidSwatchItem color="#006666" hue="120" saturation="239" brightness="48"/>
+ <SolidSwatchItem color="#009966" hue="107" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#00CC66" hue="100" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#00FF66" hue="96" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#330066" hue="180" saturation="239" brightness="48"/>
+ <SolidSwatchItem color="#333366" hue="160" saturation="80" brightness="72"/>
+ <SolidSwatchItem color="#336666" hue="120" saturation="80" brightness="72"/>
+ <SolidSwatchItem color="#339966" hue="100" saturation="120" brightness="96"/>
+ <SolidSwatchItem color="#33CC66" hue="93" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#33FF66" hue="90" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#660066" hue="200" saturation="239" brightness="48"/>
+ <SolidSwatchItem color="#663366" hue="200" saturation="80" brightness="72"/>
+ <SolidSwatchItem color="#666666" brightness="96"/>
+ <SolidSwatchItem color="#669966" hue="80" saturation="48" brightness="120"/>
+ <SolidSwatchItem color="#66CC66" hue="80" saturation="120" brightness="144"/>
+ <SolidSwatchItem color="#66FF66" hue="80" saturation="239" brightness="168"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#999999" brightness="144"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#000099" hue="160" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#003399" hue="147" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#006699" hue="133" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#009999" hue="120" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#00CC99" hue="110" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#00FF99" hue="104" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#330099" hue="173" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#333399" hue="160" saturation="120" brightness="96"/>
+ <SolidSwatchItem color="#336699" hue="140" saturation="120" brightness="96"/>
+ <SolidSwatchItem color="#339999" hue="120" saturation="120" brightness="96"/>
+ <SolidSwatchItem color="#33CC99" hue="107" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#33FF99" hue="100" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#660099" hue="187" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#663399" hue="180" saturation="120" brightness="96"/>
+ <SolidSwatchItem color="#666699" hue="160" saturation="48" brightness="120"/>
+ <SolidSwatchItem color="#669999" hue="120" saturation="48" brightness="120"/>
+ <SolidSwatchItem color="#66CC99" hue="100" saturation="120" brightness="144"/>
+ <SolidSwatchItem color="#66FF99" hue="93" saturation="239" brightness="168"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#CCCCCC" brightness="192"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#0000CC" hue="160" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#0033CC" hue="150" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#0066CC" hue="140" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#0099CC" hue="130" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#00CCCC" hue="120" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#00FFCC" hue="112" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#3300CC" hue="170" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#3333CC" hue="160" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#3366CC" hue="147" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#3399CC" hue="133" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#33CCCC" hue="120" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#33FFCC" hue="110" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#6600CC" hue="180" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#6633CC" hue="173" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#6666CC" hue="160" saturation="120" brightness="144"/>
+ <SolidSwatchItem color="#6699CC" hue="140" saturation="120" brightness="144"/>
+ <SolidSwatchItem color="#66CCCC" hue="120" saturation="120" brightness="144"/>
+ <SolidSwatchItem color="#66FFCC" hue="107" saturation="239" brightness="168"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#FFFFFF" brightness="240"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#0000FF" hue="160" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#0033FF" hue="152" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#0066FF" hue="144" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#0099FF" hue="136" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#00CCFF" hue="128" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#00FFFF" hue="120" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#3300FF" hue="168" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#3333FF" hue="160" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#3366FF" hue="150" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#3399FF" hue="140" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#33CCFF" hue="130" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#33FFFF" hue="120" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#6600FF" hue="176" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#6633FF" hue="170" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#6666FF" hue="160" saturation="239" brightness="168"/>
+ <SolidSwatchItem color="#6699FF" hue="147" saturation="239" brightness="168"/>
+ <SolidSwatchItem color="#66CCFF" hue="133" saturation="239" brightness="168"/>
+ <SolidSwatchItem color="#66FFFF" hue="120" saturation="239" brightness="168"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#FF0000" saturation="239" brightness="120"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#990000" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#993300" hue="13" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#996600" hue="27" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#999900" hue="40" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#99CC00" hue="50" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#99FF00" hue="56" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#CC0000" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#CC3300" hue="10" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#CC6600" hue="20" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#CC9900" hue="30" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#CCCC00" hue="40" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#CCFF00" hue="48" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#FF0000" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#FF3300" hue="8" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#FF6600" hue="16" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#FF9900" hue="24" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#FFCC00" hue="32" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#FFFF00" hue="40" saturation="239" brightness="120"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#00FF00" hue="80" saturation="239" brightness="120"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#990033" hue="227" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#993333" saturation="120" brightness="96"/>
+ <SolidSwatchItem color="#996633" hue="20" saturation="120" brightness="96"/>
+ <SolidSwatchItem color="#999933" hue="40" saturation="120" brightness="96"/>
+ <SolidSwatchItem color="#99CC33" hue="53" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#99FF33" hue="60" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#CC0033" hue="230" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#CC3333" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#CC6633" hue="13" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#CC9933" hue="27" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#CCCC33" hue="40" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#CCFF33" hue="50" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#FF0033" hue="232" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#FF3333" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#FF6633" hue="10" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#FF9933" hue="20" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#FFCC33" hue="30" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#FFFF33" hue="40" saturation="239" brightness="144"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#0000FF" hue="160" saturation="239" brightness="120"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#990066" hue="213" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#993366" hue="220" saturation="120" brightness="96"/>
+ <SolidSwatchItem color="#996666" saturation="48" brightness="120"/>
+ <SolidSwatchItem color="#999966" hue="40" saturation="48" brightness="120"/>
+ <SolidSwatchItem color="#99CC66" hue="60" saturation="120" brightness="144"/>
+ <SolidSwatchItem color="#99FF66" hue="67" saturation="239" brightness="168"/>
+ <SolidSwatchItem color="#CC0066" hue="220" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#CC3366" hue="227" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#CC6666" saturation="120" brightness="144"/>
+ <SolidSwatchItem color="#CC9966" hue="20" saturation="120" brightness="144"/>
+ <SolidSwatchItem color="#CCCC66" hue="40" saturation="120" brightness="144"/>
+ <SolidSwatchItem color="#CCFF66" hue="53" saturation="239" brightness="168"/>
+ <SolidSwatchItem color="#FF0066" hue="224" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#FF3366" hue="230" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#FF6666" saturation="239" brightness="168"/>
+ <SolidSwatchItem color="#FF9966" hue="13" saturation="239" brightness="168"/>
+ <SolidSwatchItem color="#FFCC66" hue="27" saturation="239" brightness="168"/>
+ <SolidSwatchItem color="#FFFF66" hue="40" saturation="239" brightness="168"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#FFFF00" hue="40" saturation="239" brightness="120"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#990099" hue="200" saturation="239" brightness="72"/>
+ <SolidSwatchItem color="#993399" hue="200" saturation="120" brightness="96"/>
+ <SolidSwatchItem color="#996699" hue="200" saturation="48" brightness="120"/>
+ <SolidSwatchItem color="#999999" brightness="144"/>
+ <SolidSwatchItem color="#99CC99" hue="80" saturation="80" brightness="168"/>
+ <SolidSwatchItem color="#99FF99" hue="80" saturation="239" brightness="192"/>
+ <SolidSwatchItem color="#CC0099" hue="210" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#CC3399" hue="213" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#CC6699" hue="220" saturation="120" brightness="144"/>
+ <SolidSwatchItem color="#CC9999" saturation="80" brightness="168"/>
+ <SolidSwatchItem color="#CCCC99" hue="40" saturation="80" brightness="168"/>
+ <SolidSwatchItem color="#CCFF99" hue="60" saturation="239" brightness="192"/>
+ <SolidSwatchItem color="#FF0099" hue="216" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#FF3399" hue="220" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#FF6699" hue="227" saturation="239" brightness="168"/>
+ <SolidSwatchItem color="#FF9999" saturation="239" brightness="192"/>
+ <SolidSwatchItem color="#FFCC99" hue="20" saturation="239" brightness="192"/>
+ <SolidSwatchItem color="#FFFF99" hue="40" saturation="239" brightness="192"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#00FFFF" hue="120" saturation="239" brightness="120"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#9900CC" hue="190" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#9933CC" hue="187" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#9966CC" hue="180" saturation="120" brightness="144"/>
+ <SolidSwatchItem color="#9999CC" hue="160" saturation="80" brightness="168"/>
+ <SolidSwatchItem color="#99CCCC" hue="120" saturation="80" brightness="168"/>
+ <SolidSwatchItem color="#99FFCC" hue="100" saturation="239" brightness="192"/>
+ <SolidSwatchItem color="#CC00CC" hue="200" saturation="239" brightness="96"/>
+ <SolidSwatchItem color="#CC33CC" hue="200" saturation="144" brightness="120"/>
+ <SolidSwatchItem color="#CC66CC" hue="200" saturation="120" brightness="144"/>
+ <SolidSwatchItem color="#CC99CC" hue="200" saturation="80" brightness="168"/>
+ <SolidSwatchItem color="#CCCCCC" brightness="192"/>
+ <SolidSwatchItem color="#CCFFCC" hue="80" saturation="239" brightness="216"/>
+ <SolidSwatchItem color="#FF00CC" hue="208" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#FF33CC" hue="210" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#FF66CC" hue="213" saturation="239" brightness="168"/>
+ <SolidSwatchItem color="#FF99CC" hue="220" saturation="239" brightness="192"/>
+ <SolidSwatchItem color="#FFCCCC" saturation="239" brightness="216"/>
+ <SolidSwatchItem color="#FFFFCC" hue="40" saturation="239" brightness="216"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#FF00FF" hue="200" saturation="239" brightness="120"/>
+ <SolidSwatchItem/>
+ <SolidSwatchItem color="#9900FF" hue="184" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#9933FF" hue="180" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#9966FF" hue="173" saturation="239" brightness="168"/>
+ <SolidSwatchItem color="#9999FF" hue="160" saturation="239" brightness="192"/>
+ <SolidSwatchItem color="#99CCFF" hue="140" saturation="239" brightness="192"/>
+ <SolidSwatchItem color="#99FFFF" hue="120" saturation="239" brightness="192"/>
+ <SolidSwatchItem color="#CC00FF" hue="192" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#CC33FF" hue="190" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#CC66FF" hue="187" saturation="239" brightness="168"/>
+ <SolidSwatchItem color="#CC99FF" hue="180" saturation="239" brightness="192"/>
+ <SolidSwatchItem color="#CCCCFF" hue="160" saturation="239" brightness="216"/>
+ <SolidSwatchItem color="#CCFFFF" hue="120" saturation="239" brightness="216"/>
+ <SolidSwatchItem color="#FF00FF" hue="200" saturation="239" brightness="120"/>
+ <SolidSwatchItem color="#FF33FF" hue="200" saturation="239" brightness="144"/>
+ <SolidSwatchItem color="#FF66FF" hue="200" saturation="239" brightness="168"/>
+ <SolidSwatchItem color="#FF99FF" hue="200" saturation="239" brightness="192"/>
+ <SolidSwatchItem color="#FFCCFF" hue="200" saturation="239" brightness="216"/>
+ <SolidSwatchItem color="#FFFFFF" brightness="240"/>
+ </swatches>
+ </swatchList>
+ </swatchLists>
+ <extendedSwatchLists>
+ <swatchList>
+ <swatches>
+ <LinearGradientSwatchItem>
+ <GradientEntry color="#FFFFFF" ratio="0"/>
+ <GradientEntry ratio="1"/>
+ </LinearGradientSwatchItem>
+ <RadialGradientSwatchItem>
+ <GradientEntry color="#FFFFFF" ratio="0"/>
+ <GradientEntry ratio="1"/>
+ </RadialGradientSwatchItem>
+ <RadialGradientSwatchItem>
+ <GradientEntry color="#FF0000" ratio="0"/>
+ <GradientEntry ratio="1"/>
+ </RadialGradientSwatchItem>
+ <RadialGradientSwatchItem>
+ <GradientEntry color="#00FF00" ratio="0"/>
+ <GradientEntry ratio="1"/>
+ </RadialGradientSwatchItem>
+ <RadialGradientSwatchItem>
+ <GradientEntry color="#0000FF" ratio="0"/>
+ <GradientEntry ratio="1"/>
+ </RadialGradientSwatchItem>
+ <LinearGradientSwatchItem>
+ <GradientEntry color="#0066FD" ratio="0"/>
+ <GradientEntry color="#FFFFFF" ratio="0.376470588235294"/>
+ <GradientEntry color="#FFFFFF" ratio="0.47843137254902"/>
+ <GradientEntry color="#996600" ratio="0.501960784313725"/>
+ <GradientEntry color="#FFCC00" ratio="0.666666666666667"/>
+ <GradientEntry color="#FFFFFF" ratio="1"/>
+ </LinearGradientSwatchItem>
+ <LinearGradientSwatchItem>
+ <GradientEntry color="#FF0000" ratio="0"/>
+ <GradientEntry color="#FFFF00" ratio="0.164705882352941"/>
+ <GradientEntry color="#00FF00" ratio="0.364705882352941"/>
+ <GradientEntry color="#00FFFF" ratio="0.498039215686275"/>
+ <GradientEntry color="#0000FF" ratio="0.666666666666667"/>
+ <GradientEntry color="#FF00FF" ratio="0.831372549019608"/>
+ <GradientEntry color="#FF0000" ratio="1"/>
+ </LinearGradientSwatchItem>
+ </swatches>
+ </swatchList>
+ </extendedSwatchLists>
+ <PrinterSettings platform="macintosh"/>
+ <publishHistory>
+ <PublishItem publishSize="106532" publishTime="1336579908"/>
+ <PublishItem publishSize="106533" publishTime="1336579839"/>
+ <PublishItem publishSize="106534" publishTime="1336579721"/>
+ <PublishItem publishSize="1049" publishTime="1336579579"/>
+ <PublishItem publishSize="106428" publishTime="1336579255"/>
+ <PublishItem publishSize="106426" publishTime="1336579214"/>
+ <PublishItem publishSize="106430" publishTime="1336579166"/>
+ <PublishItem publishSize="106430" publishTime="1336579160"/>
+ <PublishItem publishSize="106430" publishTime="1336579147"/>
+ <PublishItem publishSize="106423" publishTime="1336579090"/>
+ <PublishItem publishSize="106425" publishTime="1336579044"/>
+ <PublishItem publishSize="106425" publishTime="1336579005"/>
+ <PublishItem publishSize="106423" publishTime="1336578994"/>
+ <PublishItem publishSize="106421" publishTime="1336578948"/>
+ <PublishItem publishSize="106418" publishTime="1336578913"/>
+ <PublishItem publishSize="106380" publishTime="1336576813"/>
+ <PublishItem publishSize="106377" publishTime="1336576800"/>
+ <PublishItem publishSize="106381" publishTime="1336576788"/>
+ <PublishItem publishSize="106381" publishTime="1336576750"/>
+ <PublishItem publishSize="106378" publishTime="1336576734"/>
+ </publishHistory>
+ <swcCache>
+ <Swc hashKey="LWJ4qfDKC.LqmxYv0myxv1" href="511TA3R4DC.swc">
+ <classDefinitions>
+ <ClassDefinition value="fl.video.CuePointType"/>
+ <ClassDefinition value="fl.video.ParseResults"/>
+ <ClassDefinition value="fl.video.VideoPlayerState"/>
+ <ClassDefinition value="fl.video.NCManagerDynamicStream"/>
+ <ClassDefinition value="fl.video.NCManagerNativeShim"/>
+ <ClassDefinition value="fl.video.FMSCapabilities"/>
+ <ClassDefinition value="fl.video.ConnectClientDynamicStream"/>
+ <ClassDefinition value="fl.video.VideoError"/>
+ <ClassDefinition value="fl.video.VideoEvent"/>
+ <ClassDefinition value="fl.video.AutoLayoutEvent"/>
+ <ClassDefinition value="fl.video.SkinErrorEvent"/>
+ <ClassDefinition value="fl.video.VolumeBarAccImpl"/>
+ <ClassDefinition value="fl.video.FPADManager"/>
+ <ClassDefinition value="fl.video.SeekBarAccImpl"/>
+ <ClassDefinition value="fl.video.ReconnectClient"/>
+ <ClassDefinition value="fl.video.VideoScaleMode"/>
+ <ClassDefinition value="fl.video.ConnectClient"/>
+ <ClassDefinition value="fl.livepreview.LivePreviewParent"/>
+ <ClassDefinition value="fl.video.NCManagerNative"/>
+ <ClassDefinition value="fl.video.DynamicStreamItem"/>
+ <ClassDefinition value="fl.video.VideoPlayerClient"/>
+ <ClassDefinition value="fl.video.LayoutEvent"/>
+ <ClassDefinition value="fl.video.Icon"/>
+ <ClassDefinition value="fl.video.DynamicStream"/>
+ <ClassDefinition value="fl.video.ControlData"/>
+ <ClassDefinition value="fl.video.FPMediaCapabilities"/>
+ <ClassDefinition value="fl.video.VideoState"/>
+ <ClassDefinition value="fl.video.QueuedCommand"/>
+ <ClassDefinition value="fl.video.VideoProgressEvent"/>
+ <ClassDefinition value="fl.video.VideoAlign"/>
+ <ClassDefinition value="fl.video.CuePointManager"/>
+ <ClassDefinition value="fl.video.IVPEvent"/>
+ <ClassDefinition value="fl.video.VideoPlayer"/>
+ <ClassDefinition value="fl.video.UIManager"/>
+ <ClassDefinition value="fl.video.ConnectClientNative"/>
+ <ClassDefinition value="fl.video.INCManager"/>
+ <ClassDefinition value="fl.video.SoundEvent"/>
+ <ClassDefinition value="fl.video.FLVPlayback"/>
+ <ClassDefinition value="fl.video.MetadataEvent"/>
+ <ClassDefinition value="fl.video.SMILManager"/>
+ <ClassDefinition value="fl.video.NCManager"/>
+ <ClassDefinition value="fl.video.DVRManager"/>
+ <ClassDefinition value="fl.livepreview.IEditContextV1"/>
+ <ClassDefinition value="fl.livepreview.IPreviewInterface"/>
+ <ClassDefinition value="fl.video.CuePointType"/>
+ <ClassDefinition value="fl.video.VideoPlayerState"/>
+ <ClassDefinition value="fl.video.DynamicStreamItem"/>
+ <ClassDefinition value="fl.video.ControlData"/>
+ <ClassDefinition value="fl.video.CuePointManager"/>
+ <ClassDefinition value="fl.video.UIManager"/>
+ <ClassDefinition value="fl.video.INCManager"/>
+ <ClassDefinition value="fl.video.VideoScaleMode"/>
+ <ClassDefinition value="fl.livepreview.EditContextFlags"/>
+ <ClassDefinition value="fl.video.VideoState"/>
+ <ClassDefinition value="fl.video.QueuedCommand"/>
+ <ClassDefinition value="fl.video.IVPEvent"/>
+ <ClassDefinition value="fl.video.ParseResults"/>
+ <ClassDefinition value="fl.video.FPMediaCapabilities"/>
+ <ClassDefinition value="fl.video.SMILManager"/>
+ <ClassDefinition value="fl.video.FPADManager"/>
+ <ClassDefinition value="fl.video.FMSCapabilities"/>
+ <ClassDefinition value="fl.video.VideoAlign"/>
+ <ClassDefinition value="fl.video.ConnectClient"/>
+ <ClassDefinition value="fl.video.ReconnectClient"/>
+ <ClassDefinition value="fl.video.VideoPlayerClient"/>
+ <ClassDefinition value="fl.video.LayoutEvent"/>
+ <ClassDefinition value="fl.video.SoundEvent"/>
+ <ClassDefinition value="fl.video.VolumeBarAccImpl"/>
+ <ClassDefinition value="fl.video.SeekBarAccImpl"/>
+ <ClassDefinition value="fl.livepreview.IVideoInterfaceV1"/>
+ <ClassDefinition value="fl.video.VideoError"/>
+ <ClassDefinition value="UIManagerStage"/>
+ <ClassDefinition value="fl.video.NCManager"/>
+ <ClassDefinition value="fl.video.VideoEvent"/>
+ <ClassDefinition value="fl.video.MetadataEvent"/>
+ <ClassDefinition value="fl.video.ConnectClientDynamicStream"/>
+ <ClassDefinition value="fl.video.ConnectClientNative"/>
+ <ClassDefinition value="fl.video.DVRManager"/>
+ <ClassDefinition value="fl.video.VideoProgressEvent"/>
+ <ClassDefinition value="fl.video.AutoLayoutEvent"/>
+ <ClassDefinition value="fl.video.NCManagerDynamicStream"/>
+ <ClassDefinition value="fl.video.NCManagerNative"/>
+ <ClassDefinition value="fl.video.DynamicStream"/>
+ <ClassDefinition value="fl.video.SkinErrorEvent"/>
+ <ClassDefinition value="fl.video.VideoPlayer"/>
+ <ClassDefinition value="FLVPlaybackStageLivePreview"/>
+ <ClassDefinition value="fl.stage.video.StopButtonDown"/>
+ <ClassDefinition value="fl.stage.video.StopButtonNormal"/>
+ <ClassDefinition value="fl.stage.video.StopButtonOver"/>
+ <ClassDefinition value="fl.video.FLVPlayback"/>
+ <ClassDefinition value="fl.stage.video.ComponentVersionView"/>
+ <ClassDefinition value="fl.stage.video.BackgroundBox"/>
+ <ClassDefinition value="FLVPlaybackStage"/>
+ <ClassDefinition value="fl.livepreview.LivePreviewParent"/>
+ <ClassDefinition value="fl.video.Icon"/>
+ </classDefinitions>
+ </Swc>
+ <Swc hashKey="kfuaIecnz3BPM/B8Awo4b." href="511TD3R4DC.swc">
+ <classDefinitions>
+ <ClassDefinition value="fl.core.AccessibilityShim"/>
+ <ClassDefinition value="fl.controls.CheckBox"/>
+ <ClassDefinition value="fl.controls.LabelButton"/>
+ <ClassDefinition value="fl.controls.List"/>
+ <ClassDefinition value="fl.controls.ComboBox"/>
+ <ClassDefinition value="fl.controls.ProgressBarDirection"/>
+ <ClassDefinition value="fl.data.SimpleCollectionItem"/>
+ <ClassDefinition value="fl.controls.TextArea"/>
+ <ClassDefinition value="fl.controls.Slider"/>
+ <ClassDefinition value="fl.events.DataChangeEvent"/>
+ <ClassDefinition value="fl.accessibility.ComboBoxAccImpl"/>
+ <ClassDefinition value="fl.events.DataChangeType"/>
+ <ClassDefinition value="fl.accessibility.TileListAccImpl"/>
+ <ClassDefinition value="fl.accessibility.ButtonAccImpl"/>
+ <ClassDefinition value="fl.controls.BaseButton"/>
+ <ClassDefinition value="fl.core.UIComponent"/>
+ <ClassDefinition value="fl.controls.DataGrid"/>
+ <ClassDefinition value="fl.containers.BaseScrollPane"/>
+ <ClassDefinition value="fl.livepreview.LivePreviewParent"/>
+ <ClassDefinition value="fl.controls.Label"/>
+ <ClassDefinition value="fl.managers.IFocusManagerComponent"/>
+ <ClassDefinition value="fl.controls.UIScrollBar"/>
+ <ClassDefinition value="fl.controls.listClasses.ICellRenderer"/>
+ <ClassDefinition value="fl.controls.dataGridClasses.DataGridCellEditor"/>
+ <ClassDefinition value="fl.controls.ColorPicker"/>
+ <ClassDefinition value="fl.managers.FocusManager"/>
+ <ClassDefinition value="fl.events.DataGridEventReason"/>
+ <ClassDefinition value="fl.events.SliderEvent"/>
+ <ClassDefinition value="fl.events.SliderEventClickTarget"/>
+ <ClassDefinition value="fl.controls.progressBarClasses.IndeterminateBar"/>
+ <ClassDefinition value="fl.controls.listClasses.ListData"/>
+ <ClassDefinition value="fl.core.InvalidationType"/>
+ <ClassDefinition value="fl.controls.RadioButtonGroup"/>
+ <ClassDefinition value="fl.controls.NumericStepper"/>
+ <ClassDefinition value="fl.accessibility.LabelButtonAccImpl"/>
+ <ClassDefinition value="fl.containers.UILoader"/>
+ <ClassDefinition value="fl.events.ColorPickerEvent"/>
+ <ClassDefinition value="fl.controls.ButtonLabelPlacement"/>
+ <ClassDefinition value="fl.accessibility.CheckBoxAccImpl"/>
+ <ClassDefinition value="fl.managers.StyleManager"/>
+ <ClassDefinition value="fl.controls.TileList"/>
+ <ClassDefinition value="fl.controls.RadioButton"/>
+ <ClassDefinition value="fl.containers.ScrollPane"/>
+ <ClassDefinition value="fl.controls.listClasses.TileListData"/>
+ <ClassDefinition value="fl.events.InteractionInputType"/>
+ <ClassDefinition value="fl.controls.Button"/>
+ <ClassDefinition value="fl.core.ComponentShim"/>
+ <ClassDefinition value="fl.accessibility.UIComponentAccImpl"/>
+ <ClassDefinition value="fl.controls.SelectableList"/>
+ <ClassDefinition value="fl.events.ComponentEvent"/>
+ <ClassDefinition value="fl.accessibility.RadioButtonAccImpl"/>
+ <ClassDefinition value="fl.controls.listClasses.CellRenderer"/>
+ <ClassDefinition value="fl.managers.IFocusManagerGroup"/>
+ <ClassDefinition value="fl.controls.ScrollPolicy"/>
+ <ClassDefinition value="fl.controls.ScrollBar"/>
+ <ClassDefinition value="fl.controls.ProgressBar"/>
+ <ClassDefinition value="fl.controls.listClasses.ImageCell"/>
+ <ClassDefinition value="fl.managers.IFocusManager"/>
+ <ClassDefinition value="fl.controls.ProgressBarMode"/>
+ <ClassDefinition value="fl.accessibility.SelectableListAccImpl"/>
+ <ClassDefinition value="fl.controls.TextInput"/>
+ <ClassDefinition value="fl.events.ListEvent"/>
+ <ClassDefinition value="fl.accessibility.AccImpl"/>
+ <ClassDefinition value="fl.accessibility.DataGridAccImpl"/>
+ <ClassDefinition value="fl.controls.dataGridClasses.DataGridColumn"/>
+ <ClassDefinition value="fl.events.ScrollEvent"/>
+ <ClassDefinition value="fl.events.DataGridEvent"/>
+ <ClassDefinition value="fl.data.TileListCollectionItem"/>
+ <ClassDefinition value="fl.data.DataProvider"/>
+ <ClassDefinition value="fl.accessibility.ListAccImpl"/>
+ <ClassDefinition value="fl.controls.dataGridClasses.HeaderRenderer"/>
+ <ClassDefinition value="fl.controls.ScrollBarDirection"/>
+ <ClassDefinition value="fl.controls.SliderDirection"/>
+ </classDefinitions>
+ </Swc>
+ <Swc hashKey="u6WoxbQBPf5MDbMcy6Jt7." href="511TG3R4DC.swc">
+ <classDefinitions>
+ <ClassDefinition value="fl.livepreview.LivePreviewParent"/>
+ <ClassDefinition value="fl.video.TimedTextManager"/>
+ <ClassDefinition value="fl.video.CaptionChangeEvent"/>
+ <ClassDefinition value="fl.video.CaptionTargetEvent"/>
+ <ClassDefinition value="fl.video.FLVPlaybackCaptioning"/>
+ </classDefinitions>
+ </Swc>
+ </swcCache>
+</DOMDocument>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/player_bab_ldt/LIBRARY/Component Assets/ProgressBarSkins/ProgressBar_barSkin.xml Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,68 @@
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Component Assets/ProgressBarSkins/ProgressBar_barSkin" itemID="44b2abe2-000001ba" linkageExportForAS="true" linkageExportInFirstFrame="false" linkageClassName="ProgressBar_barSkin" sourceLibraryItemHRef="Component Assets/ProgressBarSkins/ProgressBar_barSkin" sourceLastModified="1163712967" scaleGridLeft="1" scaleGridRight="51.95" scaleGridTop="1" scaleGridBottom="2.9" lastModified="1168289651">
+ <timeline>
+ <DOMTimeline name="ProgressBar_barSkin">
+ <layers>
+ <DOMLayer name="skin" color="#4FFF4F" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMGroup>
+ <members>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <LinearGradient>
+ <matrix>
+ <Matrix a="0" b="-0.0083160400390625" c="0.0083160400390625" d="0" tx="6" ty="7.1"/>
+ </matrix>
+ <GradientEntry color="#99D7FE" ratio="0"/>
+ <GradientEntry color="#D9F0FE" ratio="1"/>
+ </LinearGradient>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle1="1" edges="!1040 61|20 60!20 60|20 19!20 19|1040 20!1040 20|1040 61"/>
+ <Edge cubics="!20 60(;20,60 20,19 20,19p20 60 20 19);"/>
+ <Edge cubics="!1040 61(;1040,61 20,60 20,60p1040 61 20 60);"/>
+ <Edge cubics="!1040 20(;1040,20 1040,61 1040,61p1040 20 1040 61);"/>
+ <Edge cubics="!20 19(;20,19 1040,20 1040,20p20 19 1040 20);"/>
+ </edges>
+ </DOMShape>
+ </members>
+ </DOMGroup>
+ <DOMGroup>
+ <members>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <LinearGradient>
+ <matrix>
+ <Matrix a="0" b="-0.00787353515625" c="0.00787353515625" d="0" tx="106.5" ty="6.45"/>
+ </matrix>
+ <GradientEntry color="#0075BF" ratio="0"/>
+ <GradientEntry color="#009DFF" ratio="0.992156862745098"/>
+ </LinearGradient>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle0="1" edges="!1060 0|0 0!0 0|0 80!0 80|1060 80!1060 80|1060 0!1040 60|20 60!20 60|20 20!20 20|1040 20!1040 20|1040 60"/>
+ <Edge cubics="!0 0(;0,0 0,80 0,80q0 0 0 80);"/>
+ <Edge cubics="!20 60(;20,60 20,20 20,20q20 60 20 20);"/>
+ <Edge cubics="!1060 80(;1060,80 1060,0 1060,0q1060 80 1060 0);"/>
+ <Edge cubics="!1040 20(;1040,20 1040,60 1040,60q1040 20 1040 60);"/>
+ <Edge cubics="!1060 0(;1060,0 0,0 0,0q1060 0 0 0);"/>
+ <Edge cubics="!0 80(;0,80 1060,80 1060,80q0 80 1060 80);"/>
+ <Edge cubics="!1040 60(;1040,60 20,60 20,60q1040 60 20 60);"/>
+ <Edge cubics="!20 20(;20,20 1040,20 1040,20q20 20 1040 20);"/>
+ </edges>
+ </DOMShape>
+ </members>
+ </DOMGroup>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+</DOMSymbolItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/player_bab_ldt/LIBRARY/Component Assets/ProgressBarSkins/ProgressBar_indeterminateSkin.xml Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,27 @@
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Component Assets/ProgressBarSkins/ProgressBar_indeterminateSkin" itemID="44b3e7f2-0000000f" linkageExportForAS="true" linkageExportInFirstFrame="false" linkageClassName="ProgressBar_indeterminateSkin" sourceLibraryItemHRef="Component Assets/ProgressBarSkins/ProgressBar_indeterminateSkin" sourceLastModified="1163713057" lastModified="1168289661">
+ <timeline>
+ <DOMTimeline name="ProgressBar_indeterminateSkin">
+ <layers>
+ <DOMLayer name="skin" color="#9933CC" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <SolidColor color="#009DFF"/>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle1="1" edges="!1596 0|-1 798.5!-1 798.5|-1 598.5!-1 598.5|1196 0!1196 0|1596 0!1599 398.5|796 800!796 800|396 800!396 800|1599 198.5!1599 198.5|1599 398.5!1599 800|1196 800!1196 800|1599 598.5!1599 598.5|1599 800!796 0|-1 398.5!-1 398.5|-1 198.5!-1
+ 198.5|396 0!396 0|796 0"/>
+ </edges>
+ </DOMShape>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+</DOMSymbolItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/player_bab_ldt/LIBRARY/Component Assets/ProgressBarSkins/ProgressBar_trackSkin.xml Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,68 @@
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Component Assets/ProgressBarSkins/ProgressBar_trackSkin" itemID="44b2aac4-000001b5" linkageExportForAS="true" linkageExportInFirstFrame="false" linkageClassName="ProgressBar_trackSkin" sourceLibraryItemHRef="Component Assets/ProgressBarSkins/ProgressBar_trackSkin" sourceLastModified="1163713063" scaleGridLeft="1" scaleGridRight="148.95" scaleGridTop="1.25" scaleGridBottom="2.65" lastModified="1168289670">
+ <timeline>
+ <DOMTimeline name="ProgressBar_trackSkin">
+ <layers>
+ <DOMLayer name="skin" color="#4FFF4F" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMGroup>
+ <members>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <LinearGradient>
+ <matrix>
+ <Matrix a="0" b="-0.0083160400390625" c="0.0083160400390625" d="0" tx="6" ty="7.1"/>
+ </matrix>
+ <GradientEntry color="#CCCCCC" alpha="0.4" ratio="0"/>
+ <GradientEntry color="#FFFFFF" alpha="0.6" ratio="1"/>
+ </LinearGradient>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle1="1" edges="!2980 61|20 60!20 60|20 19!20 19|2980 20!2980 20|2980 61"/>
+ <Edge cubics="!20 60(;20,60 20,19 20,19p20 60 20 19)20,19;"/>
+ <Edge cubics="!2980 61(;2980,61 20,60 20,60p2980 61 20 60);"/>
+ <Edge cubics="!2980 20(;2980,20 2980,61 2980,61p2980 20 2980 61);"/>
+ <Edge cubics="!20 19(;20,19 2980,20 2980,20p20 19 2980 20);"/>
+ </edges>
+ </DOMShape>
+ </members>
+ </DOMGroup>
+ <DOMGroup>
+ <members>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <LinearGradient>
+ <matrix>
+ <Matrix a="0" b="-0.00787353515625" c="0.00787353515625" d="0" tx="106.5" ty="6.45"/>
+ </matrix>
+ <GradientEntry color="#5B5D5E" ratio="0"/>
+ <GradientEntry color="#B7BABC" ratio="1"/>
+ </LinearGradient>
+ </FillStyle>
+ </fills>
+ <edges>
+ <Edge fillStyle0="1" edges="!3000 0|0 0!0 0|0 80!0 80|3000 80!3000 80|3000 0!2980 60|20 60!20 60|20 20!20 20|2980 20!2980 20|2980 60"/>
+ <Edge cubics="!20 60(20,60;20,60 20,20 20,20p20 60 20 20)20,20;"/>
+ <Edge cubics="!2980 60(2980,60;2980,60 20,60 20,60p2980 60 20 60)20,60;"/>
+ <Edge cubics="!2980 20(;2980,20 2980,60 2980,60p2980 20 2980 60);"/>
+ <Edge cubics="!20 20(;20,20 2980,20 2980,20p20 20 2980 20);"/>
+ <Edge cubics="!3000 0(3000,0;3000,0 0,0 0,0p3000 0 0 0);"/>
+ <Edge cubics="!3000 80(;3000,80 3000,0 3000,0p3000 80 3000 0);"/>
+ <Edge cubics="!0 80(;0,80 3000,80 3000,80p0 80 3000 80)3000,80;"/>
+ <Edge cubics="!0 0(0,0;0,0 0,80 0,80p0 0 0 80);"/>
+ </edges>
+ </DOMShape>
+ </members>
+ </DOMGroup>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+</DOMSymbolItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/player_bab_ldt/LIBRARY/Component Assets/_private/Component_avatar.xml Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,35 @@
+<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Component Assets/_private/Component_avatar" itemID="44f89322-00000020" sourceLibraryItemHRef="Component Assets/Shared/Component_avatar" sourceLastModified="1163714548" lastModified="1168286780">
+ <timeline>
+ <DOMTimeline name="Component_avatar">
+ <layers>
+ <DOMLayer name="Avatar" color="#4FFF4F" current="true" isSelected="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMShape>
+ <fills>
+ <FillStyle index="1">
+ <SolidColor color="#FFFFFF"/>
+ </FillStyle>
+ </fills>
+ <strokes>
+ <StrokeStyle index="1">
+ <SolidStroke scaleMode="normal" weight="0.05" solidStyle="hairline">
+ <fill>
+ <SolidColor/>
+ </fill>
+ </SolidStroke>
+ </StrokeStyle>
+ </strokes>
+ <edges>
+ <Edge fillStyle1="1" strokeStyle="1" edges="!1600 440|0 440!0 440|0 0!0 0|1600 0!1600 0|1600 440"/>
+ </edges>
+ </DOMShape>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+</DOMSymbolItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/player_bab_ldt/LIBRARY/ProgressBar.xml Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,642 @@
+<DOMComponentItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="ProgressBar" itemID="44b2ac3f-000001bc" linkageExportForAS="true" linkageClassName="fl.controls.ProgressBar" sourceLibraryItemHRef="ProgressBar" sourceLastModified="1164926528" lastModified="1267043552" lastUniqueIdentifier="14" tooltip="ProgressBar" customIconID="0" actionscriptClass="fl.controls.ProgressBar" livePreviewScmHRef="haewux0luj14.swf" livePreviewScmSourceFilename="ProgressBar.swf" persistLivePreview11="true" livePreview11ScmHRef="haexax0luj.swf" livePreview11ScmSourceFilename="C:\Documents and Settings\jkamerer\Local Settings\Application Data\Adobe\Flash CS5\en_US\Configuration\TMPafof4yd528..swf" editFrameIndex="2" requiredMinimumPlayerVersion="9" requiredMinimumASVersion="3" parametersAreLocked="true">
+ <timeline>
+ <DOMTimeline name="ProgressBar" currentFrame="1">
+ <layers>
+ <DOMLayer name="assets" color="#9933CC" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements/>
+ </DOMFrame>
+ <DOMFrame index="1" keyMode="9728">
+ <elements>
+ <DOMSymbolInstance libraryItemName="Component Assets/ProgressBarSkins/ProgressBar_trackSkin" name="">
+ <matrix>
+ <Matrix d="0.999725341796875" tx="22" ty="64"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="75" y="2"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ <DOMSymbolInstance libraryItemName="Component Assets/ProgressBarSkins/ProgressBar_barSkin" name="">
+ <matrix>
+ <Matrix d="0.999725341796875" tx="117" ty="30"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="26.5" y="2"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ <DOMSymbolInstance libraryItemName="Component Assets/ProgressBarSkins/ProgressBar_indeterminateSkin" name="">
+ <matrix>
+ <Matrix d="0.999725341796875" tx="90.05" ty="100"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="39.95" y="20"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ <DOMLayer name="asset names" color="#FF4FFF" locked="true" current="true" isSelected="true" autoNamed="false" layerType="guide">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements/>
+ </DOMFrame>
+ <DOMFrame index="1" keyMode="9728">
+ <elements>
+ <DOMRectangleObject objectWidth="427" objectHeight="177.95" x="-4" y="137" selected="true" lockFlag="true" topLeftRadius="20" topRightRadius="20" bottomLeftRadius="20" bottomRightRadius="20">
+ <matrix>
+ <Matrix d="0.999725341796875" tx="4" ty="-136.95"/>
+ </matrix>
+ <fill>
+ <SolidColor color="#EEEEEE"/>
+ </fill>
+ <stroke>
+ <SolidStroke scaleMode="normal">
+ <fill>
+ <SolidColor color="#CCCCCC"/>
+ </fill>
+ </SolidStroke>
+ </stroke>
+ </DOMRectangleObject>
+ <DOMStaticText selected="true" width="144" height="18" isSelectable="false">
+ <matrix>
+ <Matrix d="0.999725341796875" tx="232.4" ty="66"/>
+ </matrix>
+ <textRuns>
+ <DOMTextRun>
+ <characters>Track Skin</characters>
+ <textAttrs>
+ <DOMTextAttrs aliasText="false" lineSpacing="14.8" size="16" face="TimesNewRomanPSMT" fillColor="#666666"/>
+ </textAttrs>
+ </DOMTextRun>
+ </textRuns>
+ </DOMStaticText>
+ <DOMStaticText selected="true" width="144" height="18" isSelectable="false">
+ <matrix>
+ <Matrix d="0.999725341796875" tx="232.4" ty="24.1"/>
+ </matrix>
+ <textRuns>
+ <DOMTextRun>
+ <characters>Bar Skin</characters>
+ <textAttrs>
+ <DOMTextAttrs aliasText="false" lineSpacing="14.8" size="16" face="TimesNewRomanPSMT" fillColor="#666666"/>
+ </textAttrs>
+ </DOMTextRun>
+ </textRuns>
+ </DOMStaticText>
+ <DOMStaticText selected="true" width="144" height="18" isSelectable="false">
+ <matrix>
+ <Matrix d="0.999725341796875" tx="232.4" ty="116.3"/>
+ </matrix>
+ <textRuns>
+ <DOMTextRun>
+ <characters>Indeterminate Pattern</characters>
+ <textAttrs>
+ <DOMTextAttrs aliasText="false" lineSpacing="14.8" size="16" face="TimesNewRomanPSMT" fillColor="#666666"/>
+ </textAttrs>
+ </DOMTextRun>
+ </textRuns>
+ </DOMStaticText>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ <DOMLayer name="avatar" color="#4FFF4F" locked="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements>
+ <DOMSymbolInstance libraryItemName="Component Assets/_private/Component_avatar" name="">
+ <matrix>
+ <Matrix a="1.875" d="0.18182373046875"/>
+ </matrix>
+ <transformationPoint>
+ <Point x="40" y="11"/>
+ </transformationPoint>
+ </DOMSymbolInstance>
+ </elements>
+ </DOMFrame>
+ <DOMFrame index="1" keyMode="9728">
+ <elements/>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ <DOMLayer name="ComponentShim" color="#FFFF4F" locked="true" autoNamed="false">
+ <frames>
+ <DOMFrame index="0" keyMode="9728">
+ <elements/>
+ </DOMFrame>
+ <DOMFrame index="1" keyMode="9728">
+ <elements>
+ <DOMCompiledClipInstance libraryItemName="Component Assets/_private/ComponentShim" selected="true" uniqueID="13">
+ <matrix>
+ <Matrix d="1.00311279296875" tx="10" ty="10"/>
+ </matrix>
+ <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Séquence 1' oldCopiedComponentPath=''>
+</component>
+]]></dataBindingXML>
+ </DOMCompiledClipInstance>
+ </elements>
+ </DOMFrame>
+ </frames>
+ </DOMLayer>
+ </layers>
+ </DOMTimeline>
+ </timeline>
+ <parametersAsXML><![CDATA[ <property id="direction">
+ <Inspectable name="direction" variable="direction" category="" verbose="0" defaultValue="right" enumeration="right,left" type="List"/>
+ </property>
+ <property id="enabled">
+ <Inspectable name="enabled" variable="enabled" category="" verbose="1" defaultValue="true" type="Boolean"/>
+ </property>
+ <property id="mode">
+ <Inspectable name="mode" variable="mode" category="" verbose="0" defaultValue="event" enumeration="event,polled,manual" type="List"/>
+ </property>
+ <property id="sourceName">
+ <Inspectable name="source" variable="sourceName" category="" verbose="0" defaultValue="" type="String"/>
+ </property>
+ <property id="visible">
+ <Inspectable name="visible" variable="visible" category="" verbose="1" defaultValue="true" type="Boolean"/>
+ </property>
+]]></parametersAsXML>
+ <classProperties><![CDATA[<classDefs>
+ <classDef id="Date"/>
+ <classDef id="Date"/>
+ <classDef id="Boolean"/>
+ <classDef id="Namespace"/>
+ <classDef id="Class"/>
+ <classDef id="uint"/>
+ <classDef id="Object"/>
+ <classDef id="Number"/>
+ <classDef id="int"/>
+ <classDef id="String"/>
+ <classDef id="Function"/>
+ <classDef id="Array"/>
+ <classDef id="builtin.as$91.MethodClosure"/>
+ <classDef id="Object"/>
+ <classDef id="Boolean"/>
+ <classDef id="Namespace"/>
+ <classDef id="Class"/>
+ <classDef id="uint"/>
+ <classDef id="Number"/>
+ <classDef id="int"/>
+ <classDef id="String"/>
+ <classDef id="Function"/>
+ <classDef id="Array"/>
+ <classDef id="builtin.as$91.MethodClosure"/>
+ <classDef id="RegExp"/>
+ <classDef id="RegExp"/>
+ <classDef id="flash.display.Sprite"/>
+ <classDef id="flash.display.Sprite"/>
+ <classDef id="flash.display.DisplayObjectContainer"/>
+ <classDef id="flash.display.DisplayObjectContainer"/>
+ <classDef id="flash.display.InteractiveObject"/>
+ <classDef id="flash.display.InteractiveObject"/>
+ <classDef id="flash.display.DisplayObject"/>
+ <classDef id="flash.display.DisplayObject"/>
+ <classDef id="flash.display.IBitmapDrawable"/>
+ <classDef id="flash.display.IBitmapDrawable"/>
+ <classDef id="flash.events.WeakFunctionClosure"/>
+ <classDef id="flash.events.EventDispatcher"/>
+ <classDef id="flash.events.WeakMethodClosure"/>
+ <classDef id="flash.events.WeakFunctionClosure"/>
+ <classDef id="flash.events.WeakMethodClosure"/>
+ <classDef id="flash.events.EventDispatcher"/>
+ <classDef id="flash.events.IEventDispatcher"/>
+ <classDef id="flash.events.IEventDispatcher"/>
+ <classDef id="flash.events.Event"/>
+ <classDef id="flash.events.Event"/>
+ <classDef id="flash.display.Stage"/>
+ <classDef id="flash.display.Stage"/>
+ <classDef id="flash.geom.Rectangle"/>
+ <classDef id="flash.geom.Rectangle"/>
+ <classDef id="flash.geom.Point"/>
+ <classDef id="flash.geom.Point"/>
+ <classDef id="flash.display.LoaderInfo"/>
+ <classDef id="flash.display.LoaderInfo"/>
+ <classDef id="flash.geom.Transform"/>
+ <classDef id="flash.geom.Transform"/>
+ <classDef id="flash.accessibility.AccessibilityProperties"/>
+ <classDef id="flash.accessibility.AccessibilityProperties"/>
+ <classDef id="flash.ui.ContextMenu"/>
+ <classDef id="flash.ui.ContextMenu"/>
+ <classDef id="flash.accessibility.AccessibilityImplementation"/>
+ <classDef id="flash.accessibility.AccessibilityImplementation"/>
+ <classDef id="flash.text.TextSnapshot"/>
+ <classDef id="flash.text.TextSnapshot"/>
+ <classDef id="flash.media.SoundTransform"/>
+ <classDef id="flash.media.SoundTransform"/>
+ <classDef id="flash.display.Graphics"/>
+ <classDef id="flash.display.Graphics"/>
+ <classDef id="flash.events.KeyboardEvent"/>
+ <classDef id="flash.events.KeyboardEvent"/>
+ <classDef id="flash.events.FocusEvent"/>
+ <classDef id="flash.events.FocusEvent"/>
+ <classDef id="flash.utils.Dictionary"/>
+ <classDef id="flash.utils.Dictionary"/>
+ <classDef id="flash.text.TextField"/>
+ <classDef id="flash.text.TextField"/>
+ <classDef id="flash.events.ProgressEvent"/>
+ <classDef id="flash.events.ProgressEvent"/>
+ <classDef id="SecurityError"/>
+ <classDef id="URIError"/>
+ <classDef id="ReferenceError"/>
+ <classDef id="ArgumentError"/>
+ <classDef id="EvalError"/>
+ <classDef id="SyntaxError"/>
+ <classDef id="UninitializedError"/>
+ <classDef id="TypeError"/>
+ <classDef id="DefinitionError"/>
+ <classDef id="Error"/>
+ <classDef id="RangeError"/>
+ <classDef id="VerifyError"/>
+ <classDef id="Error"/>
+ <classDef id="SecurityError"/>
+ <classDef id="URIError"/>
+ <classDef id="ReferenceError"/>
+ <classDef id="ArgumentError"/>
+ <classDef id="EvalError"/>
+ <classDef id="SyntaxError"/>
+ <classDef id="UninitializedError"/>
+ <classDef id="TypeError"/>
+ <classDef id="DefinitionError"/>
+ <classDef id="RangeError"/>
+ <classDef id="VerifyError"/>
+ <classDef id="flash.events.MouseEvent"/>
+ <classDef id="flash.events.MouseEvent"/>
+ <classDef id="flash.system.IMEConversionMode"/>
+ <classDef id="flash.system.IMEConversionMode"/>
+ <classDef id="flash.system.IME"/>
+ <classDef id="flash.system.IME"/>
+ <classDef id="flash.text.TextFormatAlign"/>
+ <classDef id="flash.text.TextFormatAlign"/>
+ <classDef id="Math"/>
+ <classDef id="Math"/>
+ <classDef id="flash.text.TextFormat"/>
+ <classDef id="flash.text.TextFormat"/>
+ <classDef id="XMLList"/>
+ <classDef id="XML"/>
+ <classDef id="QName"/>
+ <classDef id="XMLList"/>
+ <classDef id="XML"/>
+ <classDef id="QName"/>
+ <classDef id="flash.geom.Matrix"/>
+ <classDef id="flash.geom.Matrix"/>
+ <classDef id="flash.geom.ColorTransform"/>
+ <classDef id="flash.geom.ColorTransform"/>
+ <classDef id="flash.display.BitmapData"/>
+ <classDef id="flash.display.BitmapData"/>
+ <classDef id="flash.utils.ByteArray"/>
+ <classDef id="flash.utils.ByteArray"/>
+ <classDef id="flash.display.Loader"/>
+ <classDef id="flash.display.Loader"/>
+ <classDef id="flash.system.ApplicationDomain"/>
+ <classDef id="flash.system.ApplicationDomain"/>
+ <classDef id="flash.ui.ContextMenuBuiltInItems"/>
+ <classDef id="flash.ui.ContextMenuBuiltInItems"/>
+ <classDef id="flash.text.TextRun"/>
+ <classDef id="flash.text.TextRun"/>
+ <classDef id="flash.text.TextLineMetrics"/>
+ <classDef id="flash.text.TextLineMetrics"/>
+ <classDef id="flash.text.StyleSheet"/>
+ <classDef id="flash.text.StyleSheet"/>
+ <classDef id="flash.display.SimpleButton"/>
+ <classDef id="flash.display.SimpleButton"/>
+ <classDef id="flash.ui.Keyboard"/>
+ <classDef id="flash.ui.Keyboard"/>
+ <classDef id="flash.text.TextFieldType"/>
+ <classDef id="flash.text.TextFieldType"/>
+ <classDef id="flash.events.IOErrorEvent"/>
+ <classDef id="flash.events.IOErrorEvent"/>
+ <classDef id="flash.errors.IOError"/>
+ <classDef id="flash.errors.EOFError"/>
+ <classDef id="flash.errors.StackOverflowError"/>
+ <classDef id="flash.errors.InvalidSWFError"/>
+ <classDef id="flash.errors.ScriptTimeoutError"/>
+ <classDef id="flash.errors.IllegalOperationError"/>
+ <classDef id="flash.errors.MemoryError"/>
+ <classDef id="flash.errors.IOError"/>
+ <classDef id="flash.errors.StackOverflowError"/>
+ <classDef id="flash.errors.InvalidSWFError"/>
+ <classDef id="flash.errors.ScriptTimeoutError"/>
+ <classDef id="flash.errors.IllegalOperationError"/>
+ <classDef id="flash.errors.MemoryError"/>
+ <classDef id="flash.errors.EOFError"/>
+ <classDef id="flash.events.HTTPStatusEvent"/>
+ <classDef id="flash.events.HTTPStatusEvent"/>
+ <classDef id="flash.events.ContextMenuEvent"/>
+ <classDef id="flash.events.ContextMenuEvent"/>
+ <classDef id="flash.events.IMEEvent"/>
+ <classDef id="flash.events.IMEEvent"/>
+ <classDef id="flash.events.TextEvent"/>
+ <classDef id="flash.events.TextEvent"/>
+ <classDef id="flash.events.FullScreenEvent"/>
+ <classDef id="flash.events.FullScreenEvent"/>
+ <classDef id="flash.utils.IDataInput"/>
+ <classDef id="flash.utils.IDataInput"/>
+ <classDef id="flash.utils.IDataOutput"/>
+ <classDef id="flash.utils.IDataOutput"/>
+ <classDef id="flash.events.ErrorEvent"/>
+ <classDef id="flash.events.ErrorEvent"/>
+ <classDef id="flash.events.ActivityEvent"/>
+ <classDef id="flash.events.ActivityEvent"/>
+ <classDef id="flash.filters.BitmapFilter"/>
+ <classDef id="flash.filters.BitmapFilter"/>
+ <classDef id="flash.system.LoaderContext"/>
+ <classDef id="flash.system.LoaderContext"/>
+ <classDef id="flash.net.URLRequest"/>
+ <classDef id="flash.net.URLRequest"/>
+ <classDef id="flash.system.SecurityDomain"/>
+ <classDef id="flash.system.SecurityDomain"/>
+ <classDef id="flash.utils.Timer"/>
+ <classDef id="flash.utils.Timer"/>
+ <classDef id="flash.events.TimerEvent"/>
+ <classDef id="flash.events.TimerEvent"/>
+ <classDef id="fl.managers.IFocusManager"/>
+ <classDef id="fl.managers.IFocusManagerComponent"/>
+ <classDef id="fl.core.InvalidationType"/>
+ <classDef id="fl.managers.StyleManager"/>
+ <classDef id="fl.controls.ProgressBarMode"/>
+ <classDef id="fl.controls.ProgressBarDirection"/>
+ <classDef id="fl.managers.IFocusManagerGroup"/>
+ <classDef id="fl.controls.ButtonLabelPlacement"/>
+ <classDef id="fl.events.ComponentEvent"/>
+ <classDef id="fl.managers.FocusManager"/>
+ <classDef id="fl.core.UIComponent"/>
+ <classDef id="fl.controls.ProgressBar"/>
+ <classDef id="fl.controls.progressBarClasses.IndeterminateBar"/>
+ <classDef id="fl.controls.BaseButton"/>
+ <classDef id="fl.controls.LabelButton"/>
+ <classDef id="fl.controls.Button"/>
+</classDefs>
+<class id="fl.controls.ProgressBar" >
+ <Style name="barPadding" type="Number" format="Length" />
+ <Style name="indeterminateBar" type="Class" />
+ <Style name="indeterminateSkin" type="Class" />
+ <Style name="barSkin" type="Class" />
+ <Style name="trackSkin" type="Class" />
+ <Style name="icon" type="Class" />
+ <Event param1="progress" type="flash.events.ProgressEvent" />
+ <Event param1="complete" type="flash.events.Event" />
+ <__go_to_ctor_definition_help file="c:\devsrc\flashfarm\authortool\windbgnoelicensing\Common\Configuration\Component Source\ActionScript 3.0\User Interface\fl\controls\ProgressBar.as" pos="7922" />
+ <Style name="disabledTextFormat" type="flash.text.TextFormat" />
+ <Style name="textFormat" type="flash.text.TextFormat" />
+ <Style name="focusRectPadding" type="Number" format="Length" />
+ <Style name="focusRectSkin" type="Class" />
+ <Event name="hide" type="fl.events.ComponentEvent" />
+ <Event name="show" type="fl.events.ComponentEvent" />
+ <Event name="resize" type="fl.events.ComponentEvent" />
+ <Event name="move" type="fl.events.ComponentEvent" />
+ <__go_to_ctor_definition_help file="C:\devsrc\flashfarm\authortool\windbgnoelicensing\Common\Configuration\Component Source\ActionScript 3.0\User Interface\fl\core\UIComponent.as" pos="14978" />
+ <Event name="tabIndexChange" type="flash.events.Event" />
+ <Event name="tabEnabledChange" type="flash.events.Event" />
+ <Event name="tabChildrenChange" type="flash.events.Event" />
+ <Event name="keyUp" type="flash.events.KeyboardEvent" />
+ <Event name="keyDown" type="flash.events.KeyboardEvent" />
+ <Event name="rollOver" type="flash.events.MouseEvent" />
+ <Event name="rollOut" type="flash.events.MouseEvent" />
+ <Event name="mouseWheel" type="flash.events.MouseEvent" />
+ <Event name="mouseUp" type="flash.events.MouseEvent" />
+ <Event name="mouseOver" type="flash.events.MouseEvent" />
+ <Event name="mouseOut" type="flash.events.MouseEvent" />
+ <Event name="mouseMove" type="flash.events.MouseEvent" />
+ <Event name="mouseDown" type="flash.events.MouseEvent" />
+ <Event name="doubleClick" type="flash.events.MouseEvent" />
+ <Event name="click" type="flash.events.MouseEvent" />
+ <Event name="mouseFocusChange" type="flash.events.FocusEvent" />
+ <Event name="keyFocusChange" type="flash.events.FocusEvent" />
+ <Event name="focusOut" type="flash.events.FocusEvent" />
+ <Event name="focusIn" type="flash.events.FocusEvent" />
+ <Event name="render" type="flash.events.Event" />
+ <Event name="removedFromStage" type="flash.events.Event" />
+ <Event name="removed" type="flash.events.Event" />
+ <Event name="enterFrame" type="flash.events.Event" />
+ <Event name="addedToStage" type="flash.events.Event" />
+ <Event name="added" type="flash.events.Event" />
+ <Event name="deactivate" type="flash.events.Event" />
+ <Event name="activate" type="flash.events.Event" />
+ <method id="direction" returnType="String" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="right" type="list" enumeration="right,left" />
+ </method>
+ <method id="indeterminate" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="minimum" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="maximum" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="value" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="source" returnType="Object" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="percentComplete" returnType="Number" isProperty="true" permissions="readonly">
+ </method>
+ <method id="mode" returnType="String" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="event" type="list" enumeration="event,polled,manual" />
+ </method>
+ <method id="sourceName" returnType="String" isProperty="true" permissions="writeonly">
+ <Inspectable name="source" type="String" />
+ </method>
+ <method id="componentInspectorSetting" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="enabled" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="true" verbose="1" />
+ </method>
+ <method id="width" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="height" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="x" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="y" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="scaleX" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="scaleY" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="visible" returnType="Boolean" isProperty="true" permissions="readwrite">
+ <Inspectable defaultValue="true" verbose="1" />
+ </method>
+ <method id="focusEnabled" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="mouseFocusEnabled" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="focusManager" returnType="IFocusManager" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="version" returnType="String" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="focusTarget" returnType="IFocusManagerComponent" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="graphics" returnType="Graphics" isProperty="true" permissions="readonly">
+ </method>
+ <method id="buttonMode" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="dropTarget" returnType="DisplayObject" isProperty="true" permissions="readonly">
+ </method>
+ <method id="hitArea" returnType="Sprite" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="useHandCursor" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="soundTransform" returnType="SoundTransform" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="numChildren" returnType="int" isProperty="true" permissions="readonly">
+ </method>
+ <method id="textSnapshot" returnType="TextSnapshot" isProperty="true" permissions="readonly">
+ </method>
+ <method id="tabChildren" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="mouseChildren" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="tabEnabled" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="tabIndex" returnType="int" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="focusRect" returnType="Object" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="mouseEnabled" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="doubleClickEnabled" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="contextMenu" returnType="ContextMenu" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="accessibilityImplementation" returnType="AccessibilityImplementation" isProperty="true" permissions="readwrite">
+ <Inspectable environment="none" />
+ </method>
+ <method id="root" returnType="DisplayObject" isProperty="true" permissions="readonly">
+ </method>
+ <method id="stage" returnType="Stage" isProperty="true" permissions="readonly">
+ </method>
+ <method id="name" returnType="String" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="parent" returnType="DisplayObjectContainer" isProperty="true" permissions="readonly">
+ </method>
+ <method id="mask" returnType="DisplayObject" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="mouseX" returnType="Number" isProperty="true" permissions="readonly">
+ </method>
+ <method id="mouseY" returnType="Number" isProperty="true" permissions="readonly">
+ </method>
+ <method id="rotation" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="alpha" returnType="Number" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="cacheAsBitmap" returnType="Boolean" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="opaqueBackground" returnType="Object" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="scrollRect" returnType="Rectangle" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="filters" returnType="Array" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="blendMode" returnType="String" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="transform" returnType="Transform" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="scale9Grid" returnType="Rectangle" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="loaderInfo" returnType="LoaderInfo" isProperty="true" permissions="readonly">
+ </method>
+ <method id="accessibilityProperties" returnType="AccessibilityProperties" isProperty="true" permissions="readwrite">
+ </method>
+ <method id="setProgress" returnType="void" isProperty="false">
+ </method>
+ <method id="reset" returnType="void" isProperty="false">
+ </method>
+ <method id="ProgressBar" isConstructor="true" isProperty="false">
+ </method>
+ <method id="setSize" returnType="void" isProperty="false">
+ </method>
+ <method id="setStyle" returnType="void" isProperty="false">
+ </method>
+ <method id="clearStyle" returnType="void" isProperty="false">
+ </method>
+ <method id="getStyle" returnType="Object" isProperty="false">
+ </method>
+ <method id="move" returnType="void" isProperty="false">
+ </method>
+ <method id="validateNow" returnType="void" isProperty="false">
+ </method>
+ <method id="invalidate" returnType="void" isProperty="false">
+ </method>
+ <method id="setSharedStyle" returnType="void" isProperty="false">
+ </method>
+ <method id="drawFocus" returnType="void" isProperty="false">
+ </method>
+ <method id="setFocus" returnType="void" isProperty="false">
+ </method>
+ <method id="getFocus" returnType="InteractiveObject" isProperty="false">
+ </method>
+ <method id="drawNow" returnType="void" isProperty="false">
+ </method>
+ <method id="UIComponent" isConstructor="true" isProperty="false">
+ </method>
+ <method id="startDrag" returnType="void" isProperty="false">
+ </method>
+ <method id="stopDrag" returnType="void" isProperty="false">
+ </method>
+ <method id="Sprite" isConstructor="true" isProperty="false">
+ </method>
+ <method id="addChild" returnType="DisplayObject" isProperty="false">
+ </method>
+ <method id="addChildAt" returnType="DisplayObject" isProperty="false">
+ </method>
+ <method id="removeChild" returnType="DisplayObject" isProperty="false">
+ </method>
+ <method id="removeChildAt" returnType="DisplayObject" isProperty="false">
+ </method>
+ <method id="getChildIndex" returnType="int" isProperty="false">
+ </method>
+ <method id="setChildIndex" returnType="void" isProperty="false">
+ </method>
+ <method id="getChildAt" returnType="DisplayObject" isProperty="false">
+ </method>
+ <method id="getChildByName" returnType="DisplayObject" isProperty="false">
+ </method>
+ <method id="getObjectsUnderPoint" returnType="Array" isProperty="false">
+ </method>
+ <method id="areInaccessibleObjectsUnderPoint" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="contains" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="swapChildrenAt" returnType="void" isProperty="false">
+ </method>
+ <method id="swapChildren" returnType="void" isProperty="false">
+ </method>
+ <method id="DisplayObjectContainer" isConstructor="true" isProperty="false">
+ </method>
+ <method id="InteractiveObject" isConstructor="true" isProperty="false">
+ </method>
+ <method id="globalToLocal" returnType="Point" isProperty="false">
+ </method>
+ <method id="localToGlobal" returnType="Point" isProperty="false">
+ </method>
+ <method id="getBounds" returnType="Rectangle" isProperty="false">
+ </method>
+ <method id="getRect" returnType="Rectangle" isProperty="false">
+ </method>
+ <method id="hitTestObject" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="hitTestPoint" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="DisplayObject" isConstructor="true" isProperty="false">
+ </method>
+ <method id="toString" returnType="String" isProperty="false">
+ </method>
+ <method id="addEventListener" returnType="void" isProperty="false">
+ </method>
+ <method id="removeEventListener" returnType="void" isProperty="false">
+ </method>
+ <method id="dispatchEvent" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="hasEventListener" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="willTrigger" returnType="Boolean" isProperty="false">
+ </method>
+ <method id="EventDispatcher" isConstructor="true" isProperty="false">
+ </method>
+ <method id="Object" isConstructor="true" isProperty="false">
+ </method>
+</class>]]></classProperties>
+ <customIcon>
+ <CustomIcon rowByteCount="72" colorDepth="32" width="18" height="18" frameRight="270" frameBottom="270" isTransparent="true" href="haexpx0luj.dat"/>
+ </customIcon>
+</DOMComponentItem>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/player_bab_ldt/META-INF/metadata.xml Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,55 @@
+<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
+<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00 ">
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+ <rdf:Description rdf:about=""
+ xmlns:xmp="http://ns.adobe.com/xap/1.0/">
+ <xmp:CreatorTool>Adobe Flash Professional CS5</xmp:CreatorTool>
+ <xmp:CreateDate>2012-05-09T11:11:28+02:00</xmp:CreateDate>
+ <xmp:MetadataDate>2012-05-09T11:12:56+02:00</xmp:MetadataDate>
+ <xmp:ModifyDate>2012-05-09T11:12:56+02:00</xmp:ModifyDate>
+ </rdf:Description>
+ <rdf:Description rdf:about=""
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <dc:format>application/vnd.adobe.fla</dc:format>
+ </rdf:Description>
+ <rdf:Description rdf:about=""
+ xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
+ xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#">
+ <xmpMM:InstanceID>xmp.iid:F77F1174072068118C14885890149FB7</xmpMM:InstanceID>
+ <xmpMM:DocumentID>xmp.did:F77F1174072068118C14885890149FB7</xmpMM:DocumentID>
+ <xmpMM:OriginalDocumentID>xmp.did:F77F1174072068118C14885890149FB7</xmpMM:OriginalDocumentID>
+ <xmpMM:History>
+ <rdf:Seq>
+ <rdf:li rdf:parseType="Resource">
+ <stEvt:action>created</stEvt:action>
+ <stEvt:instanceID>xmp.iid:F77F1174072068118C14885890149FB7</stEvt:instanceID>
+ <stEvt:when>2012-05-09T11:11:28+02:00</stEvt:when>
+ <stEvt:softwareAgent>Adobe Flash Professional CS5</stEvt:softwareAgent>
+ </rdf:li>
+ </rdf:Seq>
+ </xmpMM:History>
+ </rdf:Description>
+ </rdf:RDF>
+</x:xmpmeta>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<?xpacket end="w"?>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/player_bab_ldt/PublishSettings.xml Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,202 @@
+<flash_profiles>
+<flash_profile version="1.0" name="Défaut" current="true">
+ <PublishFormatProperties enabled="true">
+ <defaultNames>1</defaultNames>
+ <flash>1</flash>
+ <projectorWin>0</projectorWin>
+ <projectorMac>0</projectorMac>
+ <html>1</html>
+ <gif>0</gif>
+ <jpeg>0</jpeg>
+ <png>0</png>
+ <qt>0</qt>
+ <rnwk>0</rnwk>
+ <flashDefaultName>1</flashDefaultName>
+ <projectorWinDefaultName>1</projectorWinDefaultName>
+ <projectorMacDefaultName>1</projectorMacDefaultName>
+ <htmlDefaultName>1</htmlDefaultName>
+ <gifDefaultName>1</gifDefaultName>
+ <jpegDefaultName>1</jpegDefaultName>
+ <pngDefaultName>1</pngDefaultName>
+ <qtDefaultName>1</qtDefaultName>
+ <rnwkDefaultName>1</rnwkDefaultName>
+ <flashFileName>player_bab_ldt.swf</flashFileName>
+ <projectorWinFileName>player_bab_ldt.exe</projectorWinFileName>
+ <projectorMacFileName>player_bab_ldt.app</projectorMacFileName>
+ <htmlFileName>player_bab_ldt.html</htmlFileName>
+ <gifFileName>player_bab_ldt.gif</gifFileName>
+ <jpegFileName>player_bab_ldt.jpg</jpegFileName>
+ <pngFileName>player_bab_ldt.png</pngFileName>
+ <qtFileName>player_bab_ldt.mov</qtFileName>
+ <rnwkFileName>player_bab_ldt.smil</rnwkFileName>
+ </PublishFormatProperties>
+ <PublishHtmlProperties enabled="true">
+ <VersionDetectionIfAvailable>0</VersionDetectionIfAvailable>
+ <VersionInfo>10,1,52,0;9,0,124,0;8,0,24,0;7,0,14,0;6,0,79,0;5,0,58,0;4,0,32,0;3,0,8,0;2,0,1,12;1,0,0,1;</VersionInfo>
+ <UsingDefaultContentFilename>1</UsingDefaultContentFilename>
+ <UsingDefaultAlternateFilename>1</UsingDefaultAlternateFilename>
+ <ContentFilename>player_bab_ldt.xfl_content.html</ContentFilename>
+ <AlternateFilename>player_bab_ldt.xfl_alternate.html</AlternateFilename>
+ <UsingOwnAlternateFile>0</UsingOwnAlternateFile>
+ <OwnAlternateFilename></OwnAlternateFilename>
+ <Width>550</Width>
+ <Height>400</Height>
+ <Align>0</Align>
+ <Units>0</Units>
+ <Loop>1</Loop>
+ <StartPaused>0</StartPaused>
+ <Scale>0</Scale>
+ <HorizontalAlignment>1</HorizontalAlignment>
+ <VerticalAlignment>1</VerticalAlignment>
+ <Quality>4</Quality>
+ <DeblockingFilter>0</DeblockingFilter>
+ <WindowMode>0</WindowMode>
+ <DisplayMenu>1</DisplayMenu>
+ <DeviceFont>0</DeviceFont>
+ <TemplateFileName>/Users/tc/Library/Application Support/Adobe/Flash CS5/fr_FR/Configuration/HTML/Default.html</TemplateFileName>
+ <showTagWarnMsg>1</showTagWarnMsg>
+ </PublishHtmlProperties>
+ <PublishFlashProperties enabled="true">
+ <TopDown></TopDown>
+ <FireFox></FireFox>
+ <Report>0</Report>
+ <Protect>0</Protect>
+ <OmitTraceActions>0</OmitTraceActions>
+ <Quality>80</Quality>
+ <DeblockingFilter>0</DeblockingFilter>
+ <StreamFormat>0</StreamFormat>
+ <StreamCompress>7</StreamCompress>
+ <EventFormat>0</EventFormat>
+ <EventCompress>7</EventCompress>
+ <OverrideSounds>0</OverrideSounds>
+ <Version>10</Version>
+ <ExternalPlayer>FlashPlayer10</ExternalPlayer>
+ <ActionScriptVersion>3</ActionScriptVersion>
+ <PackageExportFrame>1</PackageExportFrame>
+ <PackagePaths></PackagePaths>
+ <AS3PackagePaths>.</AS3PackagePaths>
+ <AS3ConfigConst>CONFIG::FLASH_AUTHORING="true";</AS3ConfigConst>
+ <DebuggingPermitted>0</DebuggingPermitted>
+ <DebuggingPassword></DebuggingPassword>
+ <CompressMovie>1</CompressMovie>
+ <InvisibleLayer>1</InvisibleLayer>
+ <DeviceSound>0</DeviceSound>
+ <StreamUse8kSampleRate>0</StreamUse8kSampleRate>
+ <EventUse8kSampleRate>0</EventUse8kSampleRate>
+ <UseNetwork>0</UseNetwork>
+ <DocumentClass>player_bab_ldt</DocumentClass>
+ <AS3Strict>2</AS3Strict>
+ <AS3Coach>4</AS3Coach>
+ <AS3AutoDeclare>4096</AS3AutoDeclare>
+ <AS3Dialect>AS3</AS3Dialect>
+ <AS3ExportFrame>1</AS3ExportFrame>
+ <AS3Optimize>1</AS3Optimize>
+ <ExportSwc>0</ExportSwc>
+ <ScriptStuckDelay>15</ScriptStuckDelay>
+ <IncludeXMP>1</IncludeXMP>
+ <HardwareAcceleration>0</HardwareAcceleration>
+ <AS3Flags>4102</AS3Flags>
+ <DefaultLibraryLinkage>rsl</DefaultLibraryLinkage>
+ <RSLPreloaderMethod>wrap</RSLPreloaderMethod>
+ <RSLPreloaderSWF>$(AppConfig)/ActionScript 3.0/rsls/loader_animation.swf</RSLPreloaderSWF>
+ <LibraryPath>
+ <library-path-entry>
+ <swc-path>$(AppConfig)/ActionScript 3.0/libs</swc-path>
+ <linkage>merge</linkage>
+ </library-path-entry>
+ <library-path-entry>
+ <swc-path>$(AppConfig)/ActionScript 3.0/libs/11.0/textLayout.swc</swc-path>
+ <linkage usesDefault="true">rsl</linkage>
+ <rsl-url>http://fpdownload.adobe.com/pub/swz/tlf/1.0.0.595/textLayout_1.0.0.595.swz</rsl-url>
+ <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
+ <rsl-url>textLayout_1.0.0.595.swz</rsl-url>
+ </library-path-entry>
+ </LibraryPath>
+ <LibraryVersions>
+ <library-version>
+ <swc-path>$(AppConfig)/ActionScript 3.0/libs/11.0/textLayout.swc</swc-path>
+ <feature name="tlfText" majorVersion="1" minorVersion="0" build="595"/>
+ <rsl-url>http://fpdownload.adobe.com/pub/swz/tlf/1.0.0.595/textLayout_1.0.0.595.swz</rsl-url>
+ <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
+ <rsl-url>textLayout_1.0.0.595.swz</rsl-url>
+ </library-version>
+ </LibraryVersions>
+ </PublishFlashProperties>
+ <PublishJpegProperties enabled="true">
+ <Width>550</Width>
+ <Height>400</Height>
+ <Progressive>0</Progressive>
+ <DPI>4718592</DPI>
+ <Size>0</Size>
+ <Quality>80</Quality>
+ <MatchMovieDim>1</MatchMovieDim>
+ </PublishJpegProperties>
+ <PublishRNWKProperties enabled="true">
+ <exportFlash>1</exportFlash>
+ <flashBitRate>0</flashBitRate>
+ <exportAudio>1</exportAudio>
+ <audioFormat>0</audioFormat>
+ <singleRateAudio>0</singleRateAudio>
+ <realVideoRate>100000</realVideoRate>
+ <speed28K>1</speed28K>
+ <speed56K>1</speed56K>
+ <speedSingleISDN>0</speedSingleISDN>
+ <speedDualISDN>0</speedDualISDN>
+ <speedCorporateLAN>0</speedCorporateLAN>
+ <speed256K>0</speed256K>
+ <speed384K>0</speed384K>
+ <speed512K>0</speed512K>
+ <exportSMIL>1</exportSMIL>
+ </PublishRNWKProperties>
+ <PublishGifProperties enabled="true">
+ <Width>550</Width>
+ <Height>400</Height>
+ <Animated>0</Animated>
+ <MatchMovieDim>1</MatchMovieDim>
+ <Loop>1</Loop>
+ <LoopCount></LoopCount>
+ <OptimizeColors>1</OptimizeColors>
+ <Interlace>0</Interlace>
+ <Smooth>1</Smooth>
+ <DitherSolids>0</DitherSolids>
+ <RemoveGradients>0</RemoveGradients>
+ <TransparentOption></TransparentOption>
+ <TransparentAlpha>128</TransparentAlpha>
+ <DitherOption></DitherOption>
+ <PaletteOption></PaletteOption>
+ <MaxColors>255</MaxColors>
+ <PaletteName></PaletteName>
+ </PublishGifProperties>
+ <PublishPNGProperties enabled="true">
+ <Width>550</Width>
+ <Height>400</Height>
+ <OptimizeColors>1</OptimizeColors>
+ <Interlace>0</Interlace>
+ <Transparent>0</Transparent>
+ <Smooth>1</Smooth>
+ <DitherSolids>0</DitherSolids>
+ <RemoveGradients>0</RemoveGradients>
+ <MatchMovieDim>1</MatchMovieDim>
+ <DitherOption></DitherOption>
+ <FilterOption></FilterOption>
+ <PaletteOption></PaletteOption>
+ <BitDepth>24 bits avec Alpha</BitDepth>
+ <MaxColors>255</MaxColors>
+ <PaletteName></PaletteName>
+ </PublishPNGProperties>
+ <PublishQTProperties enabled="true">
+ <Width>550</Width>
+ <Height>400</Height>
+ <MatchMovieDim>1</MatchMovieDim>
+ <UseQTSoundCompression>0</UseQTSoundCompression>
+ <AlphaOption></AlphaOption>
+ <LayerOption></LayerOption>
+ <QTSndSettings>00000000</QTSndSettings>
+ <ControllerOption>0</ControllerOption>
+ <Looping>0</Looping>
+ <PausedAtStart>0</PausedAtStart>
+ <PlayEveryFrame>0</PlayEveryFrame>
+ <Flatten>1</Flatten>
+ </PublishQTProperties>
+</flash_profile>
+</flash_profiles>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/player_bab_ldt/player_bab_ldt/player_bab_ldt.xfl Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,1 @@
+PROXY-CS5
\ No newline at end of file
Binary file test/integration/fichiers_bab/SkinBoutABout.swf has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test/integration/fichiers_bab/yeelen_bab.ldt Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,6341 @@
+<?xml version='1.0' encoding='utf-8'?>
+<iri xmlns:dc="http://dublincore.org/documents/dcmi-namespace/" ldtversion="1.6.3">
+ <project id="b02d1eb0-daab-11df-a7b7-00145ea4a2be" user="Atelier destiné aux enseignants d'option cinéma en lycée" title="Yeelen, S. CIssé, Atelier de l'Académie de Poitiers" abstract="<p>Pour accéder aux annotations et pistes pédagogiques élaborées durant l'atelier, consulter les vues.</p>"/>
+ <medias>
+ <media extra="" id="souleymanecisse_yeelen" pict="" src="http://amateur.iri.centrepompidou.fr//atelier/static/media/ldt/souleymanecisse_yeelen/souleymanecisse_yeelen.iri" video="rtmp://media.iri.centrepompidou.fr/ddc_player/video/regardssignes/"/>
+ </medias>
+ <annotations>
+ <content id="souleymanecisse_yeelen">
+ <ensemble id="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" idProject="1" title="Découpages personnels" author="undefined" abstract="">
+ <decoupage id="c_DD0166A8-F7EC-EDD4-1744-7BA0F642EA14" author="perso">
+ <title>Position caméra</title>
+ <abstract/>
+ <elements>
+ <element id="s_0785DDBC-AA91-62B1-F567-7BA2547D803F" begin="1579360" dur="19440" author="IRI" date="2010-10-05T11:04:41" color="10053171" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/132_in.jpg">
+ <title>plan 132</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>sol</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_3461D7CB-F1D7-FA0E-1AE3-7BA11DE012EC" begin="1671360" dur="9160" author="IRI" date="2010-10-05T11:04:45" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/151_in.jpg">
+ <title>plan 151</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>sol</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4E953B2B-1042-E00D-9B11-7BA5C9B66416" begin="1680520" dur="8800" author="IRI" date="2010-10-05T11:08:10" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/152_in.jpg">
+ <title>plan 152</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_94E340AF-96A0-F1CE-E215-A4EB34EB9E92" author="perso">
+ <title>Sons</title>
+ <abstract/>
+ <elements>
+ <element id="s_E8844D2C-2EB5-6792-D061-A4F9C3833250" begin="103080" dur="13904" author="IRI" date="2010-10-13T11:46:19" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/5_in.jpg">
+ <title>plan 5</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>cris</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1142FCC6-0A11-5450-083E-A4FAA7700829" begin="122800" dur="117825" author="IRI" date="2010-10-14T10:59:41" color="3381555" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/8_in.jpg">
+ <title>plan 8</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>chants</tag>
+ <tag>jour</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_9BFD58F8-B11F-36BE-E8A2-A4FB46CD89E3" begin="247320" dur="18200" author="IRI" date="2010-10-13T11:46:48" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/13_in.jpg">
+ <title>plan 13</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>crépitement</tag>
+ <tag>jour</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_79BDA716-2A05-9194-3F39-A4FC2219EEAA" begin="265520" dur="32040" author="IRI" date="2010-10-13T11:46:54" color="10040064" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/14_in.jpg">
+ <title>plan 14</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>chants</tag>
+ <tag>jour</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_53D99079-2F99-4369-A4FD-AA7ED60B81CB" begin="821120" dur="23640" author="IRI" date="2010-10-14T13:27:40" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/50_in.jpg">
+ <title>plan 50</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_D631B9F4-43E7-2F55-8736-AA7EAE07784A" begin="909880" dur="54680" author="IRI" date="2010-10-14T13:28:57" color="16776960" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/56_in.jpg">
+ <title>plan 56</title>
+ <abstract>panoramique</abstract>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_5F782B2A-AA79-585B-0182-AA7F031FFB37" begin="1214640" dur="128685" author="IRI" date="2010-10-14T13:27:52" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/96_in.jpg">
+ <title>plan 96</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_A71649E9-D353-B641-53B9-AA7F4A152DD5" begin="1401720" dur="11160" author="IRI" date="2010-10-14T13:28:10" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/108_in.jpg">
+ <title>plan 108</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_2C165F31-A0B3-1D50-7AE4-AA7F40BE6D98" begin="1510000" dur="24280" author="IRI" date="2010-10-14T13:28:10" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/123_in.jpg">
+ <title>plan 123</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_A5C0A9D8-885D-682A-3DA3-AA7F38717312" begin="1628640" dur="37135" author="IRI" date="2010-10-14T13:28:07" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/139_in.jpg">
+ <title>plan 139</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_B191ED2C-37A7-D9E6-06F8-AA7F2FE1E754" begin="1667920" dur="50778" author="IRI" date="2010-10-14T13:28:05" color="10053171" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/150_in.jpg">
+ <title>plan 150</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_A792525C-1798-349F-E33E-AA7F27C6A318" begin="2111520" dur="28057" author="IRI" date="2010-10-14T13:28:03" color="10053171" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/196_in.jpg">
+ <title>plan 196</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_EBCD5649-20D4-84C3-C16F-AA85461F86CB" begin="2467960" dur="82498" author="IRI" date="2010-10-14T13:35:01" color="13369446" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/208_in.jpg">
+ <title>plan 208</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_7BC476BC-03A2-68D2-E8E3-AA7F59952784" begin="3138800" dur="75968" author="IRI" date="2010-10-14T13:28:14" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/252_in.jpg">
+ <title>plan 252</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>jour</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_DB09848C-EBCB-445B-726E-AA8663A3C08D" begin="3378600" dur="42320" author="IRI" date="2010-10-14T13:36:48" color="102" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/269_in.jpg">
+ <title>plan 269</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_A789FC4C-0396-E2E1-9769-AA7F7491F013" begin="3420960" dur="226950" author="IRI" date="2010-10-14T13:28:35" color="13434624" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/271_in.jpg">
+ <title>plan 271</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>jour</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_420BA15D-C0D3-51B3-8C89-AA8034D2E974" begin="4050200" dur="148672" author="IRI" date="2010-10-14T13:29:10" color="204" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/301_in.jpg">
+ <title>plan 301</title>
+ <abstract>Bleu, mouvement de caméra</abstract>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8228398F-56B7-2B80-1000-AA803FA668AF" begin="4340640" dur="30160" author="IRI" date="2010-10-14T13:29:13" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/314_in.jpg">
+ <title>plan 314</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_2DDBC42A-AD0D-C942-5E42-AA87DA47FC4D" begin="4624040" dur="32880" author="IRI" date="2010-10-14T13:37:42" color="10040217" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/325_in.jpg">
+ <title>plan 325</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_1A29BDB5-ED47-5EEA-B9B5-AA8210C6F7D5" begin="4815360" dur="44169" author="IRI" date="2010-10-14T13:31:12" color="65535" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/329_in.jpg">
+ <title>plan 329</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_6F702608-9C48-1B1D-FED6-AA82357CD681" begin="5029080" dur="60148" author="IRI" date="2010-10-14T13:31:21" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/346_in.jpg">
+ <title>plan 346</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_2EF32A35-C6C8-ED9D-F357-AA8278CF4E5D" begin="5370120" dur="49735" author="IRI" date="2010-10-14T13:31:38" color="65535" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/380_in.jpg">
+ <title>plan 380</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_21428FA7-B22E-1696-F6DD-A4EDB850B7EB" begin="5719506" dur="116341" author="IRI" date="2010-10-13T11:31:21" color="3342336" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/398_in.jpg">
+ <title>plan 398</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>jour</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_BE0BDCD5-A83B-B018-89D1-A4EDFBC3A4FA" begin="5726375" dur="0" author="" date="2010-10-13T11:31:43" color="16737843" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_92DE65AD-2138-258B-0C19-A4EE53F9BD08" begin="5745396" dur="0" author="" date="2010-10-13T11:32:07" color="16737843" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_EE703222-C9DF-F505-697E-A4EEB1A27D90" begin="5769350" dur="0" author="" date="2010-10-13T11:32:28" color="16737843" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7D004C8E-B02F-10D6-A331-A4EF01CEE118" begin="5789840" dur="0" author="" date="2010-10-13T11:32:43" color="16737843" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_33B0A8DD-54DD-7975-59E0-A4EF3B03088A" begin="5804440" dur="0" author="" date="2010-10-13T11:33:06" color="16737843" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_FC282D36-57CF-189D-4B04-A4EF950ACC7E" begin="5827519" dur="0" author="" date="2010-10-13T11:33:12" color="16737843" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_0F80EF6C-A59E-3365-42C7-7BA30131568C" author="perso">
+ <title>narration</title>
+ <abstract/>
+ <elements>
+ <element id="s_DC6F4E0F-2572-8F43-9604-7BA34B8F3899" begin="1214640" dur="127994" author="IRI" date="2010-10-05T11:06:12" color="26112" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/96_in.jpg">
+ <title>plan 96</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>purification</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D723DD57-F18B-7D0C-6E5F-7BA413C144C1" begin="1342680" dur="344884" author="IRI" date="2010-10-05T11:15:05" color="13369344" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/101_in.jpg">
+ <title>plan 101</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>combat</tag>
+ <tag>mort</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_FABBB250-5825-6E70-A05A-7B9D1BB90723" author="perso">
+ <title>terre</title>
+ <abstract/>
+ <elements>
+ <element id="s_CF72B74A-121D-8660-F0D7-A0D3CF50DA9B" begin="87480" dur="15600" author="IRI" date="2010-10-12T16:25:16" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/4_in.jpg">
+ <title>plan 4</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_6EAC0005-37D2-2278-6A3C-A0D43C946152" begin="110040" dur="12720" author="IRI" date="2010-10-12T16:26:04" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/6_in.jpg">
+ <title>plan 6</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_F9A844BA-79C1-2A0E-D5CA-A0D5A12C4CD0" begin="122800" dur="40320" author="IRI" date="2010-10-13T11:40:22" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/8_in.jpg">
+ <title>plan 8</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>jour</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_FCB2BE3A-9814-99A1-B9F7-A0D5E52EA0A7" begin="197520" dur="49800" author="IRI" date="2010-10-12T16:29:19" color="10040064" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/12_in.jpg">
+ <title>plan 12</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_A76D11EB-4964-7DF6-EDCE-A0D6CC3D2E09" begin="265520" dur="32040" author="IRI" date="2010-10-13T11:46:36" color="10040064" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/14_in.jpg">
+ <title>plan 14</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>jour</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_986A38DC-1A6B-7235-8CC1-A0D825EF8095" begin="656120" dur="237541" author="IRI" date="2010-10-12T16:30:14" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/35_in.jpg">
+ <title>plan 35</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_DDAA2DC2-EFF6-1FCF-631E-A0D9ADB56F62" begin="909880" dur="42040" author="IRI" date="2010-10-12T16:32:37" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/56_in.jpg">
+ <title>plan 56</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_FFBA0452-4446-8AA9-6D2B-A0DB3D742FC2" begin="1002160" dur="210652" author="IRI" date="2010-10-12T16:33:10" color="10040064" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/66_in.jpg">
+ <title>plan 66</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_824D0178-2EEF-0698-9C85-7B9D3D4D3158" begin="1342680" dur="20440" author="IRI" date="2010-10-05T10:58:43" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/101_in.jpg">
+ <title>plan 101</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_0D0D0FDC-16E9-7C53-CFA1-7B9DA6B8B2F9" begin="1401720" dur="11160" author="IRI" date="2010-10-12T16:34:08" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/108_in.jpg">
+ <title>plan 108</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_EAC46F4C-AE8F-BCE8-F44F-7B9DB615C815" begin="1412920" dur="15120" author="IRI" date="2010-10-12T16:34:23" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/110_in.jpg">
+ <title>plan 110</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_B1B27173-3766-55EE-1891-7B9DC267C06C" begin="1428040" dur="67501" author="IRI" date="2010-10-12T16:34:28" color="10040064" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/111_in.jpg">
+ <title>plan 111</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_32D6C663-B34A-09CA-CCDA-7B9E56FF56C0" begin="1496120" dur="13840" author="IRI" date="2010-10-12T16:35:42" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/121_in.jpg">
+ <title>plan 121</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_78B9FA46-FF9F-818B-1212-7B9E5DDFB43E" begin="1510000" dur="24280" author="IRI" date="2010-10-12T16:35:29" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/123_in.jpg">
+ <title>plan 123</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_E1C1F3CD-BEA2-91F6-EF11-7B9E68E43F1D" begin="1534280" dur="16120" author="IRI" date="2010-10-12T16:35:38" color="10040064" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/124_in.jpg">
+ <title>plan 124</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_49046247-F5D6-7C66-5BFF-7B9E76EB4874" begin="1550400" dur="76579" author="IRI" date="2010-10-12T16:36:03" color="10040064" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/125_in.jpg">
+ <title>plan 125</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_B3377A0E-28EE-94C8-8AA6-7B9FE61B4B37" begin="1628640" dur="37135" author="IRI" date="2010-10-12T16:36:17" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/139_in.jpg">
+ <title>plan 139</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_52AF0906-AB29-2231-77DF-7BA0BD7818B0" begin="1667920" dur="50778" author="IRI" date="2010-10-12T16:36:28" color="10053171" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/150_in.jpg">
+ <title>plan 150</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_F1B3DB1B-A792-B8D5-AD25-A0E11F8B200A" begin="2013000" dur="44912" author="IRI" date="2010-10-12T16:39:00" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/178_in.jpg">
+ <title>plan 178</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_631140F5-B1E8-2659-86E2-A0E1B6691254" begin="2111520" dur="218934" author="IRI" date="2010-10-12T16:39:50" color="10053171" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/196_in.jpg">
+ <title>plan 196</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_37382E58-E0D5-8298-3A44-A0E5AD6B3D7A" begin="2602800" dur="107821" author="IRI" date="2010-10-12T16:44:40" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/220_in.jpg">
+ <title>plan 220</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_C040CA9A-C1CD-6E1F-E317-A4C8C6E79865" begin="3138800" dur="239771" author="IRI" date="2010-10-15T17:50:39" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/252_in.jpg">
+ <title>plan 252</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>jour</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5C04F25E-A143-C779-F595-A4CC16877E8C" begin="3378600" dur="42320" author="IRI" date="2010-10-13T11:49:40" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/269_in.jpg">
+ <title>plan 269</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>musique</tag>
+ <tag>nuit</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_2843AFEF-3FF0-632F-D949-A4CC65504E1F" begin="3420960" dur="621053" author="IRI" date="2010-10-13T11:01:09" color="10053171" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/271_in.jpg">
+ <title>plan 271</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>jour</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_AE667DD5-3795-2D83-9717-A4D264DABAAA" begin="4050200" dur="217349" author="IRI" date="2010-10-13T11:01:55" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/301_in.jpg">
+ <title>plan 301</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E46B7780-7538-BE8C-74AB-A4D973601D1B" begin="4919560" dur="9640" author="IRI" date="2010-10-13T11:09:02" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/337_in.jpg">
+ <title>plan 337</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1F20126B-E643-4A8D-4637-A4DB70DBC681" begin="5029080" dur="16360" author="IRI" date="2010-10-13T11:11:33" color="10040064" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/346_in.jpg">
+ <title>plan 346</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_B8A927C8-A009-B2BE-E9DB-A4DBA43C63DD" begin="5045440" dur="42600" author="IRI" date="2010-10-13T11:12:29" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/347_in.jpg">
+ <title>plan 347</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_10168997-0B5D-E24D-FE03-A4DCB5A03266" begin="5088040" dur="14893" author="IRI" date="2010-10-13T11:12:48" color="10040064" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/348_in.jpg">
+ <title>plan 348</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_2F999339-3B08-9CE8-F5EF-A4DD10D82F29" begin="5105640" dur="12760" author="IRI" date="2010-10-13T11:13:36" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/350_in.jpg">
+ <title>plan 350</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_72B22BBA-0EAF-20F3-B055-A4DDBA6F0297" begin="5118400" dur="16000" author="IRI" date="2010-10-13T11:13:43" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/351_in.jpg">
+ <title>plan 351</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7186B45A-0A51-58A6-2D58-A4DDE416C5CF" begin="5134440" dur="233506" author="IRI" date="2010-10-13T11:20:38" color="10053171" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/353_in.jpg">
+ <title>plan 353</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_38BCF771-A560-A5D1-2175-A4DE3CCD0E07" begin="5142472" dur="0" author="" date="2010-10-13T11:14:35" color="3381555" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_8E47AA52-2C23-53AD-C039-A4E3F95163CA" begin="5370120" dur="30320" author="IRI" date="2010-10-13T11:20:34" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/380_in.jpg">
+ <title>plan 380</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>jour</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_31640EAF-EF0B-50FA-9D97-A4E5D53FFA87" begin="5400440" dur="19200" author="IRI" date="2010-10-13T11:22:37" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/381_in.jpg">
+ <title>plan 381</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_F6769B7E-D815-948E-FDFC-A0F54C479BDD" begin="5655537" dur="221323" author="IRI" date="2010-10-12T17:01:33" color="10040064" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/400_in.jpg">
+ <title>plan 400</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>jour</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_99EFB2EA-237D-90EE-26B8-67882BC6636F" author="perso">
+ <title>eau</title>
+ <abstract/>
+ <elements>
+ <element id="s_4719264F-5134-1982-2AAC-A0D7215E5A93" begin="297560" dur="17880" author="IRI" date="2010-10-12T16:59:02" color="26265" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/15_in.jpg">
+ <title>plan 15</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ <tag>magie</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_FC595748-0DA2-C66C-64BE-A0D78C6779B8" begin="350760" dur="5200" author="IRI" date="2010-10-12T16:59:09" color="26316" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/18_in.jpg">
+ <title>plan 18</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_109D71EB-A683-A052-1DD3-7B9CFEF0105F" begin="1214640" dur="128685" author="IRI" date="2010-10-13T11:34:47" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/96_in.jpg">
+ <title>plan 96</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_628D6E69-4129-1BAB-1BBE-7B9D69D8D94D" begin="1363120" dur="5400" author="IRI" date="2010-10-13T11:34:51" color="52377" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/102_in.jpg">
+ <title>plan 102</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5DE1AE8F-BBF8-09B7-85BB-7B9D5D55E102" begin="1368520" dur="25960" author="IRI" date="2010-10-13T11:35:04" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/103_in.jpg">
+ <title>plan 103</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_EF964720-1872-6413-349E-A0E869DD3305" begin="2709920" dur="78384" author="IRI" date="2010-10-13T11:50:26" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/230_in.jpg">
+ <title>plan 230</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>nuit</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_62FC720C-F7E5-98F3-A18A-A4CF234070D6" begin="3556080" dur="77048" author="IRI" date="2010-10-13T11:35:22" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/279_in.jpg">
+ <title>plan 279</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_00B3AB5A-9E53-6E5D-C3F5-678B22DB8A79" begin="4273160" dur="179870" author="IRI" date="2010-10-13T11:35:25" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/311_in.jpg">
+ <title>plan 311</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_85581541-C6DA-0E0E-7DB0-A4D39B77360B" begin="4275120" dur="0" author="" date="2010-10-13T11:02:36" color="13434624" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_BE0A7D44-1AF0-53DA-FEF0-A4D3DA931D8C" begin="4375039" dur="0" author="" date="2010-10-13T11:03:17" color="13434624" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_5E4B403B-760A-E16D-542A-A4D44AC9709C" begin="4398470" dur="0" author="" date="2010-10-13T11:03:21" color="13369344" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_4485B5ED-99DD-3C36-22B1-7B9F6163557C" author="perso">
+ <title>Couleurs</title>
+ <abstract/>
+ <elements>
+ <element id="s_F123D1F3-161B-8078-A57E-7BA20D3BD165" begin="1562680" dur="3440" author="IRI" date="2010-10-05T11:03:59" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/127_in.jpg">
+ <title>plan 127</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_3A1A26FC-BEA0-A421-FFC1-7B9F912C8185" begin="1622760" dur="3000" author="IRI" date="2010-10-05T11:01:20" color="52224" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/137_in.jpg">
+ <title>plan 137</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_6449E76E-CBF0-DB47-CAC4-CE3C38786F2C" author="perso">
+ <title>Chez les Peuls</title>
+ <abstract/>
+ <elements>
+ <element id="s_EF2FE48C-822F-9857-E48A-CE3CCB03707D" begin="1076200" dur="13160" author="IRI" date="2010-10-21T15:04:47" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/70_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>aperçoit qqch</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_553A9979-9166-76F5-D0CD-CE3CD52439A5" begin="1089360" dur="3080" author="IRI" date="2010-10-21T12:01:57" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/71_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>contrechamp : on l'a vu</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_5A94FD04-F4C5-6BC2-4B4F-CE3CE05FD6D8" begin="1131640" dur="10280" author="IRI" date="2010-10-21T12:02:00" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/76_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Au milieu du troupeau</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_36D3F183-7856-D0FE-6784-CE3CEBE8E9ED" begin="1146400" dur="6000" author="IRI" date="2010-10-21T12:02:02" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/79_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>tjs au milieu du troupeau</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_F7C386CB-9FE8-9D45-40E0-CE3CF53FCDFB" begin="1152440" dur="2160" author="IRI" date="2010-10-21T12:02:05" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/81_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>1er contact : "au voleur"</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_F2446CC8-2984-B929-EB24-CE3CFE96227E" begin="1201800" dur="12840" author="IRI" date="2010-10-21T12:02:09" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/95_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>arrestation + méfiance</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_032B86A6-CE11-3A42-5432-CE3D10589DE0" begin="1342680" dur="20440" author="IRI" date="2010-10-21T15:04:50" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/101_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>le prisonnier</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_D40BFC71-FB7E-2BFA-7F05-CE3D1961C08D" begin="1440240" dur="5120" author="IRI" date="2010-10-21T12:02:13" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/112_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Présentation au roi.</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_9523F766-A9B6-3DE7-F12D-CE3D2037E0B4" begin="1450320" dur="15640" author="IRI" date="2010-10-21T12:02:16" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/114_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Défense menaçante: je vous massacrais tous" + investi d'une mission</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_C1EE8F2B-47D7-E142-4C27-CE3D295E78F7" begin="1473040" dur="16080" author="IRI" date="2010-10-21T12:02:25" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/118_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>1er usage de son pouvoir contre condamnation</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_C71CA98E-A7EE-E3C3-44C2-CE3D4E0DC0C9" begin="1900240" dur="24440" author="IRI" date="2010-10-21T15:04:53" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/166_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>utilise son pouvoir pour aider le village</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_040B9471-FA8D-E82A-50F0-CE3D58CB0014" begin="2025040" dur="5440" author="IRI" date="2010-10-21T12:02:30" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/179_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Utilisation de son pourvoir sur les abeilles</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_0BBD28CF-600E-601F-EE6F-CE3D61758E22" begin="2045040" dur="7400" author="IRI" date="2010-10-21T12:02:33" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/186_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>La fuite des ennemis</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_2A1B7D1A-AC2A-7EAE-76B9-CE3D6C81EBFC" begin="2099240" dur="5400" author="IRI" date="2010-10-21T12:02:36" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/194_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Déroute finale de l'ennemi grâce au feu</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_6219D10B-B0EF-A6A9-B976-CE3D7A1E7E8C" begin="2104640" dur="6880" author="IRI" date="2010-10-21T12:02:40" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/195_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>gros plan feu</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_8B785982-93BA-513F-C590-CE3D88F212FB" begin="2182920" dur="8160" author="IRI" date="2010-10-21T12:02:43" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/201_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>le roi l'implore de rester</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_C21931E3-581D-DD85-414A-CE3D91EB1A68" begin="2191080" dur="10080" author="IRI" date="2010-10-21T12:02:45" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/202_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Renonce à rester, évoque sa mission</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_CBBE461D-8149-5C36-B742-CE3D9D262D16" begin="2291716" dur="38327" author="IRI" date="2010-10-21T15:04:56" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/204_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>2ème demande du roi : guérir la stérilité de sa femme, 1er contact avec celle qui deviendra son épouse</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_A2B3986C-DA6E-6F97-1B7E-CE3DBBF9C9A9" begin="2701200" dur="8720" author="IRI" date="2010-10-21T12:02:56" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/229_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Alors, heureuse?</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_F1EB7767-0887-F382-6983-CE3DC67805C8" begin="2829280" dur="12600" author="IRI" date="2010-10-21T12:02:59" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/236_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Aveu adultère</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_A1DA70CE-55B2-048F-AF12-CE3DD397F823" begin="2914360" dur="18840" author="IRI" date="2010-10-21T15:04:58" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/238_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Aveu 2</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_6732C103-1AF8-A603-82D9-CE3DE1348C2A" begin="3043600" dur="12880" author="IRI" date="2010-10-21T12:03:05" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/244_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>don du chef</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_B302486C-2EF2-167C-847F-CE3DE8A65619" begin="3056480" dur="5440" author="IRI" date="2010-10-21T15:04:59" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/245_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>don de la femme</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_DFF5D688-47C5-C8B6-D042-CE3DF19F94AF" begin="3061920" dur="22720" author="IRI" date="2010-10-21T15:05:04" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/246_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>exhortation à partir</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_4187050D-AD6D-5B37-7BF4-CE3DF8841AAB" begin="3121680" dur="17080" author="IRI" date="2010-10-21T15:05:04" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/250_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Le départ into the wild</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_CC6CD5F4-61DF-BC28-5DAF-A0E7B6AAA04F" author="perso">
+ <title>bande son / temps</title>
+ <abstract/>
+ <elements>
+ <element id="s_3DD789E1-2ACC-423C-83B8-A0E805E36E40" begin="2709920" dur="15920" author="IRI" date="2010-10-12T16:46:26" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/230_in.jpg">
+ <title>plan 230</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>crépuscule</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_C15F51DB-C366-C962-28BE-CDCA4BB97F35" author="perso">
+ <title>Séquences</title>
+ <abstract/>
+ <elements>
+ <element id="s_EE53A7A7-A636-8F1D-8E4A-CDCAA6773663" begin="10800" dur="76680" author="IRI" date="2010-10-21T10:04:50" color="65280" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/3_in.jpg">
+ <title>générique</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_17CA1EED-1E88-21EE-28B5-CDCBC8B6D7D1" begin="87480" dur="535545" author="IRI" date="2010-10-21T10:09:47" color="26367" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/4_in.jpg">
+ <title>Le Sacrifice</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_F12B239D-6888-41D3-93D6-CDD6118BBB83" begin="623400" dur="591267" author="IRI" date="2010-10-21T10:10:46" color="6697881" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/32_in.jpg">
+ <title>L'exil de Nianankoro</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_6A3A2CEA-AF94-A68A-7A35-CDD765A8874B" begin="1214640" dur="295088" author="IRI" date="2010-10-21T10:13:45" color="16711782" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/96_in.jpg">
+ <title>Prisonnier</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_245C1155-9AA0-30F0-5CD9-CDD8B49CA073" begin="1510000" dur="615558" author="IRI" date="2010-10-21T10:19:34" color="13395507" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/123_in.jpg">
+ <title>Par les abeilles et le feu</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_28D4D02F-4800-A4ED-246B-CDDBDFDFC726" begin="2125880" dur="583519" author="IRI" date="2010-10-21T10:20:22" color="13369446" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/198_in.jpg">
+ <title>La seconde faveur du roi</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_EE01E767-80E5-A019-D672-CDDFE75DA9AF" begin="2709920" dur="710961" author="IRI" date="2010-10-21T10:22:51" color="16776960" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/230_in.jpg">
+ <title>L'épouse répudiée</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_163CEDCC-6013-3EEC-8368-CDE223E54E64" begin="3420960" dur="627428" author="IRI" date="2010-10-21T10:24:18" color="3368499" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/271_in.jpg">
+ <title>Le conseil</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_D16B95E4-B9F9-2726-5308-CDE38959ED4F" begin="4050200" dur="444096" author="IRI" date="2010-10-21T10:32:50" color="16724787" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/301_in.jpg">
+ <title>La source du Bongo</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_C3941A73-9C94-F52A-5B6C-CDE497EBB217" begin="4495720" dur="423818" author="IRI" date="2010-10-21T10:32:42" color="204" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/323_in.jpg">
+ <title>L'aile et l'oeil du Koré</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_4A891402-0697-8208-B8B7-CDEB655971E8" begin="4919560" dur="449865" author="IRI" date="2010-10-21T10:34:21" color="10053171" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/337_in.jpg">
+ <title>Au service du mal et de l'injustice</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_68EED9C8-5595-2C54-9019-CDECB6A1EE78" begin="5370120" dur="587946" author="IRI" date="2010-10-21T10:34:55" color="6750054" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/380_in.jpg">
+ <title>Epilogue et générique</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_99EEB7C1-227B-B192-445B-CDE37CD90C2D" author="perso">
+ <title>mère fils ensemble : mère</title>
+ <abstract/>
+ <elements>
+ <element id="s_6EA52BCF-100D-42B1-B7E7-CDE49E950AB2" begin="355960" dur="11480" author="IRI" date="2010-10-21T11:09:59" color="26316" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/19_in.jpg">
+ <title>plan 19</title>
+ <abstract>Gros plan serré (longue focale)</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Valeurs de plan.</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5AF51FEF-4CE7-D46D-6047-CDE4B74D736E" begin="398480" dur="17800" author="IRI" date="2010-10-21T11:10:02" color="26316" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/22_in.jpg">
+ <title>plan 22</title>
+ <abstract>plan épaule (longue focale)</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Valeur de plan</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_3BE07A68-764E-45A8-BBB2-CDE4CFF5EFF0" begin="427800" dur="18120" author="IRI" date="2010-10-21T11:10:07" color="26316" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/24_in.jpg">
+ <title>plan 24</title>
+ <abstract>plan épaule (longue focale)</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Valeurs de plan.</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_49E0BD64-CF97-4582-7047-CE0318DDFAC0" begin="502480" dur="6080" author="IRI" date="2010-10-21T11:10:17" color="26316" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/26_in.jpg">
+ <title>plan 26</title>
+ <abstract>plan épaule (longue focale)</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Valeurs de plan.</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_9B97C54D-D039-63E0-3D48-CE034ABABF06" begin="619520" dur="3840" author="IRI" date="2010-10-21T11:10:22" color="26316" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/30_in.jpg">
+ <title>plan 30</title>
+ <abstract>plan épaule (longue focale)</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Valeurs de plan.</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_9FC1223D-FB57-3EE4-DCC8-CE040995C0C7" begin="682600" dur="2520" author="IRI" date="2010-10-21T11:10:28" color="26316" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/37_in.jpg">
+ <title>plan 37</title>
+ <abstract>plan épaule (longue focale)</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Valeurs de plan.</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5124110B-54E4-1336-CA57-CE03C3364A77" begin="688080" dur="9320" author="IRI" date="2010-10-21T11:10:33" color="26316" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/39_in.jpg">
+ <title>plan 39</title>
+ <abstract>plan épaule (longue focale)</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Valeurs de plan.</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_CD25593B-4DA4-FC6A-A714-CE03D85492D9" begin="704640" dur="6040" author="IRI" date="2010-10-21T11:10:36" color="26316" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/41_in.jpg">
+ <title>plan 41</title>
+ <abstract>plan poitrine (longue focale)</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Valeurs de plan.</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_C2F0B267-4C29-5777-5667-CE0F7CE0D11F" author="perso">
+ <title>mère fils ensemble : fils</title>
+ <abstract/>
+ <elements>
+ <element id="s_DD0BA13C-8D45-C6A4-BD92-CE107CB98CCA" begin="315440" dur="12325" author="IRI" date="2010-10-21T11:27:24" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/16_in.jpg">
+ <title>plan 16</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_042DD3F1-EA5C-C825-C195-CE126AE8B1EA" begin="339240" dur="11520" author="IRI" date="2010-10-21T11:27:27" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/17_in.jpg">
+ <title>plan 17</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_EB24B4C8-6FFF-1CCE-EF86-CE129CC60C90" begin="391280" dur="7200" author="IRI" date="2010-10-21T11:27:07" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/21_in.jpg">
+ <title>plan 21</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_40491F0C-7F1F-199F-EEB7-CE12B5FB20D7" begin="416280" dur="11520" author="IRI" date="2010-10-21T11:27:09" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/23_in.jpg">
+ <title>plan 23</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_C1B137A2-A80D-B455-49D8-CE12E3831BB4" begin="508560" dur="63360" author="IRI" date="2010-10-21T11:27:28" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/27_in.jpg">
+ <title>plan 27</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_02C37540-D8FF-0B16-B804-CE1BD65FDA34" begin="613506" dur="6012" author="IRI" date="2010-10-21T11:27:30" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/29_in.jpg">
+ <title>plan 29</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_7EBC6973-8AFF-7035-2834-CE13A6364C5B" begin="678920" dur="3680" author="IRI" date="2010-10-21T11:27:33" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/36_in.jpg">
+ <title>plan 36</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_5F7592D7-E816-3005-12AD-CE13D350D247" begin="685120" dur="2960" author="IRI" date="2010-10-21T11:27:19" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/38_in.jpg">
+ <title>plan 38</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_3D5FB577-D4CA-CA77-C08F-CE13EFA20F8A" begin="697400" dur="7240" author="IRI" date="2010-10-21T11:27:34" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/40_in.jpg">
+ <title>plan 40</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_4DC2FF4A-F325-8DF1-CE2F-CE1414028B44" begin="710680" dur="6280" author="IRI" date="2010-10-21T11:27:22" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/42_in.jpg">
+ <title>plan 42</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_E773C3B2-2F56-9352-1052-35C2F85B643A" author="perso">
+ <title>personnages secondaires</title>
+ <abstract/>
+ <elements>
+ <element id="s_7C52B65E-E1C7-C345-67E8-35C2F85CB18B" begin="122800" dur="40320" author="IRI" date="2010-10-21T09:50:34" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/8_in.jpg">
+ <title>enfant- chèvre</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant chèvre</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7BA48B5F-657F-AAF4-B96C-35C2F85C6328" begin="717000" dur="26760" author="IRI" date="2010-10-21T10:11:52" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/44_in.jpg">
+ <title>femme</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>femme+</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_126768AC-62AB-80E8-9CE2-35C2F85CB56D" begin="743760" dur="57680" author="IRI" date="2010-10-21T10:13:33" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/45_in.jpg">
+ <title>femme</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>femme</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_16CECF25-6A9F-B6B3-944B-35C2F85DF9D9" begin="807560" dur="2680" author="IRI" date="2010-10-21T10:14:48" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/47_in.jpg">
+ <title>enfant-fer</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant-fer</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_546C9F46-489B-78BF-8A77-35C2F85D1365" begin="810240" dur="5640" author="IRI" date="2010-10-21T10:15:27" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/48_in.jpg">
+ <title>chef-forgeron</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>chef-forgeron</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5E6BAE1F-E409-CD77-CBD7-35C2F85D9204" begin="815880" dur="5240" author="IRI" date="2010-10-21T10:17:25" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/49_in.jpg">
+ <title>chef-forgeron</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>chef-forgeron</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E7689AC9-F7CE-DDD3-90FD-35C2F85E597E" begin="821120" dur="23337" author="IRI" date="2010-10-21T10:18:10" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/50_in.jpg">
+ <title>femme</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>femme</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8C6CF654-79D9-0FA8-0E95-35C2F85E5A80" begin="844760" dur="24480" author="IRI" date="2010-10-21T10:20:45" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/51_in.jpg">
+ <title>chef-forgeron</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>chef-forgeron</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D2B37A16-4F6C-BCA6-DA75-35C2F85E0BB0" begin="869240" dur="12720" author="IRI" date="2010-10-21T10:22:44" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/52_in.jpg">
+ <title>enfant-fer, chef-forgeron</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>chef-forgeron</tag>
+ <tag>enfant-fer</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_BE64014B-E9B6-3E7B-F33E-35C2F85F93BC" begin="881960" dur="12800" author="IRI" date="2010-10-21T10:23:27" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/53_in.jpg">
+ <title>chef-forgeron</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>chef-forgeron</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_BB415B18-8442-9C2B-8DEC-35C2F860B109" begin="894760" dur="3640" author="IRI" date="2010-10-21T10:25:14" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/54_in.jpg">
+ <title>chef-forgeron</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>chef-forgeron</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_F8D58583-ED9D-3776-B3BA-35C2F8608C13" begin="1089360" dur="3080" author="IRI" date="2010-10-21T10:35:22" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/71_in.jpg">
+ <title>enfant peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_9E043EFF-BCD2-5F98-C397-35C2F86075B2" begin="1092440" dur="20600" author="IRI" date="2010-10-21T10:35:46" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/72_in.jpg">
+ <title>enfant peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_11D79FB6-27B1-87ED-D458-35C2F86041EE" begin="1120400" dur="11240" author="IRI" date="2010-10-21T10:37:01" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/75_in.jpg">
+ <title>enfant peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_871FCDF4-5C03-6B02-5EAE-35C2F861D198" begin="1141920" dur="4440" author="IRI" date="2010-10-21T10:58:05" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/77_in.jpg">
+ <title>enfant peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_9A23C865-CEE1-85E8-BA9B-35C2F861CB03" begin="1152440" dur="2160" author="IRI" date="2010-10-21T10:59:34" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/81_in.jpg">
+ <title>enfant peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_EA12335E-8747-4871-AA78-35C2F8616E26" begin="1154640" dur="3360" author="IRI" date="2010-10-21T11:00:00" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/83_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_00C7CE78-BA8B-A9A5-41D4-35C2F86213CC" begin="1164720" dur="3360" author="IRI" date="2010-10-21T11:03:29" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/89_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_6CBB00DE-9B55-8676-55EC-35C2F8628B15" begin="1168080" dur="360" author="IRI" date="2010-10-21T11:01:57" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/90_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5DBCB2A6-CD1A-537B-DE87-35C2F863D4BC" begin="1168440" dur="11000" author="IRI" date="2010-10-21T11:03:47" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/91_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D98CC65C-6102-A228-EEC2-35C2F863DE35" begin="1179440" dur="14800" author="IRI" date="2010-10-21T11:05:35" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/92_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_0DC8F63B-6CA9-6300-9D64-35C2F8637687" begin="1194240" dur="7520" author="IRI" date="2010-10-21T11:06:24" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/93_in.jpg">
+ <title>plan 93</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_DDF8BCCA-B0F2-7A11-0470-35C2F8639B19" begin="1201800" dur="12840" author="IRI" date="2010-10-21T11:06:41" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/95_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_87A3D9F0-7A81-3DF5-A6D2-35C2F8640365" begin="1342680" dur="20440" author="IRI" date="2010-10-21T11:10:34" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/101_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_3BB81174-541B-4AFD-D537-35C2F8644934" begin="1363120" dur="5400" author="IRI" date="2010-10-21T11:11:04" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/102_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_769237C0-CB77-0BA2-AAB9-35C2F86448E2" begin="1368382" dur="10055" author="" date="2010-10-21T11:13:21" color="6771296" src="">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_3FEC5BA9-5C56-D6E8-7335-35C2F86AA773" begin="1394760" dur="6920" author="IRI" date="2010-10-21T11:16:46" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/106_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7A16AED6-89A5-3E41-61F7-35C2F86A05DA" begin="1412920" dur="15120" author="IRI" date="2010-10-21T11:17:45" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/110_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D192850A-0502-569A-83BA-35C2F86A1840" begin="1428040" dur="12200" author="IRI" date="2010-10-21T11:21:27" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/111_in.jpg">
+ <title>roi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_432898AB-F590-A4D8-EAF3-35C2F86B334D" begin="1440240" dur="5120" author="IRI" date="2010-10-21T11:21:49" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/112_in.jpg">
+ <title>roi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_522011DB-9034-D598-CAC9-35C2F86CF1CD" begin="1445360" dur="4960" author="IRI" date="2010-10-21T11:22:18" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/113_in.jpg">
+ <title>anciens</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>anciens</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_003BC359-5F25-344D-1AEB-35C2F86C2F15" begin="1465960" dur="4480" author="IRI" date="2010-10-21T11:23:35" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/115_in.jpg">
+ <title>roi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_93CD7827-5F56-0D98-A5DB-35C2F86CFD42" begin="1473040" dur="16080" author="IRI" date="2010-10-21T11:25:14" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/118_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_049D962D-8593-F3C6-2646-35C2F86DE171" begin="1489160" dur="6960" author="IRI" date="2010-10-21T11:25:32" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/120_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_C0750A15-A7FF-169F-01CB-35C2F86D4510" begin="1496120" dur="13840" author="IRI" date="2010-10-21T11:26:09" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/121_in.jpg">
+ <title>roi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_DAC43F33-4FCC-304E-E7E8-35C2F86D9E0A" begin="1510000" dur="24280" author="IRI" date="2010-10-21T11:26:53" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/123_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_01A316EF-BC4F-1539-4F72-35C2F86E9B80" begin="1534280" dur="16120" author="IRI" date="2010-10-21T11:27:42" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/124_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E95E1366-3565-F95F-DDAF-35C2F86E4A59" begin="1550400" dur="8880" author="IRI" date="2010-10-21T11:28:06" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/125_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_3E5B7232-9729-208C-88FF-35C2F86E64CB" begin="1559280" dur="3400" author="IRI" date="2010-10-21T11:28:44" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/126_in.jpg">
+ <title>ennemi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4DDDFC9F-8AEE-B932-EB1F-35C2F86FEA01" begin="1562680" dur="3440" author="IRI" date="2010-10-21T11:29:01" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/127_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_FFFE7D3B-4FA4-81A4-DE24-35C2F870D678" begin="1566120" dur="3400" author="IRI" date="2010-10-21T11:29:33" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/128_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_BE80F322-80CB-5F49-1F85-35C2F870DCAC" begin="1569520" dur="4080" author="IRI" date="2010-10-21T11:30:13" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/129_in.jpg">
+ <title>ennemi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5BAD0E8B-2383-1F71-D5DE-35C2F871766D" begin="1573640" dur="5720" author="IRI" date="2010-10-21T11:30:35" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/131_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1C167C04-6D4B-9B3C-F8E1-35C2F87157C6" begin="1598800" dur="2240" author="IRI" date="2010-10-21T11:31:01" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/133_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_C5227443-3138-9DBD-59A4-35C2F871C252" begin="1601040" dur="9440" author="IRI" date="2010-10-21T11:31:23" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/134_in.jpg">
+ <title>ennemi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4892BFCF-E7A1-F556-16D0-35C2F872C5A1" begin="1610480" dur="3480" author="IRI" date="2010-10-21T11:31:49" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/135_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_6A1617F3-373E-6526-C511-35C2F872C5C5" begin="1613960" dur="8800" author="IRI" date="2010-10-21T11:32:23" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/136_in.jpg">
+ <title>ennemi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_35737ACB-CDDA-2149-7CD8-35C2F873D2B9" begin="1622760" dur="3000" author="IRI" date="2010-10-21T11:32:41" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/137_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_F59E8DD7-26D6-DDB6-68B1-35C2F8734DC6" begin="1625760" dur="2880" author="IRI" date="2010-10-21T11:32:58" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/138_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_C9E3FCF8-063F-2D28-A5B1-35C2F873FA51" begin="1628640" dur="9920" author="IRI" date="2010-10-21T11:33:51" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/139_in.jpg">
+ <title>ennemi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D5195057-9601-C9C6-E28B-35C2F87425F7" begin="1638600" dur="9960" author="IRI" date="2010-10-21T11:34:10" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/141_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_A38D032B-3E17-2049-2C0C-35C2F874E56E" begin="1648560" dur="9000" author="IRI" date="2010-10-21T11:34:25" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/142_in.jpg">
+ <title>ennemi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8030F313-0319-775F-48E3-35C2F87533CF" begin="1657600" dur="2640" author="IRI" date="2010-10-21T11:34:56" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/144_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D791B925-E122-DDDC-8876-35C2F8756C6C" begin="1660280" dur="4040" author="IRI" date="2010-10-21T11:35:22" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/146_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_446AD1FD-2C8A-5245-D4BF-35C2F8760238" begin="1664360" dur="3520" author="IRI" date="2010-10-21T11:35:46" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/148_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E951F417-BCD7-52D0-037F-35C2F87660DE" begin="1667920" dur="3440" author="IRI" date="2010-10-21T11:36:10" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/150_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4E16E1E2-EC46-5AE4-BA94-35C2F876CE4F" begin="1671360" dur="9160" author="IRI" date="2010-10-21T11:36:49" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/151_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_2A8F1C72-13B9-1563-16C7-35C2F87703AF" begin="1680520" dur="8800" author="IRI" date="2010-10-21T11:37:30" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/152_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_2B8A7D8C-8DBC-0D45-36EC-35C2F877F5E6" begin="1689320" dur="22120" author="IRI" date="2010-10-21T11:38:25" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/153_in.jpg">
+ <title>roi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_677A12E5-44D2-1D37-4493-35C2F87843D8" begin="1711440" dur="7920" author="IRI" date="2010-10-21T11:40:56" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/154_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_92443611-C2D4-0957-521D-35C2F878787C" begin="1719360" dur="17040" author="IRI" date="2010-10-21T11:41:19" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/155_in.jpg">
+ <title>roi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_DFAFB23A-6F69-556E-F801-35C2F879E3D9" begin="1739920" dur="26120" author="IRI" date="2010-10-21T11:42:45" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/157_in.jpg">
+ <title>roi, anciens</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>anciens</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_04310025-2676-FA2A-7B09-35C2F8793408" begin="1814840" dur="23160" author="IRI" date="2010-10-21T12:04:46" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/161_in.jpg">
+ <title>roi, jeune peul, anciens</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>anciens</tag>
+ <tag>jeune peul</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_35AED310-EB42-7AC2-CB9A-35C2F87A3F3B" begin="1838000" dur="9520" author="IRI" date="2010-10-21T12:09:13" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/162_in.jpg">
+ <title>roi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7239F97C-E6EE-0DED-6075-35C2F87A6FC4" begin="1887440" dur="9200" author="IRI" date="2010-10-21T12:11:43" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/164_in.jpg">
+ <title>roi, anciens</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>anciens</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_BFBB5672-9AF6-CD3B-566B-35C2F87B827C" begin="1944400" dur="14720" author="IRI" date="2010-10-21T12:12:32" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/168_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_29D9F302-0E23-53E2-3548-35C2F87B91F1" begin="2013000" dur="12040" author="IRI" date="2010-10-21T12:17:23" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/178_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_412C2D47-A79C-784B-BAB0-35C2F8806B55" begin="2025040" dur="5440" author="IRI" date="2010-10-21T12:18:07" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/179_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_DF8C009D-ADEC-AA7E-E177-35C2F88122F5" begin="2030520" dur="3320" author="IRI" date="2010-10-21T12:18:19" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/181_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5116F562-D533-EBA6-DF60-35C2F8818346" begin="2033880" dur="4280" author="IRI" date="2010-10-21T12:18:27" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/183_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_037467DE-2DA5-872B-B672-35C2F8822DBD" begin="2045040" dur="7400" author="IRI" date="2010-10-21T12:18:49" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/186_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_66C52059-0BC1-041F-049B-35C2F882EB80" begin="2052480" dur="3120" author="IRI" date="2010-10-21T12:18:59" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/188_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_0956115C-B5FE-A8AB-594C-35C2F8824F21" begin="2055600" dur="21440" author="IRI" date="2010-10-21T12:19:16" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/189_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_79F27116-790B-79D5-0F05-35C2F883C975" begin="2077080" dur="4680" author="IRI" date="2010-10-21T12:19:26" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/191_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_EE3211C0-8F90-5EB3-4580-35C2F883B652" begin="2081760" dur="10200" author="IRI" date="2010-10-21T12:19:43" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/192_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E23CB976-31F8-71ED-05A6-35C2F883CECE" begin="2091960" dur="7280" author="IRI" date="2010-10-21T12:19:59" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/193_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8DFA1F61-33BA-008B-0DD0-35C2F8841BF8" begin="2099240" dur="5400" author="IRI" date="2010-10-21T12:20:32" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/194_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7DFB2BD5-69D5-983E-B096-35C2F8847C5A" begin="2104640" dur="6880" author="IRI" date="2010-10-21T12:20:39" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/195_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E9C6B22D-5074-B418-EB0D-35C2F8843696" begin="2111520" dur="14320" author="IRI" date="2010-10-21T12:21:12" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/196_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_59675AA4-DFCB-4274-73EF-CE441607F532" author="perso">
+ <title>En chemin n°2</title>
+ <abstract/>
+ <elements>
+ <element id="s_A1FA25B0-40E6-6DA2-A2E7-CE4467EFED79" begin="3121680" dur="17080" author="IRI" date="2010-10-21T15:05:54" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/250_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Le départ into the wild</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_F6ED0DE4-FC24-CC49-7A2B-CE46A3E0FE07" begin="4050200" dur="14680" author="IRI" date="2010-10-21T15:05:58" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/301_in.jpg">
+ <title>En chemin vers le pays Dogon</title>
+ <abstract>Plan d'ensmble paysage montagneux petit matin</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_A402F91F-01D5-EC02-98C3-CE46B2D43984" begin="4064880" dur="29400" author="IRI" date="2010-10-21T15:06:00" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/302_in.jpg">
+ <title>En chemin vers le pays Dogon</title>
+ <abstract>Le couple au matin</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_51CBDDA7-A699-66E7-0567-CE46E04CF66B" begin="4094280" dur="28880" author="IRI" date="2010-10-21T15:06:00" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/303_in.jpg">
+ <title>En chemin vers le pays Dogon</title>
+ <abstract>Plan ensemble paysage Jour</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_2FB6218C-E8AA-0B43-2EFD-CE46EC52EC02" begin="4123160" dur="22640" author="IRI" date="2010-10-21T12:12:56" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/304_in.jpg">
+ <title>En chemin vers le pays Dogon</title>
+ <abstract>Progression du couple dans paysage escarpé, journée</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_20C3DA65-B9BA-1DBA-D282-AA505A102CF0" author="perso">
+ <title>Nudité</title>
+ <abstract/>
+ <elements>
+ <element id="s_362EBA43-0A52-5F7A-523C-AA521191938A" begin="121039" dur="36711" author="IRI" date="2010-10-14T12:39:03" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/5_in.jpg">
+ <title>plan 5</title>
+ <abstract>Le film s'ouvre sur la lumière rougeoyante du feu (le soleil), puis sur le corps d'un animal criant sous les flammes. L'effet de violence est renforcé par la musique et le retour au plan sur le soleil levant. A la musique succède un son strident qui fair le lien avec le plan suivant (plan 5).</abstract>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_5F73581E-09FD-3F37-747C-AA529A8E4253" begin="1214640" dur="128685" author="IRI" date="2010-10-14T12:39:21" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/96_in.jpg">
+ <title>plan 96</title>
+ <abstract>Voir le bout à bout : comparer les deux séquences</abstract>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_C52E229E-406E-A4C2-5A52-AA562DA40A99" begin="1550400" dur="76579" author="IRI" date="2010-10-14T12:43:16" color="10040064" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/125_in.jpg">
+ <title>plan 125</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_D740EF6D-8FB9-FF63-47BB-AA5202B699BB" begin="1900240" dur="24440" author="IRI" date="2010-10-14T12:38:42" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/166_in.jpg">
+ <title>plan 166</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_FB6E60B0-F9AA-42EC-D440-AA52E62E1AE2" begin="2601544" dur="140631" author="IRI" date="2010-10-14T12:39:41" color="52479" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/226_in.jpg">
+ <title>plan 226</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>union</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_DCFEC4C6-A6E3-7A8B-D5D8-AA552E647111" begin="2669334" dur="0" author="" date="2010-10-14T12:42:30" color="13434624" src="">
+ <title/>
+ <abstract>Corps et air, vent.</abstract>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_CA970063-7811-B945-87EE-AA52FE920471" begin="4273160" dur="179870" author="IRI" date="2010-10-14T12:39:47" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/311_in.jpg">
+ <title>plan 311</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_2CF9B263-9FBA-12C2-09F7-AA53573B7B22" begin="5045440" dur="42600" author="IRI" date="2010-10-14T12:40:14" color="3394815" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/347_in.jpg">
+ <title>plan 347</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_2A24C438-3246-D8F3-AB1B-AA5412A9FC48" begin="5370120" dur="30320" author="IRI" date="2010-10-14T12:41:01" color="3394611" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/380_in.jpg">
+ <title>plan 380</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_C0F9E07B-8363-2A1F-CF0A-AA542C60D6A2" begin="5400440" dur="19200" author="IRI" date="2010-10-14T12:41:07" color="6724044" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/381_in.jpg">
+ <title>plan 381</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_6625923F-0C7A-61C8-602F-CDBF0CF7FBF8" author="perso">
+ <title>foule</title>
+ <abstract/>
+ <elements>
+ <element id="s_C63700E1-D9C9-EA9C-EE65-CDDEE416930F" begin="844760" dur="24480" author="IRI" date="2010-10-21T10:20:11" color="13395711" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/51_in.jpg">
+ <title>village-fer</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>village-fer</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_E317E205-5E81-9763-24C4-CE39B986EC62" author="perso">
+ <title>Le départ</title>
+ <abstract/>
+ <elements>
+ <element id="s_610B78A0-F92C-DDA6-47F9-CE3A8483D797" begin="656120" dur="22800" author="IRI" date="2010-10-21T11:59:27" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/35_in.jpg">
+ <title>départ</title>
+ <abstract>dernière scène avec la mère</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_17CD0E86-D6ED-E23D-65C2-CE3AB259137F" begin="678920" dur="3680" author="IRI" date="2010-10-21T15:09:35" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/36_in.jpg">
+ <title>départ</title>
+ <abstract>don de la pierre</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_DBADB2B2-A59B-C92A-811B-CE3A96274E15" begin="697400" dur="7240" author="IRI" date="2010-10-21T15:09:35" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/40_in.jpg">
+ <title>départ</title>
+ <abstract>Il s'en va</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_7C5727EB-633A-F790-546B-CE3ABB324D14" begin="710680" dur="6280" author="IRI" date="2010-10-21T11:59:37" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/42_in.jpg">
+ <title>départ</title>
+ <abstract>Il part.</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_48EEF052-98E2-6AB7-BCA2-35C2F8F4D18C" author="perso">
+ <title>foule</title>
+ <abstract/>
+ <elements>
+ <element id="s_20F1FFB1-4872-B19C-8265-35C2F8F532AD" begin="844760" dur="24480" author="IRI" date="2010-10-21T10:20:11" color="13395711" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/51_in.jpg">
+ <title>village-fer</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>village-fer</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_07DBA034-CE84-69C9-57AE-CDBDFD1D6BAF" author="perso">
+ <title>personnages secondaires</title>
+ <abstract/>
+ <elements>
+ <element id="s_44DFAD6A-5419-1771-6489-CDC404D1E53C" begin="122800" dur="40320" author="IRI" date="2010-10-21T09:50:34" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/8_in.jpg">
+ <title>enfant- chèvre</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant chèvre</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_075CF460-F13F-A5C0-25A8-CDD76EF85E0E" begin="717000" dur="26760" author="IRI" date="2010-10-21T10:11:52" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/44_in.jpg">
+ <title>femme</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>femme+</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_C7058D71-15EC-625B-69CD-CDD96C106D8A" begin="743760" dur="57680" author="IRI" date="2010-10-21T10:13:33" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/45_in.jpg">
+ <title>femme</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>femme</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_0AF003A6-E40A-49D3-323E-CDDA54BBC72A" begin="807560" dur="2680" author="IRI" date="2010-10-21T10:14:48" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/47_in.jpg">
+ <title>enfant-fer</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant-fer</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1E844803-BEC7-9586-C5D3-CDDAE93A4767" begin="810240" dur="5640" author="IRI" date="2010-10-21T10:15:27" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/48_in.jpg">
+ <title>chef-forgeron</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>chef-forgeron</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_70427900-E72E-F998-FFB7-CDDCD2DA7FD5" begin="815880" dur="5240" author="IRI" date="2010-10-21T10:17:25" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/49_in.jpg">
+ <title>chef-forgeron</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>chef-forgeron</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_B9551E8D-A339-3F0A-8E60-CDDD64AAA6E0" begin="821120" dur="23337" author="IRI" date="2010-10-21T10:18:10" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/50_in.jpg">
+ <title>femme</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>femme</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_785EEA5B-FCAB-6E2B-CD01-CDDFDFFBC0C6" begin="844760" dur="24480" author="IRI" date="2010-10-21T10:20:45" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/51_in.jpg">
+ <title>chef-forgeron</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>chef-forgeron</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_BA4884F1-C144-B274-ABCB-CDE14D66298F" begin="869240" dur="12720" author="IRI" date="2010-10-21T10:22:44" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/52_in.jpg">
+ <title>enfant-fer, chef-forgeron</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>chef-forgeron</tag>
+ <tag>enfant-fer</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7E89DDD4-F4AD-2869-76D1-CDE23D25D06E" begin="881960" dur="12800" author="IRI" date="2010-10-21T10:23:27" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/53_in.jpg">
+ <title>chef-forgeron</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>chef-forgeron</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7FFED3B8-2BB1-8ABA-CAA5-CDE380A1B034" begin="894760" dur="3640" author="IRI" date="2010-10-21T10:25:14" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/54_in.jpg">
+ <title>chef-forgeron</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>chef-forgeron</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_3E28ED28-DD67-A8D4-70F5-CDED26E23846" begin="1089360" dur="3080" author="IRI" date="2010-10-21T10:35:22" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/71_in.jpg">
+ <title>enfant peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_266C1B90-86EF-1695-6108-CDEDC07E7507" begin="1092440" dur="20600" author="IRI" date="2010-10-21T10:35:46" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/72_in.jpg">
+ <title>enfant peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_42CDC74A-E011-1E33-E1CB-CDEEC2E34BE2" begin="1120400" dur="11240" author="IRI" date="2010-10-21T10:37:01" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/75_in.jpg">
+ <title>enfant peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7CAA429B-6B34-82DE-6609-CE0215B8DDC8" begin="1141920" dur="4440" author="IRI" date="2010-10-21T10:58:05" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/77_in.jpg">
+ <title>enfant peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_472E68C0-3D27-9382-EFB9-CE035EF1470E" begin="1152440" dur="2160" author="IRI" date="2010-10-21T10:59:34" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/81_in.jpg">
+ <title>enfant peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>enfant peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7C334ECC-DD95-B20B-11E2-CE03ED955318" begin="1154640" dur="3360" author="IRI" date="2010-10-21T11:00:00" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/83_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_3A4ADDE2-2C6E-4EFE-CA21-CE053920C2BD" begin="1164720" dur="3360" author="IRI" date="2010-10-21T11:03:29" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/89_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_F647375B-840E-651E-85A6-CE05B0D105FB" begin="1168080" dur="360" author="IRI" date="2010-10-21T11:01:57" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/90_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_158BA9C2-6421-F3FB-6EB8-CE07593FAEB0" begin="1168440" dur="11000" author="IRI" date="2010-10-21T11:03:47" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/91_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_911BA87F-7738-2A55-37C9-CE07AF4D08BC" begin="1179440" dur="14800" author="IRI" date="2010-10-21T11:05:35" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/92_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_590818C5-57FC-B6E5-FE23-CE0997224F89" begin="1194240" dur="7520" author="IRI" date="2010-10-21T11:06:24" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/93_in.jpg">
+ <title>plan 93</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_B7EAC33B-6A55-D562-EB1D-CE0A03874FD8" begin="1201800" dur="12840" author="IRI" date="2010-10-21T11:06:41" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/95_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5B89F4B3-5C9C-BD5C-25CB-CE0D628BB07E" begin="1342680" dur="20440" author="IRI" date="2010-10-21T11:10:34" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/101_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_102AAB2C-8E9A-DECA-FE17-CE0E039DF662" begin="1363120" dur="5400" author="IRI" date="2010-10-21T11:11:04" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/102_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_C5900502-686B-5032-CC6A-CE1021F7358F" begin="1368382" dur="10055" author="" date="2010-10-21T11:13:21" color="6771296" src="">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_86AEFBEE-F6DD-A473-630C-CE1346092115" begin="1394760" dur="6920" author="IRI" date="2010-10-21T11:16:46" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/106_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_81BD89EC-9027-C724-F72E-CE142F30177E" begin="1412920" dur="15120" author="IRI" date="2010-10-21T11:17:45" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/110_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_20642AEB-FACD-509B-CDD0-CE173DA792AF" begin="1428040" dur="12200" author="IRI" date="2010-10-21T11:21:27" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/111_in.jpg">
+ <title>roi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8D239F66-5AF0-0066-6B23-CE17FB3384CF" begin="1440240" dur="5120" author="IRI" date="2010-10-21T11:21:49" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/112_in.jpg">
+ <title>roi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_CA948E9F-C8E4-5B0A-3E68-CE184B0C73A3" begin="1445360" dur="4960" author="IRI" date="2010-10-21T11:22:18" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/113_in.jpg">
+ <title>anciens</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>anciens</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_92A23F37-99D7-98AA-0E4C-CE1986E55DB1" begin="1465960" dur="4480" author="IRI" date="2010-10-21T11:23:35" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/115_in.jpg">
+ <title>roi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_F8EEF695-2B1B-125E-D570-CE1AE9319C60" begin="1473040" dur="16080" author="IRI" date="2010-10-21T11:25:14" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/118_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_2D195EBE-D495-D0F4-F60B-CE1B54035286" begin="1489160" dur="6960" author="IRI" date="2010-10-21T11:25:32" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/120_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_ECBEF57E-5BAE-57B4-4D4B-CE1BA1E6ADA7" begin="1496120" dur="13840" author="IRI" date="2010-10-21T11:26:09" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/121_in.jpg">
+ <title>roi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_299B541A-6830-982A-F341-CE1C7B334219" begin="1510000" dur="24280" author="IRI" date="2010-10-21T11:26:53" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/123_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_A057727A-5F25-CEE5-753E-CE1D46572F0F" begin="1534280" dur="16120" author="IRI" date="2010-10-21T11:27:42" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/124_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_F159840B-D5E2-28FA-7D64-CE1DB975B994" begin="1550400" dur="8880" author="IRI" date="2010-10-21T11:28:06" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/125_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_AB906C44-B742-5DFA-1950-CE1E0D639186" begin="1559280" dur="3400" author="IRI" date="2010-10-21T11:28:44" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/126_in.jpg">
+ <title>ennemi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_45142904-FB53-846D-5654-CE1E960EC0F3" begin="1562680" dur="3440" author="IRI" date="2010-10-21T11:29:01" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/127_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_68B8ED98-8FD3-75D8-5D42-CE1EDC309008" begin="1566120" dur="3400" author="IRI" date="2010-10-21T11:29:33" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/128_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_0D2B844A-23C7-D6C3-C89E-CE1F5E249F8E" begin="1569520" dur="4080" author="IRI" date="2010-10-21T11:30:13" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/129_in.jpg">
+ <title>ennemi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_B50E2079-E37F-12AC-121F-CE1FF10ED48C" begin="1573640" dur="5720" author="IRI" date="2010-10-21T11:30:35" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/131_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1953B24B-9641-FDAB-99C2-CE205C5C741E" begin="1598800" dur="2240" author="IRI" date="2010-10-21T11:31:01" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/133_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_059B6A57-C41F-7F7C-2E4F-CE20A5F81040" begin="1601040" dur="9440" author="IRI" date="2010-10-21T11:31:23" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/134_in.jpg">
+ <title>ennemi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_99F16BC2-F8B0-3651-843A-CE210AAEBA95" begin="1610480" dur="3480" author="IRI" date="2010-10-21T11:31:49" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/135_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_C8204963-F4F0-590D-8AF1-CE2163207097" begin="1613960" dur="8800" author="IRI" date="2010-10-21T11:32:23" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/136_in.jpg">
+ <title>ennemi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_9EE2EFD8-DE28-F953-87C1-CE21E2922F4E" begin="1622760" dur="3000" author="IRI" date="2010-10-21T11:32:41" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/137_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4C5A35F7-DA7A-4A2D-EDD8-CE222D288281" begin="1625760" dur="2880" author="IRI" date="2010-10-21T11:32:58" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/138_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_929333E4-D796-436B-A044-CE226BD86CC3" begin="1628640" dur="9920" author="IRI" date="2010-10-21T11:33:51" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/139_in.jpg">
+ <title>ennemi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8906D946-A830-E8C9-A9BD-CE233A16D04E" begin="1638600" dur="9960" author="IRI" date="2010-10-21T11:34:10" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/141_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4092799F-CD58-7F10-0222-CE2386435CDC" begin="1648560" dur="9000" author="IRI" date="2010-10-21T11:34:25" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/142_in.jpg">
+ <title>ennemi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_09281E3C-2947-7A5E-77F4-CE23EABA3D43" begin="1657600" dur="2640" author="IRI" date="2010-10-21T11:34:56" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/144_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_89F75B9A-14FF-5A15-E019-CE2441762E14" begin="1660280" dur="4040" author="IRI" date="2010-10-21T11:35:22" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/146_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8B50A26D-8877-89F3-B751-CE24AA52825A" begin="1664360" dur="3520" author="IRI" date="2010-10-21T11:35:46" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/148_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_3A378D89-635B-0C80-F9CE-CE2503FBFD0F" begin="1667920" dur="3440" author="IRI" date="2010-10-21T11:36:10" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/150_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_914F2F7C-2426-E60F-E7C0-CE25AC71441A" begin="1671360" dur="9160" author="IRI" date="2010-10-21T11:36:49" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/151_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_C1B74EC5-7948-B686-3E11-CE25F35EF973" begin="1680520" dur="8800" author="IRI" date="2010-10-21T11:37:30" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/152_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5308F4FF-C436-BDA1-13E5-CE26F3D758AA" begin="1689320" dur="22120" author="IRI" date="2010-10-21T11:38:25" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/153_in.jpg">
+ <title>roi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E3AB7423-EF93-F848-0467-CE29623BB76B" begin="1711440" dur="7920" author="IRI" date="2010-10-21T11:40:56" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/154_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5C7615FB-F6F9-94FA-AC41-CE29B37861E6" begin="1719360" dur="17040" author="IRI" date="2010-10-21T11:41:19" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/155_in.jpg">
+ <title>roi, jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>jeune peul</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8CA268BE-41CE-6CA6-1C80-CE2AE8ADF132" begin="1739920" dur="26120" author="IRI" date="2010-10-21T11:42:45" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/157_in.jpg">
+ <title>roi, anciens</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>anciens</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4D2F6117-37E3-C18C-75AD-CE3E6370BA16" begin="1814840" dur="23160" author="IRI" date="2010-10-21T12:04:46" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/161_in.jpg">
+ <title>roi, jeune peul, anciens</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>anciens</tag>
+ <tag>jeune peul</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_CC8DFCA3-AE53-B5A2-9552-CE42B8B48056" begin="1838000" dur="9520" author="IRI" date="2010-10-21T12:09:13" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/162_in.jpg">
+ <title>roi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_B3BBA8A7-4FBC-8E35-2624-CE454B86D35B" begin="1887440" dur="9200" author="IRI" date="2010-10-21T12:11:43" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/164_in.jpg">
+ <title>roi, anciens</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>anciens</tag>
+ <tag>roi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_76C707F1-44AE-8CCC-8BCE-CE4666FA82D1" begin="1944400" dur="14720" author="IRI" date="2010-10-21T12:12:32" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/168_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1E88F2D7-FD66-8BE9-E5C4-CE4AB77BD934" begin="2013000" dur="12040" author="IRI" date="2010-10-21T12:17:23" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/178_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E673E4E4-50F6-B049-8716-CE4B6FEF9FFC" begin="2025040" dur="5440" author="IRI" date="2010-10-21T12:18:07" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/179_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_CFE5E645-9BF4-1DD9-56FA-CE4BC62D1FFC" begin="2030520" dur="3320" author="IRI" date="2010-10-21T12:18:19" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/181_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_40380D54-793B-8B7A-76AA-CE4BE713E10F" begin="2033880" dur="4280" author="IRI" date="2010-10-21T12:18:27" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/183_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_DF0E4BC6-096A-1A05-268A-CE4C39B895CA" begin="2045040" dur="7400" author="IRI" date="2010-10-21T12:18:49" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/186_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_B79E6E82-9881-C6C2-29C0-CE4C605A9490" begin="2052480" dur="3120" author="IRI" date="2010-10-21T12:18:59" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/188_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_22E2894C-3D8F-CEF0-4208-CE4CA080CC8A" begin="2055600" dur="21440" author="IRI" date="2010-10-21T12:19:16" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/189_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_A1AF0399-AA3D-6AC4-9F0A-CE4CC5CB8CE4" begin="2077080" dur="4680" author="IRI" date="2010-10-21T12:19:26" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/191_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_95825D8A-F17E-DCA1-A928-CE4CEF8B06FA" begin="2081760" dur="10200" author="IRI" date="2010-10-21T12:19:43" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/192_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_B6CE3C53-2C3E-A353-E97E-CE4D46A4F5A6" begin="2091960" dur="7280" author="IRI" date="2010-10-21T12:19:59" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/193_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_26B607BA-CDE2-0DED-14FE-CE4D72C56822" begin="2099240" dur="5400" author="IRI" date="2010-10-21T12:20:32" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/194_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4EB7F77F-9DCF-C072-8A27-CE4DC412F66F" begin="2104640" dur="6880" author="IRI" date="2010-10-21T12:20:39" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/195_in.jpg">
+ <title>ennemi</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ennemi</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_EC9680D1-D07A-DA0A-5A06-CE4E1D8DF229" begin="2111520" dur="14320" author="IRI" date="2010-10-21T12:21:12" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/196_in.jpg">
+ <title>jeune peul</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_85BDE555-7F40-332B-5DE9-CE429F8785A7" author="perso">
+ <title>Le don de l'épouse</title>
+ <abstract/>
+ <elements>
+ <element id="s_08CE9FFE-13F0-552E-C5E6-CE4353F1912B" begin="2701200" dur="8720" author="IRI" date="2010-10-21T12:09:00" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/229_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Alors, heureuse?</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_4152E9A4-62E7-12E1-C8E3-CE43169B02E0" begin="2829280" dur="12600" author="IRI" date="2010-10-21T15:05:44" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/236_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Aveu adultère</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_3840AE96-6EB5-282F-7F1F-CE4325ECAACD" begin="2914360" dur="18840" author="IRI" date="2010-10-21T12:08:48" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/238_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Aveu 2</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_CD9CB2C1-3BE1-5F66-33A6-CE4382151D63" begin="3043600" dur="12880" author="IRI" date="2010-10-21T12:09:14" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/244_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>don du chef</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_2C47797D-64EA-3D91-386A-CE438BAA6CFE" begin="3056480" dur="5440" author="IRI" date="2010-10-21T12:09:14" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/245_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>don de la femme</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_8101AB8B-176F-9932-B66C-CE439CE071E0" begin="3061920" dur="22720" author="IRI" date="2010-10-21T12:09:19" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/246_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>exhortation à partir</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_FB708A28-CC9D-424D-6DCC-AA27290D777B" author="perso">
+ <title>Corps et regards</title>
+ <abstract/>
+ <elements>
+ <element id="s_3E47CF4A-752B-FCB3-C3EF-AA279D5F8A58" begin="656120" dur="87080" author="IRI" date="2010-11-10T11:18:25" color="16776960" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/35_in.jpg">
+ <title>Mère et fils en départ</title>
+ <abstract>Les corps sont les points d'appui pour l'échange des regards entre la mère et le fils. Cissé donne du temps aux corps pour se déplacer, se faire face, se regarder, se dire adieu.
+Les deux personnages de retournent l'un vers l'autre.
+Plans 39-40 : Raccord dans l'axe des regards. Cela créé un effet de mouvement qui accentue l'idée du départ et de l'adieu.
+L'enchaînement des plans se fait selon différentes échelles : du plan moyen au plan rapproché, puis du plan rapproché au plan moyen.
+On voit facilement sur lignes de temps le raccourcissement puis l'allongement progressif de la durée des plans entre le début et la fin de cette séquence.
+Lorsque la mère et le fils se sont dit adieu, Cissé ne quitte pas les corps, il enchaîne sur le corps d'une femme au travail, plaçant ainsi ses deux personnages au même niveau qu'une inconnue inscrite dans le paysage. Cette fois, Cissé montre le corps au travail.</abstract>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5673C98D-3A3B-6C7B-9590-AA27A90934C2" begin="685361" dur="0" author="IRI" date="2010-10-14T11:52:32" color="3355545" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_9D73622D-D356-5209-5B55-AA27BDEE6088" begin="696200" dur="0" author="IRI" date="2010-10-14T11:52:32" color="16711680" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_DE731694-CAF4-D751-3CF1-AA282013DCC7" begin="2601544" dur="140631" author="IRI" date="2010-10-14T12:04:52" color="52479" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/226_in.jpg">
+ <title>plan 226</title>
+ <abstract>Dans cette séquence,c''est le regard de Nianankoro qui domine. C'est à travers ses yeux qu'on assiste à la scène d'envoûtement. La direction des regards prend de l'importance, comme dans la séquence des plans 39-40. Nianakoro commence par effectuer un mouvement de retournement du regard sur presque 180 degrés. Atou regarde ailleurs. L'échange des regards entre les deux personnages ne se fait que sous le coup de l'envoûtement. Mais c'est surtout Nianankoro qui regarde Atou. C'est lui qui la voit le regarder. Au fur et à mesure que nous avançons dans la séquence, le son s'abstrait presque totalement du film, ce qui accentue la dimension fantastique.
+Alternance des regards de Nianankoro vers Atou et en direction du paysage.
+Noter aussi le mouveent de la caméra qui s'approche lentement de Nianankoro pleurant. Le plan 224 en mouvement s'oppose au plan suivant 225 où c'est le visage d'Atou qui bouge très légèrement dans l'image blanche.
+Au plan 226, on passe directement du visage d'Atou à un plan très rapproché sur les pieds de Nianankoro. Le corps</abstract>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ <tag>magie</tag>
+ <tag>union</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_2DE9C39B-1F82-3F9B-E3FC-678B86529011" author="perso">
+ <title>feu</title>
+ <abstract/>
+ <elements>
+ <element id="s_A63C1286-1F05-33FA-E9A2-A0D4DC93BFC2" begin="103080" dur="6960" author="IRI" date="2010-10-12T16:25:29" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/5_in.jpg">
+ <title>plan 5</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_1F43629F-D2B4-EA8A-8419-A0D6982F7FA8" begin="247320" dur="18200" author="IRI" date="2010-10-12T16:27:19" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/13_in.jpg">
+ <title>plan 13</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_E5104027-E045-E033-A59A-A0D95E19B500" begin="897394" dur="10963" author="IRI" date="2010-10-12T16:30:32" color="13369344" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/54_in.jpg">
+ <title>plan 54</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_D9A1BB7F-0A62-4AD2-F8B0-7B9E00E70D0D" begin="1473040" dur="16080" author="IRI" date="2010-10-05T10:59:33" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/118_in.jpg">
+ <title>plan 118</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_A9494430-1315-47CB-B7C6-678D6F9D8F9B" begin="1900240" dur="24440" author="IRI" date="2010-10-12T16:36:44" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/166_in.jpg">
+ <title>plan 166</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_114E3134-DFC8-72A9-9365-678D80E5FAAC" begin="1924680" dur="85046" author="IRI" date="2010-10-12T16:38:38" color="13369344" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/167_in.jpg">
+ <title>plan 167</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_8965A265-54D4-8725-18EE-A0E16F071FF8" begin="2055600" dur="54972" author="IRI" date="2010-10-12T16:39:18" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/189_in.jpg">
+ <title>plan 189</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_DCEEC326-40CE-B032-47CE-678CCDCD6B68" begin="2330120" dur="607293" author="IRI" date="2010-10-13T11:51:38" color="13369344" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/205_in.jpg">
+ <title>plan 205</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_EA63D303-D806-1150-06C0-A0F11D5534CB" begin="2946920" dur="90806" author="IRI" date="2010-10-12T16:57:30" color="13382400" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/241_in.jpg">
+ <title>plan 241</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>nuit</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_B4A8B35A-005E-CA2F-AA3E-A0F1C8CEE407" begin="3121680" dur="17080" author="IRI" date="2010-10-12T16:57:26" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/250_in.jpg">
+ <title>plan 250</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>nuit</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_EF387F6E-02DB-64E5-F505-678BAD757BA8" begin="4491160" dur="134476" author="IRI" date="2010-10-13T11:05:25" color="13369344" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/322_in.jpg">
+ <title>plan 322</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>nuit</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_40EBEBAB-776D-258A-4227-A4D768861568" begin="4656920" dur="260654" author="IRI" date="2010-10-13T11:08:42" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/326_in.jpg">
+ <title>plan 326</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fil</tag>
+ <tag>jour</tag>
+ <tag>nuit</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_B88DC924-1518-A9DF-0C46-CDBDC8419F5C" author="perso">
+ <title>mère et fils ensemble</title>
+ <abstract/>
+ <elements>
+ <element id="s_D6287430-778B-2358-97C8-CDBF3F219DD4" begin="367440" dur="23840" author="IRI" date="2010-10-21T10:31:55" color="39168" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/20_in.jpg">
+ <title>plan 20</title>
+ <abstract>Dialogue de la mère et du fils dans la case. Caméra 3/4 dos du fils.
+La construction du plan nous amène à regarder le fond de l'image et donne au personnage de la mère alors que celle-ci est minime dans l'image.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Problématique des 180°</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4926EEC8-B856-6D00-25CF-CDBF9B7A71A0" begin="445920" dur="56560" author="IRI" date="2010-10-21T10:32:05" color="39168" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/25_in.jpg">
+ <title>plan 25</title>
+ <abstract>Dialogue mère fils dans la case. Caméra profil gauche de la mère au premier plan, masque en partie le fils et donne l'impression qu'il se touche. La mère reste la plus importante.(cela est renforcé par le détournement du regard en fin plan)</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Problématique des 180°</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_B01ABB7F-A245-C563-773C-CDBFCFA93F74" begin="571920" dur="41600" author="IRI" date="2010-10-21T11:00:48" color="39168" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/28_in.jpg">
+ <title>plan 28</title>
+ <abstract>Dialogue mère fils dans la case. Profil gauche de la mère avec fils au premier plan en amorce et flou. Position de la caméra et regard du fils nous envoient vers la mère au centre de l'image.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Problématique des 180°</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_693292C4-4FC1-E760-4C37-CDDC460F583C" begin="656120" dur="22800" author="IRI" date="2010-10-21T11:06:14" color="39168" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/35_in.jpg">
+ <title>plan 35</title>
+ <abstract>Mouvement de caméra d'accompagnement d'abord sur la mère puis sur le fils, donne l'accord pour la quête en lui donnant l'objet (prisme).
+Ce mouvement montre le changment de personnage dominant.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Mouvement de caméra</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_FE808EE3-D70E-52E7-10A8-AA576B51A2E6" author="perso">
+ <title>Paysages et sons du Mali</title>
+ <abstract>Les mouvements de caméra</abstract>
+ <elements>
+ <element id="s_240BDAA4-B1A9-63C2-2FAA-AA7341FF890E" begin="88099" dur="217601" author="IRI" date="2010-10-14T13:40:31" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/5_in.jpg">
+ <title>plan 5</title>
+ <abstract>La musique fait le lien entre différents plans.</abstract>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_3C5E656F-928B-02F9-3472-AA748E3A1908" begin="717000" dur="26760" author="IRI" date="2010-10-14T13:16:26" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/44_in.jpg">
+ <title>plan 44</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_B03E95DF-1459-FA9F-A17F-AA75240CEA13" begin="821120" dur="23640" author="IRI" date="2010-10-14T13:17:05" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/50_in.jpg">
+ <title>plan 50</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_F574DB0A-E675-DECB-6FED-AA753E72CF46" begin="909880" dur="54680" author="IRI" date="2010-10-14T13:28:51" color="16776960" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/56_in.jpg">
+ <title>plan 56</title>
+ <abstract>panoramique</abstract>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_642A47D8-176F-7E6A-2EF4-AA76715F31ED" begin="1002160" dur="87542" author="IRI" date="2010-10-14T13:36:25" color="16763904" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/66_in.jpg">
+ <title>plan 66</title>
+ <abstract>Le paysage se résume au désert</abstract>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_0824B70E-CBB0-A854-0599-AA7863F7984A" begin="1214640" dur="128685" author="IRI" date="2010-10-14T13:20:38" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/96_in.jpg">
+ <title>plan 96</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_A86CBE75-5439-4B57-21A5-AA7898F5C140" begin="1401720" dur="11160" author="IRI" date="2010-10-14T13:20:51" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/108_in.jpg">
+ <title>plan 108</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_65285DCA-72E0-18A4-5174-AA78C02260B6" begin="1510000" dur="24280" author="IRI" date="2010-10-14T13:21:01" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/123_in.jpg">
+ <title>plan 123</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_706DB567-1CB4-87A0-00DD-AA78D87435FB" begin="1628640" dur="37135" author="IRI" date="2010-10-14T13:21:07" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/139_in.jpg">
+ <title>plan 139</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_38970D3E-DA37-AA84-BC67-AA78EABFDF8B" begin="1667920" dur="50778" author="IRI" date="2010-10-14T13:21:12" color="10053171" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/150_in.jpg">
+ <title>plan 150</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_A6694D25-2F48-CCFF-13F0-AA795D2984D0" begin="2111520" dur="28057" author="IRI" date="2010-10-14T13:21:57" color="10053171" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/196_in.jpg">
+ <title>plan 196</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_42C6A940-EF08-4A5F-C419-AA84B3342B52" begin="2467960" dur="119766" author="IRI" date="2010-10-14T13:34:35" color="13369446" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/208_in.jpg">
+ <title>plan 208</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_CEE09100-7CFF-741F-6D53-AA7A1668ED9C" begin="3138800" dur="75968" author="IRI" date="2010-10-14T13:22:48" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/252_in.jpg">
+ <title>plan 252</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>jour</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1321629A-3CD9-0585-6C97-AA8606F3620A" begin="3378600" dur="42320" author="IRI" date="2010-10-14T13:36:31" color="51" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/269_in.jpg">
+ <title>plan 269</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_5638DA73-339B-5ABB-E300-AA592B1FCF78" begin="3420960" dur="226950" author="IRI" date="2010-10-14T13:28:27" color="16776960" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/271_in.jpg">
+ <title>plan 271</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>jour</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_219AF2CA-ECB1-FC44-41DB-AA7B2C968D86" begin="4035400" dur="14800" author="IRI" date="2010-10-14T13:23:45" color="39219" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/300_in.jpg">
+ <title>plan 300</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_217CCD67-583D-8FEE-6266-AA593C0C5C73" begin="4050200" dur="148672" author="IRI" date="2010-10-14T13:24:55" color="204" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/301_in.jpg">
+ <title>plan 301</title>
+ <abstract>Bleu, mouvement de caméra</abstract>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_312CCF8E-40A8-1B5A-293F-AA7C8026DE5F" begin="4340640" dur="30160" author="IRI" date="2010-10-14T13:25:07" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/314_in.jpg">
+ <title>plan 314</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_6A2137BC-4045-4D9F-60F8-AA87C1913D0C" begin="4624040" dur="32880" author="IRI" date="2010-10-14T13:37:49" color="10027110" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/325_in.jpg">
+ <title>plan 325</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_041026A3-3302-A324-5DF1-AA7CD233754C" begin="4779160" dur="35383" author="IRI" date="2010-10-14T13:38:23" color="13369344" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/327_in.jpg">
+ <title>plan 327</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_E1E0A5E5-F496-5E51-837E-AA7CE3D899B2" begin="4815360" dur="44169" author="IRI" date="2010-10-14T13:25:58" color="65535" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/329_in.jpg">
+ <title>plan 329</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_C98C4BF4-D8FA-C2C9-6328-AA7D6E382B58" begin="5029080" dur="60148" author="IRI" date="2010-10-14T13:26:15" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/346_in.jpg">
+ <title>plan 346</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_366C793E-652E-C993-905E-AA7D9F60F6CF" begin="5134440" dur="233506" author="IRI" date="2010-10-14T13:38:48" color="13369344" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/353_in.jpg">
+ <title>plan 353</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_F9529F2E-F547-639D-EC58-AA7DACA7FF4F" begin="5370120" dur="49735" author="IRI" date="2010-10-14T13:26:24" color="65535" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/380_in.jpg">
+ <title>plan 380</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7A7D7E08-D5D4-7CF2-8A58-AA89BF0EE0CD" begin="5427920" dur="67595" author="IRI" date="2010-10-14T13:39:35" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/383_in.jpg">
+ <title>plan 383</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_F07FB6AA-AA5F-5AD7-DC9B-AA814E61654D" begin="5678880" dur="191081" author="IRI" date="2010-10-14T13:30:22" color="3342336" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/398_in.jpg">
+ <title>plan 398</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>jour</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_F1B30FBD-6F8B-33AC-6EB8-AA56B87E8818" author="perso">
+ <title>Corps et terre</title>
+ <abstract>Le corps sur terre évoque l'effort, le travail, le déplacement,la fragilité de l'homme dans son environnement</abstract>
+ <elements>
+ <element id="s_9BD0E139-A05E-1E0C-4231-AA57C832AB08" begin="1002160" dur="210652" author="IRI" date="2010-10-14T12:45:01" color="10040064" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/66_in.jpg">
+ <title>plan 66</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_07EB5813-F545-A405-3DE7-AA585F748B11" begin="3378600" dur="42320" author="IRI" date="2010-10-14T12:46:24" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/269_in.jpg">
+ <title>plan 269</title>
+ <abstract>La marche comme épreuve du corps sur la terre.</abstract>
+ <audio source=""/>
+ <tags>
+ <tag>musique</tag>
+ <tag>nuit</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_66E845C4-D096-DCA9-C15A-AA5A6CC593D6" begin="5029080" dur="16360" author="IRI" date="2010-10-14T12:49:25" color="10040064" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/346_in.jpg">
+ <title>plan 346</title>
+ <abstract>Contraste des couleurs, les corps se détachent de la couleur blanche des habitations. Les corps nus des deux serviteurs du père subissent une forme de violence : celle du père et celle du baton (chute de l'un d'eux).</abstract>
+ <audio source=""/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8114BFF7-6B03-AB17-E4D3-AA5C120AD8E8" begin="5134440" dur="233506" author="IRI" date="2010-10-14T12:52:01" color="10053171" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/353_in.jpg">
+ <title>plan 353</title>
+ <abstract>Seul moment du film où l'on voit le père et le fils ensemble. Le terrain de rencontre est la terre sèche et aride. Seul le père conserve ses vêtements, les autres personnages sont torse nus. Le corps devient le lieu de l'épreuve de force. Opposition entre les corps tenus au sol et à la terre et le baton qui vole dans le ciel bleu. Opposition des couleurs.</abstract>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_E7DACD6C-503B-ECAD-8CD4-A0D20DA55AF8" author="perso">
+ <title>vent / air</title>
+ <abstract/>
+ <elements>
+ <element id="s_1EAA0725-A0D3-7A03-8C7E-A0D51778F1DB" begin="110040" dur="12720" author="IRI" date="2010-10-12T16:25:54" color="65535" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/6_in.jpg">
+ <title>plan 6</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_53884CC5-435F-5EC5-589B-A0DA14427486" begin="951960" dur="12760" author="IRI" date="2010-10-12T16:31:20" color="39423" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/58_in.jpg">
+ <title>plan 58</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>magie</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E2A1DBAB-F126-B139-C2C8-A0DFDD03D322" begin="1980520" dur="30180" author="IRI" date="2010-10-12T16:38:30" color="52479" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/173_in.jpg">
+ <title>plan 173</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_AF0F0F50-514E-A5B6-770F-A0E2F6EEA490" begin="2482440" dur="5520" author="IRI" date="2010-10-12T16:40:53" color="65535" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/209_in.jpg">
+ <title>plan 209</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_4CF8DC08-A92F-D379-B3AF-A0E6A98CFFED" begin="2672360" dur="6280" author="IRI" date="2010-10-12T16:44:55" color="52479" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/226_in.jpg">
+ <title>plan 226</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_FB9BEB48-321A-D05B-7F7A-A4E50ABCE380" begin="5370120" dur="49735" author="IRI" date="2010-10-13T11:22:59" color="65535" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/380_in.jpg">
+ <title>plan 380</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_F7AE72F7-566C-29A1-1D75-A4EA9B39D600" begin="5506520" dur="11266" author="IRI" date="2010-10-13T11:27:54" color="65484" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/388_in.jpg">
+ <title>plan 388</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_6F06479F-C02A-B4D5-233C-A4E77BF04E10" author="perso">
+ <title>Musique</title>
+ <abstract/>
+ <elements>
+ <element id="s_D00E1231-14F9-892E-3789-A4F26BE3650F" begin="103080" dur="27579" author="IRI" date="2010-10-14T11:01:28" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/5_in.jpg">
+ <title>plan 5</title>
+ <abstract>La musique fait le lien entre différents plans.</abstract>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_3A5BB805-7EBE-594C-4F5A-AA76858CD32A" begin="1002160" dur="84569" author="IRI" date="2010-10-14T13:40:53" color="13434624" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/66_in.jpg">
+ <title>plan 66</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_2F3EF42B-3F2F-7378-9945-AA838A024DF6" begin="1342680" dur="56526" author="IRI" date="2010-10-14T13:32:57" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/101_in.jpg">
+ <title>plan 101</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_481927FE-3E36-4280-0572-AA8651162EE2" begin="3378600" dur="42320" author="IRI" date="2010-10-14T13:36:39" color="51" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/269_in.jpg">
+ <title>plan 269</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_5A1FBF7B-BBB9-D01F-3DE8-AA7BFF343720" begin="4145800" dur="52920" author="IRI" date="2010-10-14T13:30:51" color="3368703" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/305_in.jpg">
+ <title>plan 305</title>
+ <abstract>mouvement de caméra,</abstract>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_14DF62EA-53E0-E7FE-CC0A-AA8839E3EA41" begin="4624040" dur="32880" author="IRI" date="2010-10-14T13:37:55" color="10027110" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/325_in.jpg">
+ <title>plan 325</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_516854E0-E52C-594D-2EF2-AA80626AF1CA" begin="4779160" dur="35383" author="IRI" date="2010-10-14T13:29:39" color="13369344" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/327_in.jpg">
+ <title>plan 327</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_9EBF8A00-E039-A3F8-74BE-AA80DC2939A2" begin="5134440" dur="233506" author="IRI" date="2010-10-14T13:29:59" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/353_in.jpg">
+ <title>plan 353</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5FA5EA7D-C5FC-AE01-1B12-A4E7C05D9F57" begin="5427920" dur="67595" author="IRI" date="2010-10-14T13:30:08" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/383_in.jpg">
+ <title>plan 383</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_5ABF03E4-8115-1014-6D50-A4ECA7F83CDA" begin="5678880" dur="191081" author="IRI" date="2010-10-14T13:30:31" color="13369344" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/398_in.jpg">
+ <title>plan 398</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>jour</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_0B2E2B1F-B50B-FEF3-3E17-CDBCEEF973B1" author="perso">
+ <title>Personnages principaux</title>
+ <abstract/>
+ <elements>
+ <element id="s_B5A58941-9B45-2A3B-62DB-CDC586319D62" begin="197520" dur="49800" author="IRI" date="2010-10-21T09:52:05" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/12_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_B6AC68E3-C023-E9C5-DC9E-CDC6DB03E4BB" begin="265520" dur="32040" author="IRI" date="2010-10-21T09:53:25" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/14_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_71E50DFB-62BE-9738-729D-CDC8439B0735" begin="315440" dur="23800" author="IRI" date="2010-10-21T09:56:12" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/16_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D458B81F-AC25-3424-0689-CDC92198A35A" begin="339240" dur="11520" author="IRI" date="2010-10-21T09:55:55" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/17_in.jpg">
+ <title>plan 17</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_66D2C136-274C-C1F7-D1A6-CDCA2D899109" begin="355960" dur="11480" author="IRI" date="2010-10-21T09:57:17" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/19_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_02320CD4-857E-CA74-7C70-CDCAFED37BA1" begin="367440" dur="23840" author="IRI" date="2010-10-21T09:59:11" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/20_in.jpg">
+ <title>mère-fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère-fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_A6E633A7-4545-5E61-5987-CDCCF66D397D" begin="391280" dur="7200" author="IRI" date="2010-10-21T10:00:03" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/21_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_FD464ADA-0757-B5C2-9616-CDCD6592E9B3" begin="398480" dur="17800" author="IRI" date="2010-10-21T10:00:29" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/22_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1462603A-2D39-8DE0-B8F3-CDCDC3433D66" begin="416280" dur="11520" author="IRI" date="2010-10-21T10:00:55" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/23_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_AD051F4F-032D-D259-91EF-CDCE1F0FC516" begin="427800" dur="18120" author="IRI" date="2010-10-21T10:01:14" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/24_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_655D7824-E0DB-B96B-BA99-CDCE769533E2" begin="445920" dur="56560" author="IRI" date="2010-10-21T10:01:50" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/25_in.jpg">
+ <title>mère-fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère-fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8B138924-EDBC-F8A2-B775-CDCF15C3523C" begin="502480" dur="6080" author="IRI" date="2010-10-21T10:02:16" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/26_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_734EDCE8-EFB2-AAC5-3C31-CDCFC5CA3B45" begin="508560" dur="63360" author="IRI" date="2010-10-21T10:03:04" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/27_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_91B4D505-FF7C-D589-8457-CDD01C17B0FD" begin="571920" dur="41600" author="IRI" date="2010-10-21T10:03:24" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/28_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1C9D1CA0-4EDF-BEDE-753F-CDD08ADF0827" begin="619520" dur="3840" author="IRI" date="2010-10-21T10:04:12" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/30_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_F6725329-E11B-B24C-9EC5-CDD2DADA645E" begin="633956" dur="9720" author="IRI" date="2010-10-21T10:07:40" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/33_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_320851D6-A3AB-53C9-7FA8-CDD45A360BFD" begin="656120" dur="22800" author="IRI" date="2010-10-21T10:08:03" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/35_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5080415A-0088-8766-6259-CDD4B22A33ED" begin="678920" dur="3680" author="IRI" date="2010-10-21T10:08:25" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/36_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_FBB4E0C9-9435-6395-5CE8-CDD504BEC1D2" begin="682600" dur="2520" author="IRI" date="2010-10-21T10:09:06" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/37_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_2D6FBE4A-3D2B-EE01-1993-CDD59D65C462" begin="685120" dur="2960" author="IRI" date="2010-10-21T10:09:20" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/38_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D14320E4-F4FE-8305-94ED-CDD5D731310D" begin="688080" dur="9320" author="IRI" date="2010-10-21T10:09:38" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/39_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_23CB1435-C2B4-F58B-4CD5-CDD61F66BAF2" begin="697400" dur="7240" author="IRI" date="2010-10-21T10:10:04" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/40_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7C83DEF4-61D3-F3D6-9671-CDD6965B3FAA" begin="704640" dur="6040" author="IRI" date="2010-10-21T10:10:27" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/41_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_B1912942-153A-15E3-52BB-CDD6DFA9AF5D" begin="710680" dur="6280" author="IRI" date="2010-10-21T10:10:43" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/42_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_9F205FB4-9493-F8BB-1D18-CDD88828F31D" begin="743760" dur="57484" author="IRI" date="2010-10-21T10:13:11" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/45_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E35FF780-E166-92EE-2AEC-CDDE0C25F56A" begin="821120" dur="23640" author="IRI" date="2010-10-21T10:18:38" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/50_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_B34D2B66-88D5-B55E-FA81-CDE0988D053F" begin="844760" dur="24480" author="IRI" date="2010-10-21T10:21:26" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/51_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_F44A69C8-4B76-CABA-9658-CDE2FDA64E54" begin="881960" dur="12800" author="IRI" date="2010-10-21T10:24:05" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/53_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_BC53EC41-E368-685A-BE6E-CDE54EE9E789" begin="921472" dur="29607" author="" date="2010-10-21T10:26:37" color="65280" src="">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_CB87DD0A-6BAE-7D30-77B4-CDE5E1360EB4" begin="964720" dur="3040" author="IRI" date="2010-10-21T10:27:07" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/59_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_869650D5-1D87-096E-934B-CDE628FD474B" begin="967760" dur="5600" author="IRI" date="2010-10-21T10:27:27" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/60_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4ABAE998-CF05-64D8-0924-CDE7B2F10D4B" begin="973360" dur="9360" author="IRI" date="2010-10-21T10:30:53" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/61_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_776999FE-4F7F-9F13-7D5D-CDEAE9244FB1" begin="991720" dur="5320" author="IRI" date="2010-10-21T10:32:44" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/63_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_2005ADA3-5E01-ACCF-8D7D-CDEC03F6F393" begin="1021960" dur="16000" author="IRI" date="2010-10-21T10:33:53" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/68_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D0BDC25A-D32E-5C04-85A6-CDEC4F93E85A" begin="1037960" dur="38240" author="IRI" date="2010-10-21T10:34:13" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/69_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_932F7BBE-E11A-F9E5-2FBF-CDECB9189EAD" begin="1076200" dur="13160" author="IRI" date="2010-10-21T10:34:37" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/70_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_CC5EDFD6-301E-E33B-CDD6-CDEE403AAC2D" begin="1113040" dur="7320" author="IRI" date="2010-10-21T10:36:23" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/73_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_A76C5EB6-526D-99C9-4207-CE02DAEC2E80" begin="1146400" dur="6000" author="IRI" date="2010-10-21T10:58:52" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/79_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D25555D0-4C28-8982-076B-CE04544E2ACA" begin="1158040" dur="3320" author="IRI" date="2010-10-21T11:00:23" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/85_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5CC162D5-8323-8A85-5C0E-CE04C7992B3C" begin="1164720" dur="3360" author="IRI" date="2010-10-21T11:00:58" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/89_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_494BFD00-27C4-3CC6-4A68-CE0A61D217EF" begin="1201800" dur="12840" author="IRI" date="2010-10-21T11:07:23" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/95_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_BE6A92B7-3C30-6C62-0B4E-CE0AFA676C72" begin="1214640" dur="31640" author="IRI" date="2010-10-21T11:07:48" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/96_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_05B46FF0-C705-6BE1-0890-CE0B8A33B8BE" begin="1262720" dur="43240" author="IRI" date="2010-10-21T11:09:05" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/99_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_BA4516F9-1290-35AE-5A45-CE0C780C299B" begin="1305960" dur="36720" author="IRI" date="2010-10-21T11:09:24" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/100_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_EFC8F20D-12B1-D128-2230-CE0CE9B2A396" begin="1342680" dur="20440" author="IRI" date="2010-10-21T11:13:40" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/101_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5AB3ED73-6428-F101-FFEB-CE11DEE84F6E" begin="1380449" dur="13630" author="" date="2010-10-21T11:15:22" color="65280" src="">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_82A90C20-5ADA-0FB3-C08F-CE1295099F13" begin="1394760" dur="6920" author="IRI" date="2010-10-21T11:16:02" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/106_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_9DD5F6FB-83E0-E70A-F34E-CE158E43833E" begin="1422291" dur="6145" author="" date="2010-10-21T11:19:19" color="65280" src="">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_6902BA19-F4AA-11DA-2D06-CE16CAB52CCC" begin="1428715" dur="10893" author="" date="2010-10-21T11:20:33" color="65280" src="">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_3C16FD43-E344-8CF8-A169-CE18F2BDFD1A" begin="1450320" dur="15640" author="IRI" date="2010-10-21T11:23:09" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/114_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_9B5A2006-5FFA-43E6-CC71-CE19E64FB3AA" begin="1470440" dur="2560" author="IRI" date="2010-10-21T11:23:57" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/116_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E96F08CE-EA42-DE2F-5E82-CE1A7391205B" begin="1473040" dur="16080" author="IRI" date="2010-10-21T11:24:38" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/118_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_A417C5B0-A5ED-A841-CD3B-CE2902B5B9FD" begin="1696861" dur="3072" author="" date="2010-10-21T11:40:25" color="65280" src="">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_0BFF90BD-0E7F-510F-E5FF-CE2A39142969" begin="1736400" dur="3520" author="IRI" date="2010-10-21T11:41:47" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/156_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_29B0279E-09A7-A64D-4B31-CE2BDB1D3355" begin="1766040" dur="14000" author="IRI" date="2010-10-21T11:43:37" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/158_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_BFF8C952-13FF-698A-6B2B-CE2C40ECA889" begin="1780040" dur="29520" author="IRI" date="2010-10-21T11:44:17" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/159_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_ED21A9FF-6E06-6B4D-0F37-CE2CC251B492" begin="1809560" dur="5280" author="IRI" date="2010-10-21T11:44:40" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/160_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_0EE6BB38-3C9B-767A-A514-CE3B70CA32A1" begin="1814840" dur="20348" author="IRI" date="2010-10-21T12:03:17" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/161_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_839B37B9-284D-ED44-737A-CE43DD4F4400" begin="1847520" dur="39920" author="IRI" date="2010-10-21T12:09:50" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/163_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4A79E2B5-2BEC-8690-FADE-CE44C33B8F6C" begin="1900240" dur="24440" author="IRI" date="2010-10-21T12:10:49" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/166_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_ED09B766-83F9-99A7-B0E1-CE46B028CF49" begin="1924680" dur="19720" author="IRI" date="2010-10-21T12:13:11" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/167_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_13DB8908-97B5-6571-2C71-CE46E9982C16" begin="1959120" dur="9320" author="IRI" date="2010-10-21T12:13:14" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/169_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E955981B-4D73-BD57-D956-CE47496B7142" begin="1968480" dur="7400" author="IRI" date="2010-10-21T12:14:17" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/171_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_EFFE0C86-EF69-E2F9-3BFF-CE48BFC1EF0A" begin="1991080" dur="6160" author="IRI" date="2010-10-21T12:16:03" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/174_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_AEAE6559-9A4D-A4A3-8FF4-CE4962E77118" begin="2005800" dur="7160" author="IRI" date="2010-10-21T12:16:02" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/176_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_442B580B-B119-F8E1-58CF-CE49FB8D1A87" begin="2038160" dur="4240" author="IRI" date="2010-10-21T12:16:29" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/184_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_71D09AA3-43AC-03DF-C036-C9A4296DE459" author="perso">
+ <title>personnages centrés</title>
+ <abstract/>
+ <elements>
+ <element id="s_96381978-366B-27FF-9944-C9A7C605A5F8" begin="294468" dur="0" author="" date="2010-10-20T14:40:57" color="16777011" src="">
+ <title/>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_822B58B4-B069-2511-FFDF-C9A81647B497" begin="685690" dur="0" author="" date="2010-10-20T14:41:12" color="16777011" src="">
+ <title/>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_C15D64D6-D998-EA3B-08A9-C9A84F48DCA5" begin="936179" dur="0" author="" date="2010-10-20T14:55:14" color="16777011" src="">
+ <title/>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_7C0EF0BB-BB4F-7A4D-E9C9-C9A8B3BF4270" begin="1055496" dur="0" author="" date="2010-10-20T14:41:37" color="16777011" src="">
+ <title/>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_3697FA44-3290-F2EB-F350-C9BC7CBAFE71" begin="1106156" dur="0" author="" date="2010-10-20T15:03:19" color="16777011" src="">
+ <title/>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_A3252210-2128-76BC-35BE-C9BD2E27BBFF" begin="1200449" dur="0" author="" date="2010-10-20T15:04:00" color="16777011" src="">
+ <title/>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_941E498C-162D-D332-27BA-C9AD33F27DDD" begin="1301471" dur="0" author="" date="2010-10-20T14:55:16" color="16777011" src="">
+ <title/>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_079107B6-E179-7000-B992-CD8BC7D75F3E" begin="3410270" dur="0" author="" date="2010-10-21T08:48:31" color="16777011" src="">
+ <title/>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_31F0538E-2A38-072C-536A-CD8CE89A756F" begin="3442320" dur="34560" author="IRI" date="2010-10-21T08:49:45" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/273_in.jpg">
+ <title>plan 273</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_5BA09963-3777-F0B4-4211-C9A452A02E5F" begin="4076663" dur="0" author="" date="2010-10-20T14:40:37" color="16777011" src="">
+ <title/>
+ <abstract>p302</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>personnages centrés</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8311EC0B-F2F7-3A59-EB15-C9CED32FFD5B" begin="5307310" dur="0" author="" date="2010-10-20T15:23:16" color="16777011" src="">
+ <title/>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_D72B087E-AD01-5806-34D2-C9CE39DE0960" begin="5779224" dur="0" author="" date="2010-10-20T15:23:16" color="16777011" src="">
+ <title/>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_EB81C652-3E01-BE42-8F32-AA478E9681F2" author="perso">
+ <title>Corps et eau</title>
+ <abstract>Voir le bout à bout correspondant : comparer les deux séquence.
+Observer les mouvements de la caméra, l'enchaînement des plans, échelle des plans, la direction des corps dans l'espace (séquence de purification de la mère).</abstract>
+ <elements>
+ <element id="s_2C90F3AF-514D-A670-2561-AA47C4C3A225" begin="1214640" dur="128685" author="IRI" date="2010-10-14T12:28:21" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/96_in.jpg">
+ <title>plan 96</title>
+ <abstract>Voir le bout à bout : comparer les deux séquences</abstract>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_2243F50A-EF65-7604-C218-AA47E098BC3C" begin="2709920" dur="78384" author="IRI" date="2010-10-14T12:27:38" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/230_in.jpg">
+ <title>plan 230</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>nuit</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_56038EB7-C4AF-6B03-1B1A-AA47F2BA7784" begin="4273160" dur="179870" author="IRI" date="2010-10-14T12:27:48" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/311_in.jpg">
+ <title>plan 311</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_3EB2DA07-C582-0908-6197-CDD3C581FEEF" author="perso">
+ <title>effet miroir</title>
+ <abstract/>
+ <elements>
+ <element id="s_EBA25E56-9B24-15BD-0666-CDD832D73E72" begin="297560" dur="17880" author="IRI" date="2010-10-21T11:48:40" color="10040319" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/15_in.jpg">
+ <title>plan 15</title>
+ <abstract>le reflet de l'oncle dans la calebasse</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>eau</tag>
+ <tag>magie</tag>
+ <tag>miroir</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1A1C5063-5DA6-DEE9-0686-CDD84574F0D1" begin="315440" dur="13370" author="IRI" date="2010-10-21T11:44:56" color="3394815" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/16_in.jpg">
+ <title>plan 16</title>
+ <abstract>GP du fils</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ <tag>lumière</tag>
+ <tag>visage</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_C3806CD2-7247-2462-779B-CDD9A9E41AC6" begin="328810" dur="10430" author="" date="2010-10-21T11:48:53" color="10040319" src="">
+ <title>plan 16</title>
+ <abstract>le visage du père dans la calebasse. Plan un peu moins serré. Zoom avant</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>eau</tag>
+ <tag>magie</tag>
+ <tag>miroir</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_FD40C443-D3AB-0B91-D65D-CDD84F08D6F8" begin="339240" dur="11520" author="IRI" date="2010-10-21T11:45:14" color="3394815" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/17_in.jpg">
+ <title>plan 17</title>
+ <abstract>visage fils gp</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ <tag>lumière</tag>
+ <tag>visage</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5D4AAA38-874F-D2D5-484D-CDD8589DDAE9" begin="350760" dur="5200" author="IRI" date="2010-10-21T11:51:04" color="10040319" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/18_in.jpg">
+ <title>plan 18</title>
+ <abstract>la calebasse sans reflet. plan réaliste (magie evacuée). Incursion des mains dans le cadre. Cadre ouvert. pt de vue neutre</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>eau</tag>
+ <tag>mains</tag>
+ <tag>réel</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_14F38893-2C3C-A996-1502-CDD85FFFCF84" begin="355960" dur="11480" author="IRI" date="2010-10-21T11:45:27" color="16751103" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/19_in.jpg">
+ <title>plan 19</title>
+ <abstract>la mère qui écoute</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ <tag>profil</tag>
+ <tag>visage</tag>
+ <tag>écoute</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D1168985-AA6C-0646-816D-CDD873F45B2E" begin="367440" dur="23840" author="IRI" date="2010-10-21T11:45:37" color="3407616" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/20_in.jpg">
+ <title>plan 20</title>
+ <abstract>la mère et le fils en reflet inversé
+plan moyen</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ <tag>intérieur</tag>
+ <tag>miroir</tag>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8F8FFB18-B7C4-8981-71B5-CDD87A9BDB65" begin="391280" dur="7200" author="IRI" date="2010-10-21T11:51:37" color="3394815" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/21_in.jpg">
+ <title>plan 21</title>
+ <abstract>le fils qui écoute</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>profil</tag>
+ <tag>visage</tag>
+ <tag>écoute</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_3D06BA7A-3B71-7360-9161-CDD880A59269" begin="398480" dur="17800" author="IRI" date="2010-10-21T11:51:39" color="16751103" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/22_in.jpg">
+ <title>plan 22</title>
+ <abstract>la mère qui parle du père et de son pouvoir magique</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>de face</tag>
+ <tag>visage</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1A3853A8-DA8D-A20A-8E86-CDD89093031E" begin="416280" dur="11520" author="IRI" date="2010-10-21T11:51:50" color="3394815" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/23_in.jpg">
+ <title>plan 23</title>
+ <abstract>le fils répond et se tourne vers la caméra. pt de vue subjectif mére</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ <tag>profil</tag>
+ <tag>visage</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_CC41920A-8220-528F-379F-CDD89C889092" begin="427800" dur="18120" author="IRI" date="2010-10-21T11:46:09" color="16751103" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/24_in.jpg">
+ <title>plan 24</title>
+ <abstract>la mère en contrechamp. pt de vue subj fils</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ <tag>visage</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_AE859B37-7E69-6DEA-0353-CDD8A533F7B6" begin="445920" dur="56560" author="IRI" date="2010-10-21T11:46:20" color="3394560" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/25_in.jpg">
+ <title>plan 25</title>
+ <abstract>reprise du plan 20 mais en effet miroir (inversé)
+Cadre lumineux (incursion de l'extérieur: porte ouverte)</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>extérieur</tag>
+ <tag>fils</tag>
+ <tag>intérieur</tag>
+ <tag>lumière</tag>
+ <tag>miroir</tag>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_9853C082-40FE-5E9E-7C0A-CDD8C18395F2" begin="502480" dur="6080" author="IRI" date="2010-10-21T11:52:16" color="16751103" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/26_in.jpg">
+ <title>plan 26</title>
+ <abstract>la mère silencieuse mais mouvement
+plein cadre GP</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ <tag>profil</tag>
+ <tag>visage</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_089C5CEC-83CD-8495-0874-CDD8CB857C78" begin="508560" dur="1880" author="IRI" date="2010-10-21T14:43:50" color="52479" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/27_in.jpg">
+ <title>plan 27</title>
+ <abstract>le fils écoute les reproches de la mère en baissant la tête puis demande son pardon (marqueur)
+cadre dans le cadre: il est piégé</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>extérieur</tag>
+ <tag>fils</tag>
+ <tag>intérieur</tag>
+ <tag>lumière</tag>
+ <tag>profil</tag>
+ <tag>visage</tag>
+ <tag>écoute</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_286395BA-B6A2-2A46-9EED-CED11628FB51" begin="510639" dur="25674" author="" date="2010-10-21T14:44:07" color="52479" src="">
+ <title>plan 27</title>
+ <abstract>le fils écoute les reproches de la mère en baissant la tête puis demande son pardon (marqueur)
+cadre dans le cadre: il est piégé</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>extérieur</tag>
+ <tag>fils</tag>
+ <tag>intérieur</tag>
+ <tag>lumière</tag>
+ <tag>profil</tag>
+ <tag>visage</tag>
+ <tag>écoute</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_51A0CE0B-8BE7-1E6F-8AC0-CED157951DD6" begin="536313" dur="35560" author="" date="2010-10-21T14:44:09" color="52479" src="">
+ <title>plan 27</title>
+ <abstract>le fils écoute les reproches de la mère en baissant la tête puis demande son pardon (marqueur)
+cadre dans le cadre: il est piégé</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>extérieur</tag>
+ <tag>fils</tag>
+ <tag>intérieur</tag>
+ <tag>lumière</tag>
+ <tag>profil</tag>
+ <tag>visage</tag>
+ <tag>écoute</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_47408D76-C1BB-C98C-A5DB-CE187B552045" begin="546680" dur="0" author="" date="2010-10-21T11:23:20" color="3342591" src="">
+ <title/>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_AC35F26F-D212-A846-1E6D-CDD8D588681A" begin="571920" dur="41300" author="IRI" date="2010-10-21T11:47:04" color="6736896" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/28_in.jpg">
+ <title>plan 28</title>
+ <abstract>fils en amorce pendant que la mère lui pardonne et lui donne les 2 objets</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>calebasse</tag>
+ <tag>fils</tag>
+ <tag>magie</tag>
+ <tag>miroir</tag>
+ <tag>mére</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_A13713A4-85CD-5F3E-AB80-CDD8E7694205" begin="613520" dur="6000" author="IRI" date="2010-10-21T11:52:26" color="3394815" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/29_in.jpg">
+ <title>plan 29</title>
+ <abstract>les mains du fils en GP qui attache l'amulette à son cou
+panoramique oblique qui suit les mains</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>magie</tag>
+ <tag>mains</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_691DC21E-B942-4250-9381-CE2590C80E95" begin="619520" dur="3160" author="IRI" date="2010-10-21T11:47:22" color="16751103" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/30_in.jpg">
+ <title>plan 30</title>
+ <abstract>plan très court GP de la mère. Elle est du côté droit du cadre
+pt de vue fils</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>de face</tag>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_955C4C9F-483C-733C-4A0D-CDB92136E871" author="perso">
+ <title>déplacements Nianankoro</title>
+ <abstract>Les déplacements de Nianankoro : au Mali, à travers les régions de brousse, des régions désertiques, les régions peuls, chez les Dogons...</abstract>
+ <elements>
+ <element id="s_E4B42F56-B35D-0DDF-3967-CDCB98F44CDA" begin="631940" dur="0" author="" date="2010-10-21T14:39:13" color="6697779" src="">
+ <title>La case est vide</title>
+ <abstract>Soma et les porteurs du pilon enfoncent la porte</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>déplacements</tag>
+ <tag>Ellipse temporelle</tag>
+ <tag>ellipse(s)</tag>
+ <tag>Nianankoro</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_29BBE92D-A0E6-8C8D-50CE-CDBAB5039DCD" begin="656120" dur="60442" author="IRI" date="2010-10-21T14:18:45" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/35_in.jpg">
+ <title>La séparation</title>
+ <abstract>La mère pousse son fils à partir; elle lui demande de remettre à l'oncle Djigui l'oeil magique de l'aile du Korê; ils se séparent.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>la mère</tag>
+ <tag>Nianankoro</tag>
+ <tag>oeil magique</tag>
+ <tag>plans rapprochés</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_514F36E8-260E-17ED-D6EC-CDC00EDE9F03" begin="909880" dur="42040" author="IRI" date="2010-10-21T11:08:06" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/56_in.jpg">
+ <title>Pause</title>
+ <abstract>Nianankoro s'arrête dans son trajet, fatigué (apparition de l'homme-hyène). Entrée dans le champ par la droite.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Brousse</tag>
+ <tag>Nianankoro</tag>
+ <tag>panoramique</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E7A4EE1D-4C5F-41DC-070C-CDC33BAB96DC" begin="1002160" dur="84884" author="IRI" date="2010-10-21T11:16:40" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/66_in.jpg">
+ <title>Terre craquelée</title>
+ <abstract>Nianankoro arrive dans un espace désertique : la terre est désséchée; il titube</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fatigue</tag>
+ <tag>gros plan</tag>
+ <tag>Nianankoro</tag>
+ <tag>plan d'ensemble</tag>
+ <tag>plongée</tag>
+ <tag>sécheresse</tag>
+ <tag>travelling d'accompagnement</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_082E978E-3DCA-3A13-2814-CDC6A1B1AB93" begin="1342680" dur="22611" author="IRI" date="2010-10-21T11:16:43" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/101_in.jpg">
+ <title>Prisonnier</title>
+ <abstract>Nianankoro est pris pour un voleur de bétail par le village Peul</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>espace fermé</tag>
+ <tag>Nianankoro</tag>
+ <tag>plan moyen</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_F3429183-B7B5-51A5-E275-CDC7964FF595" begin="1401720" dur="34020" author="IRI" date="2010-10-22T14:45:40" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/108_in.jpg">
+ <title>Arrivée au village</title>
+ <abstract>Nianankoro, prisonnier, est présenté au roi.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>espace fermé</tag>
+ <tag>Nianankoro</tag>
+ <tag>travelling d'accompagnement</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_54CACBE8-786B-4EAF-439E-CDCA7C990017" begin="1901145" dur="0" author="" date="2010-10-21T14:39:15" color="6771296" src="">
+ <title>Le rituel du tibia</title>
+ <abstract>Nianankoro, à la demande du roi, commence un rituel avec un tibia de chavil pour protéger le village des guerriers.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ellipse spatiale</tag>
+ <tag>ellipse(s)</tag>
+ <tag>Nianankoro</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_2A252C96-049F-A2C8-0E4E-CDD1123E8794" begin="2125880" dur="12680" author="IRI" date="2010-10-21T11:26:53" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/198_in.jpg">
+ <title>Retour victorieux au village</title>
+ <abstract>Nianankoro, cette fois à cheval, rentre victorieux au village peul.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Nianankoro</tag>
+ <tag>travelling d'accompagnement</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_DFF37122-16DA-9D94-126D-CDD2B7AF58DE" begin="2248755" dur="0" author="" date="2010-10-21T14:39:26" color="6771296" src="">
+ <title>Retour au village peul</title>
+ <abstract>Le roi a convoqué Attou. Elle va arriver.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ellipse spatiale</tag>
+ <tag>Nianankoro</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_25896819-4E35-2942-0866-CDD44B2F0359" begin="2601967" dur="0" author="" date="2010-10-21T14:39:30" color="6771296" src="">
+ <title>Rituel de la fertilité</title>
+ <abstract>Nianankoro s'est retiré avec Attou pour la rencdre fertile</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>ellipse spatiale</tag>
+ <tag>Nianankoro</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_0B29B9F8-7523-76FE-26A1-CDD55173784B" begin="2789115" dur="0" author="" date="2010-10-21T14:42:11" color="6771296" src="">
+ <title/>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_4AFDE934-B982-106C-299A-CDD63BC31000" begin="3061920" dur="22720" author="IRI" date="2010-10-21T11:36:01" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/246_in.jpg">
+ <title>Départ du village peul</title>
+ <abstract>Le roi fait don à Nianankoro de son épouse.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>espace fermé</tag>
+ <tag>Nianankoro</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E6E26B24-EDFB-B35D-872C-CDD84C42D608" begin="4050200" dur="176894" author="IRI" date="2010-10-21T11:40:47" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/301_in.jpg">
+ <title>Le pays dogon</title>
+ <abstract>Nianankoro et Attou arrivent en pays dogon.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Attou</tag>
+ <tag>Nianankoro</tag>
+ <tag>panoramique</tag>
+ <tag>plan de grand ensemble</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D5DE6731-D7FE-F192-3C00-CDDA5AFCD914" begin="4264520" dur="11491" author="IRI" date="2010-10-21T11:43:55" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/310_in.jpg">
+ <title>La source du Bongo</title>
+ <abstract>Nianankoro et Attou se dirigent vers la source pour se purifier.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Attou</tag>
+ <tag>Nianankoro</tag>
+ <tag>panaoramique d'accompagnement</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_CCBF5FAC-55BC-68BC-3008-CDDC4D25D502" begin="4459920" dur="31240" author="IRI" date="2010-10-21T11:47:51" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/321_in.jpg">
+ <title>Vers l'oncle Djigui</title>
+ <abstract>Le Dogons conduisent Nianankoro et Attou à l'oncle Djigui</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Attou</tag>
+ <tag>Nianankoro</tag>
+ <tag>plongée</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5597B336-CCA2-C2FB-7251-CDDD293D3737" begin="4492568" dur="0" author="" date="2010-10-21T11:50:37" color="6771296" src="">
+ <title>L'oncle Djigui</title>
+ <abstract>Nuit : Nianankoro et Attou écoutent la prédiction de l'oncle Djigui.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>Attou</tag>
+ <tag>ellipse temporelle</tag>
+ <tag>ellipse(s)</tag>
+ <tag>Nianankoro</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_B552E1A0-A9BB-3C2D-9746-CDDE8AB0719E" begin="4939200" dur="9308" author="IRI" date="2010-10-21T12:22:20" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/340_in.jpg">
+ <title>A la rencontre du père</title>
+ <abstract>Nianankoro quitte l'oncle Djigui au petit jour et doit laisser Attou.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>aile du Korê</tag>
+ <tag>Attou</tag>
+ <tag>Djigui</tag>
+ <tag>Nianankoro</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_BC4720CE-8DA6-4833-616C-CDDFB2D46F08" begin="4995920" dur="8240" author="IRI" date="2010-10-21T12:22:19" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/342_in.jpg">
+ <title>Invocation</title>
+ <abstract>Nianankoro s'arrête pour se recueillir</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>aile du Korê</tag>
+ <tag>espace fermé</tag>
+ <tag>Nianankoro</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_137D3BEA-9221-A691-5A37-CDE14F5D0888" begin="5045440" dur="6301" author="IRI" date="2010-10-21T12:22:17" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/347_in.jpg">
+ <title/>
+ <abstract>Attou veut accompagner Nianankoro.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>aile du Korê</tag>
+ <tag>Attou</tag>
+ <tag>espace fermé</tag>
+ <tag>Nianankoro</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_320B2961-D8BC-BB60-D50E-CDE2613AD809" begin="5088040" dur="5025" author="IRI" date="2010-10-21T12:22:16" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/348_in.jpg">
+ <title>Séparation</title>
+ <abstract>Nianankoro disparait dans le village</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>aile du Korê</tag>
+ <tag>espace fermé</tag>
+ <tag>Nianankoro</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5B823FD0-661F-6EF2-FBB7-CDE396FAA009" begin="5167195" dur="0" author="" date="2010-10-21T12:22:13" color="6771296" src="">
+ <title/>
+ <abstract>Nianankoro arrêté, voit arriver son père et les porteurs du pilon.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>aile du Korê</tag>
+ <tag>ellipse spatiale</tag>
+ <tag>ellipse(s)</tag>
+ <tag>gros plan</tag>
+ <tag>Nianankoro</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_132B9DDF-1801-12E1-5240-CDE3CB1A022F" begin="5181080" dur="7560" author="IRI" date="2010-10-21T12:22:11" color="6697779" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/358_in.jpg">
+ <title>L'affrontement</title>
+ <abstract>Nianankoro s'avance, décidé, vers son père.</abstract>
+ <audio source="undefined"/>
+ <tags>
+ <tag>aile du Korê</tag>
+ <tag>espace ouvert</tag>
+ <tag>Nianankoro</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_730271AC-1019-81A8-8475-C9B6602CEEB1" author="perso">
+ <title>gros plans focale longue</title>
+ <abstract/>
+ <elements>
+ <element id="s_A3D0D4E0-8945-F966-B355-C9BA88AC5051" begin="502480" dur="6080" author="IRI" date="2010-10-20T15:01:06" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/26_in.jpg">
+ <title>plan 26</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_053F4BC0-4155-244B-0B60-C9B77E9BE020" begin="1445360" dur="4960" author="IRI" date="2010-10-20T14:57:47" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/113_in.jpg">
+ <title>plan 113</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_DBC8FB6A-C4D5-7C59-8D12-CD887352A40F" begin="3476880" dur="9800" author="IRI" date="2010-10-21T08:47:59" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/274_in.jpg">
+ <title>plan 274</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_8CA23162-1EBC-018B-DD4D-CD88362DB8FE" begin="3507840" dur="8840" author="IRI" date="2010-10-21T08:44:53" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/276_in.jpg">
+ <title>plan 276</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_54FFAC79-90D4-6626-8150-CD881AA31A6F" begin="3516680" dur="5960" author="IRI" date="2010-10-21T08:44:37" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/277_in.jpg">
+ <title>plan 277</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_927300B7-7076-C15D-94DC-CD83A67262DA" begin="3618280" dur="18520" author="IRI" date="2010-10-21T08:44:30" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/282_in.jpg">
+ <title>plan 282</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_BF12E69C-2261-818B-9ED7-CD830DC1B513" begin="3742520" dur="6000" author="IRI" date="2010-10-21T08:39:38" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/288_in.jpg">
+ <title>plan 288</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_5CD452DD-1F1E-A000-5B09-AA4CF59085A5" author="perso">
+ <title>Corps et feu</title>
+ <abstract/>
+ <elements>
+ <element id="s_C10F8BDA-C2D9-752C-E8DA-AA4D5B02DF90" begin="87105" dur="21927" author="IRI" date="2010-10-14T12:36:28" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/5_in.jpg">
+ <title>plan 5</title>
+ <abstract>Le film s'ouvre sur la lumière rougeoyante du feu (le soleil), puis sur le corps d'un animal criant sous les flammes. L'effet de violence est renforcé par la musique et le retour au plan sur le soleil levant. A la musique succède un son strident qui fair le lien avec le plan suivant (plan 5).</abstract>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_D2C47B64-94C4-2AA6-0B94-AA50F219A787" begin="886904" dur="20429" author="IRI" date="2010-10-14T12:38:20" color="13369344" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/54_in.jpg">
+ <title>plan 54</title>
+ <abstract>On retoruve ici le corps au travail. Village de forgerons. Gros plan sur le corps au contact du feu.</abstract>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_9C6166D2-EBF3-1802-38AD-AA51D6EF133A" begin="1900240" dur="24440" author="IRI" date="2010-10-14T12:38:31" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/166_in.jpg">
+ <title>plan 166</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_56FBCBB4-5D22-4CCB-89D0-35C2F8BC8079" author="perso">
+ <title>Personnages principaux</title>
+ <abstract/>
+ <elements>
+ <element id="s_D2AD336D-F44A-DC89-8F9D-35C2F8BC23EE" begin="197520" dur="49800" author="IRI" date="2010-10-21T09:52:05" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/12_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7A2F9884-DED1-AC1C-0C79-35C2F8BDCCCC" begin="265520" dur="32040" author="IRI" date="2010-10-21T09:53:25" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/14_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4069AC66-8A85-4703-AA15-35C2F8BDAD1B" begin="315440" dur="23800" author="IRI" date="2010-10-21T09:56:12" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/16_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D601D27B-E148-FB3B-FC9A-35C2F8BD04CD" begin="339240" dur="11520" author="IRI" date="2010-10-21T09:55:55" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/17_in.jpg">
+ <title>plan 17</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_953DB804-749D-6841-BF35-35C2F8BDA778" begin="355960" dur="11480" author="IRI" date="2010-10-21T09:57:17" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/19_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8B17DD5D-5135-271E-A057-35C2F8BE2AD9" begin="367440" dur="23840" author="IRI" date="2010-10-21T09:59:11" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/20_in.jpg">
+ <title>mère-fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère-fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_EA1D1406-47E8-B158-C999-35C2F8C3A42F" begin="391280" dur="7200" author="IRI" date="2010-10-21T10:00:03" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/21_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E6E31BE7-83EB-812B-0D82-35C2F8C3A082" begin="398480" dur="17800" author="IRI" date="2010-10-21T10:00:29" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/22_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5133EEA8-FF14-5197-28F5-35C2F8C42D77" begin="416280" dur="11520" author="IRI" date="2010-10-21T10:00:55" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/23_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_12C9FE1D-7789-029C-913E-35C2F8C4B8E5" begin="427800" dur="18120" author="IRI" date="2010-10-21T10:01:14" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/24_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_9633C674-8E9A-9B71-EE3A-35C2F8C4AB64" begin="445920" dur="56560" author="IRI" date="2010-10-21T10:01:50" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/25_in.jpg">
+ <title>mère-fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère-fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5AD5D178-85AD-CF98-605B-35C2F8C5391A" begin="502480" dur="6080" author="IRI" date="2010-10-21T10:02:16" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/26_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D40983C3-6E55-7D42-718A-35C2F8C5C381" begin="508560" dur="63360" author="IRI" date="2010-10-21T10:03:04" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/27_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7A5B5DBB-D496-C2C4-170D-35C2F8C656F6" begin="571920" dur="41600" author="IRI" date="2010-10-21T10:03:24" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/28_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_560AAF9A-111A-AA43-AB95-35C2F8C6CB7D" begin="619520" dur="3840" author="IRI" date="2010-10-21T10:04:12" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/30_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_2559475B-E08F-A1CF-64A2-35C2F8C69191" begin="633956" dur="9720" author="IRI" date="2010-10-21T10:07:40" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/33_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E98B93CF-3CEF-D16B-AEAB-35C2F8C7AD0C" begin="656120" dur="22800" author="IRI" date="2010-10-21T10:08:03" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/35_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_EA5F6CEA-F380-5BE0-01BB-35C2F8C79E5D" begin="678920" dur="3680" author="IRI" date="2010-10-21T10:08:25" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/36_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_18357439-6CF7-AA99-0F84-35C2F8C7035F" begin="682600" dur="2520" author="IRI" date="2010-10-21T10:09:06" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/37_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_66B03467-5C7F-E068-A195-35C2F8C787F0" begin="685120" dur="2960" author="IRI" date="2010-10-21T10:09:20" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/38_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D705AD12-A386-7D31-F035-35C2F8C8C902" begin="688080" dur="9320" author="IRI" date="2010-10-21T10:09:38" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/39_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7839CC2C-16D1-C3D7-629C-35C2F8C81CD0" begin="697400" dur="7240" author="IRI" date="2010-10-21T10:10:04" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/40_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_88E958AC-8C32-F8E7-9246-35C2F8C87309" begin="704640" dur="6040" author="IRI" date="2010-10-21T10:10:27" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/41_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E9760513-A0EF-780D-56EE-35C2F8C965A1" begin="710680" dur="6280" author="IRI" date="2010-10-21T10:10:43" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/42_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_86A66568-403E-35B7-BFE1-35C2F8C98840" begin="743760" dur="57484" author="IRI" date="2010-10-21T10:13:11" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/45_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_45867E2A-9722-0401-216D-35C2F8CA7303" begin="821120" dur="23640" author="IRI" date="2010-10-21T10:18:38" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/50_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_82DEDBA6-1C95-B730-0928-35C2F8CA1A7C" begin="844760" dur="24480" author="IRI" date="2010-10-21T10:21:26" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/51_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_B2E7F56F-1902-18F1-AEB4-35C2F8CAB552" begin="881960" dur="12800" author="IRI" date="2010-10-21T10:24:05" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/53_in.jpg">
+ <title>père</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E9F7373F-DD45-8742-EA45-35C2F8CAF723" begin="921472" dur="29607" author="" date="2010-10-21T10:26:37" color="65280" src="">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7697C7C5-AD27-9900-DECB-35C2F8CBCAB2" begin="964720" dur="3040" author="IRI" date="2010-10-21T10:27:07" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/59_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5A169C1B-2534-FA0D-0514-35C2F8CB9270" begin="967760" dur="5600" author="IRI" date="2010-10-21T10:27:27" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/60_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_A11B138B-AC33-C014-CBC5-35C2F8CB1C6B" begin="973360" dur="9360" author="IRI" date="2010-10-21T10:30:53" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/61_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_E719EDEB-F448-DA29-FD4B-35C2F8CCDCE4" begin="991720" dur="5320" author="IRI" date="2010-10-21T10:32:44" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/63_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_A0DA98FA-0006-4873-267B-35C2F8CCF057" begin="1021960" dur="16000" author="IRI" date="2010-10-21T10:33:53" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/68_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_BD938938-0252-502A-A0C9-35C2F8CCB094" begin="1037960" dur="38240" author="IRI" date="2010-10-21T10:34:13" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/69_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_A8725B32-AF64-559A-1BC0-35C2F8CD8727" begin="1076200" dur="13160" author="IRI" date="2010-10-21T10:34:37" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/70_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_55026E1C-3C59-3DE6-E900-35C2F8CD653C" begin="1113040" dur="7320" author="IRI" date="2010-10-21T10:36:23" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/73_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4EBEE824-CE37-6D1D-8835-35C2F8CE1221" begin="1146400" dur="6000" author="IRI" date="2010-10-21T10:58:52" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/79_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D3DF8C73-4972-3E53-0950-35C2F8CE92A2" begin="1158040" dur="3320" author="IRI" date="2010-10-21T11:00:23" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/85_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_8FFBF4DD-B576-178D-6EF3-35C2F8CEF9B8" begin="1164720" dur="3360" author="IRI" date="2010-10-21T11:00:58" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/89_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_C06488CB-8ECF-4F58-3CB9-35C2F8CE8F72" begin="1201800" dur="12840" author="IRI" date="2010-10-21T11:07:23" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/95_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_60871142-D186-7ACE-4D66-35C2F8CF6773" begin="1214640" dur="31640" author="IRI" date="2010-10-21T11:07:48" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/96_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_EA6BCF42-0E6D-B39F-A640-35C2F8CF3391" begin="1262720" dur="43240" author="IRI" date="2010-10-21T11:09:05" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/99_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5E2617D6-C587-6B8B-FBCA-35C2F8CF8545" begin="1305960" dur="36720" author="IRI" date="2010-10-21T11:09:24" color="10027008" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/100_in.jpg">
+ <title>mère</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>mère</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_5672AFDD-D873-7153-4301-35C2F8D00D97" begin="1342680" dur="20440" author="IRI" date="2010-10-21T11:13:40" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/101_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_389D2DD4-C968-ED43-091E-35C2F8D0328A" begin="1380449" dur="13630" author="" date="2010-10-21T11:15:22" color="65280" src="">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_2A957B82-6FA8-064F-EAC3-35C2F8D14277" begin="1394760" dur="6920" author="IRI" date="2010-10-21T11:16:02" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/106_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_D511AAA9-0297-ACBF-0D9C-35C2F8D164F8" begin="1422291" dur="6145" author="" date="2010-10-21T11:19:19" color="65280" src="">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7353318F-0435-9EC8-AABA-35C2F8D14E6F" begin="1428715" dur="10893" author="" date="2010-10-21T11:20:33" color="65280" src="">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_176F0D6B-AC6D-5DDC-A395-35C2F8D1CC3D" begin="1450320" dur="15640" author="IRI" date="2010-10-21T11:23:09" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/114_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1F8F2944-9DCD-09F0-B7B6-35C2F8D2C866" begin="1470440" dur="2560" author="IRI" date="2010-10-21T11:23:57" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/116_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7351FBD3-380A-89F7-DBC3-35C2F8D207F1" begin="1473040" dur="16080" author="IRI" date="2010-10-21T11:24:38" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/118_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_05FA11A0-C22D-95AA-BC7E-35C2F8D3A3B5" begin="1696861" dur="3072" author="" date="2010-10-21T11:40:25" color="65280" src="">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_DB69C784-1246-0AF8-B845-35C2F8D42ECE" begin="1736400" dur="3520" author="IRI" date="2010-10-21T11:41:47" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/156_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4CD063BC-69E6-F323-322B-35C2F8D46ED4" begin="1766040" dur="14000" author="IRI" date="2010-10-21T11:43:37" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/158_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_2E97DBEA-9326-B746-9354-35C2F8D42997" begin="1780040" dur="29520" author="IRI" date="2010-10-21T11:44:17" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/159_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4B4E5F7F-A64A-C1B1-3CCF-35C2F8D4E89B" begin="1809560" dur="5280" author="IRI" date="2010-10-21T11:44:40" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/160_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_561EC3EF-F916-0836-9DD9-35C2F8D5721E" begin="1814840" dur="20348" author="IRI" date="2010-10-21T12:03:17" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/161_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_A1FB7328-298A-0CF9-A3A6-35C2F8D511E0" begin="1847520" dur="39920" author="IRI" date="2010-10-21T12:09:50" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/163_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_75440968-A636-533D-70EF-35C2F8D685F0" begin="1900240" dur="24440" author="IRI" date="2010-10-21T12:10:49" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/166_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1E2EE75D-EEDD-4366-2B73-35C2F8D6D457" begin="1924680" dur="19720" author="IRI" date="2010-10-21T12:13:11" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/167_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1167B315-5087-065E-8A9C-35C2F8D631C8" begin="1959120" dur="9320" author="IRI" date="2010-10-21T12:13:14" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/169_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_C349816A-E056-AE90-2088-35C2F8D73AF1" begin="1968480" dur="7400" author="IRI" date="2010-10-21T12:14:17" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/171_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_7D0327F0-52FA-58CB-5DA6-35C2F8D781C7" begin="1991080" dur="6160" author="IRI" date="2010-10-21T12:16:03" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/174_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_EEB195D3-5790-B7D7-3060-35C2F8D7F45E" begin="2005800" dur="7160" author="IRI" date="2010-10-21T12:16:02" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/176_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_70ED817D-ACE0-8843-F472-35C2F8D741D2" begin="2038160" dur="4240" author="IRI" date="2010-10-21T12:16:29" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/184_in.jpg">
+ <title>fils</title>
+ <abstract/>
+ <audio source="undefined"/>
+ <tags>
+ <tag>fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_20C7EAD4-D58E-BA7E-8A14-7BA028A01AC5" author="perso">
+ <title>Blanc</title>
+ <abstract/>
+ <elements>
+ <element id="s_EBE59BD1-38D3-F268-2CF4-7BA18A7EE26E" begin="1566120" dur="3400" author="IRI" date="2010-10-05T11:03:25" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/128_in.jpg">
+ <title>plan 128</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_4859B685-BEF4-2AA2-47A5-7BA061485D1A" begin="1638600" dur="9960" author="IRI" date="2010-10-05T11:02:12" color="16777215" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/141_in.jpg">
+ <title>plan 141</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_DE040282-B189-5BCC-499C-A4E44D823F68" begin="5370120" dur="30320" author="IRI" date="2010-10-13T11:20:53" color="13421772" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/380_in.jpg">
+ <title>plan 380</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>jour</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_CA7A07F8-FF38-362B-980B-A0DAA712A4F5" author="perso">
+ <title>Magie et présages</title>
+ <abstract/>
+ <elements>
+ <element id="s_1815CBCE-746A-BD07-35F6-A0F376408DCA" begin="297560" dur="17880" author="IRI" date="2010-10-12T16:58:51" color="26265" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/15_in.jpg">
+ <title>plan 15</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_1E54F759-04CF-1D0B-8A53-A0DAC415CAF9" begin="951960" dur="49159" author="IRI" date="2010-10-12T16:32:19" color="39423" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/58_in.jpg">
+ <title>plan 58</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>magie</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_62E160F3-3FA2-B949-6C19-A0DD4E2023FC" begin="1473040" dur="38276" author="IRI" date="2010-10-12T16:35:21" color="16711833" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/118_in.jpg">
+ <title>plan 118</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_24060692-6E84-007C-9C75-A0E3EA963F0B" begin="2482440" dur="119686" author="IRI" date="2010-10-12T16:43:11" color="65535" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/209_in.jpg">
+ <title>plan 209</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_DC5EFB12-5C94-10D4-8EFA-A0E73C693093" begin="2684880" dur="25031" author="IRI" date="2010-10-12T16:45:40" color="16711833" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/228_in.jpg">
+ <title>plan 228</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_50C46B88-F40B-AA9C-DC92-A4CB111D4613" begin="3341760" dur="36840" author="IRI" date="2010-10-13T10:53:16" color="16711884" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/268_in.jpg">
+ <title>plan 268</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_6A5CD390-B6DB-9F58-E14B-A4D0F2F1D24A" begin="3420960" dur="630945" author="IRI" date="2010-10-13T11:00:09" color="16711833" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/271_in.jpg">
+ <title>plan 271</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>jour</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4B422914-F10E-300B-6F9C-A4D19F378CFD" begin="4047400" dur="0" author="" date="2010-10-13T11:00:50" color="3342489" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_438572EC-FE1E-0F53-BD61-A4D55C0D5B26" begin="4491160" dur="313797" author="IRI" date="2010-10-13T11:07:56" color="16711884" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/322_in.jpg">
+ <title>plan 322</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ <tag>nuit</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_899BBE7D-F12B-66AC-9E23-A4D9D50EB016" begin="4939200" dur="89852" author="IRI" date="2010-10-13T11:10:52" color="16724889" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/340_in.jpg">
+ <title>plan 340</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_55E2FF16-B1A8-27B5-21EF-A4DF352AFFFE" begin="5181080" dur="60891" author="IRI" date="2010-10-13T11:16:23" color="16724940" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/358_in.jpg">
+ <title>plan 358</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_5EFB310D-0A9C-7C30-0B5F-A4DF8756B873" begin="5195503" dur="0" author="" date="2010-10-13T11:16:21" color="6684825" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_DAC75412-4463-5FF3-7C4C-A4E4B241129D" begin="5370120" dur="30320" author="IRI" date="2010-10-13T11:21:16" color="16724889" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/380_in.jpg">
+ <title>plan 380</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>jour</tag>
+ <tag>petit fils</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_4C1C66A5-0DA8-FD05-F4F6-A4E8D0B9BA1E" begin="5496920" dur="129915" author="IRI" date="2010-10-13T11:27:24" color="16711884" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/387_in.jpg">
+ <title>plan 387</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ <tag>père</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_0670BE67-5499-1A88-5D4E-CE48205DE5A8" author="perso">
+ <title>Arrivée au Pays Dogon</title>
+ <abstract/>
+ <elements>
+ <element id="s_9A249878-9173-6BE6-5073-CE49B14CE4DF" begin="4210920" dur="35800" author="IRI" date="2010-10-21T12:15:57" color="65331" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/307_in.jpg">
+ <title>Au pays Dogon</title>
+ <abstract>1er contact : explication quête + désir de purification</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_C8FCFFF0-7981-AA5E-6A28-CDB7FD92B208" author="perso">
+ <title>Voyage initiatique</title>
+ <abstract/>
+ <elements>
+ <element id="s_9B34AB69-B72A-B1D3-960A-CDBAF8C69706" begin="656120" dur="22800" author="IRI" date="2010-10-21T11:57:52" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/35_in.jpg">
+ <title>départ</title>
+ <abstract>dernière scène avec la mère</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_F06A5AEC-E1D9-B043-5D8F-CDBA98EBF040" begin="678920" dur="3680" author="IRI" date="2010-10-21T11:46:34" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/36_in.jpg">
+ <title>départ</title>
+ <abstract>don de la pierre</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_D53236A8-7159-6F47-4EB4-CDBE4C21223C" begin="697400" dur="7240" author="IRI" date="2010-10-21T11:58:04" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/40_in.jpg">
+ <title>départ</title>
+ <abstract>Il s'en va</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_CA4C4ED9-FFD3-3252-A994-CDBF65284A6C" begin="710680" dur="6280" author="IRI" date="2010-10-21T11:47:36" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/42_in.jpg">
+ <title>départ</title>
+ <abstract>Il part.</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_47621731-C4F8-1D5A-7FA8-CDC13DBF35E8" begin="909880" dur="42040" author="IRI" date="2010-10-21T11:58:06" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/56_in.jpg">
+ <title>En chemin</title>
+ <abstract>Pause avant arrivée 1er village</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_0B59D6A9-01A8-FEF6-12B4-CDC2666FD078" begin="951960" dur="12760" author="IRI" date="2010-10-21T11:47:22" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/58_in.jpg">
+ <title>en chemin</title>
+ <abstract>rencotre lépoard</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_0B4FEA76-2CA7-3A18-2577-CDC38EEEA4D1" begin="973360" dur="9360" author="IRI" date="2010-10-21T11:47:45" color="204" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/61_in.jpg">
+ <title>en chemin</title>
+ <abstract>contrechamp léopard, surprise</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_72BE052F-EB32-08C1-3041-CDC4099CC481" begin="982720" dur="9000" author="IRI" date="2010-10-21T11:58:08" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/62_in.jpg">
+ <title>en chemin</title>
+ <abstract>prédiction léopard</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_D4B401A9-54CB-3F61-631B-CDC5799A54E8" begin="997040" dur="5080" author="IRI" date="2010-10-21T11:47:56" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/64_in.jpg">
+ <title>en chemin</title>
+ <abstract>sms lépoard</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_3BB2EB8E-09B1-6760-4587-CDC4F6F8DF1A" begin="1002160" dur="19760" author="IRI" date="2010-10-21T11:48:13" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/66_in.jpg">
+ <title>en chemin</title>
+ <abstract>Gros plan pied sur sol aride</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_097F7CBB-B747-2DD5-1746-CDC5EA30C6C7" begin="1021960" dur="16000" author="IRI" date="2010-10-21T11:58:09" color="6771296" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/68_in.jpg">
+ <title>en chemin</title>
+ <abstract>plan d'ensemble paysage aride solitude avant 1er village</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_322DF207-F51C-7704-3766-CDC74B8F9469" begin="1037960" dur="38240" author="IRI" date="2010-10-21T11:58:16" color="255" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/69_in.jpg">
+ <title>en chemin</title>
+ <abstract>repère des traces d'eau</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_0C32E0B9-8F2D-6206-3210-CDC83CE3D167" begin="1076200" dur="13160" author="IRI" date="2010-10-21T11:58:28" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/70_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>aperçoit qqch</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_FDF911DD-318B-EB81-F549-CDC90022C950" begin="1089360" dur="3080" author="IRI" date="2010-10-21T11:49:39" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/71_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>contrechamp : on l'a vu</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_2795A63F-DE33-9B0C-F72C-CDCA8B2E2304" begin="1131640" dur="10280" author="IRI" date="2010-10-21T11:58:24" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/76_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Au milieu du troupeau</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_94E01BA5-7CDC-CC02-8697-CDCC5EBE36DE" begin="1146400" dur="6000" author="IRI" date="2010-10-21T11:58:28" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/79_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>tjs au milieu du troupeau</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_43A512C4-5F8D-3415-ACCF-CDCD428BB903" begin="1152440" dur="2160" author="IRI" date="2010-10-21T11:50:10" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/81_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>1er contact : "au voleur"</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_2A7BFEAB-FA93-5F74-5903-CDCEEEAADD20" begin="1201800" dur="12840" author="IRI" date="2010-10-21T11:50:22" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/95_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>arrestation + méfiance</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_47641345-3F96-18EC-8F75-CDD248CD9060" begin="1342680" dur="20440" author="IRI" date="2010-10-21T11:50:33" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/101_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>le prisonnier</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_CB68E787-B6B1-5E56-47DF-CDD41598DABA" begin="1440240" dur="5120" author="IRI" date="2010-10-21T11:50:38" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/112_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Présentation au roi.</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_DFDF920C-0506-6283-E02D-CDD55894F26F" begin="1450320" dur="15640" author="IRI" date="2010-10-21T11:50:43" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/114_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Défense menaçante: je vous massacrais tous" + investi d'une mission</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_DAD15916-C73C-8C6A-C336-CDD84AA3EB82" begin="1473040" dur="16080" author="IRI" date="2010-10-21T11:50:56" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/118_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>1er usage de son pouvoir contre condamnation</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_DF93291A-469D-C7F3-C4EB-CDDAAB55F2EC" begin="1900240" dur="24440" author="IRI" date="2010-10-21T11:51:04" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/166_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>utilise son pouvoir pour aider le village</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_8F0962CE-DBBD-8C1A-5EB8-CDDBD493F3C9" begin="2025040" dur="5440" author="IRI" date="2010-10-21T11:51:08" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/179_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Utilisation de son pourvoir sur les abeilles</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_6D692329-8C5C-E68B-44F9-CDDCC28C6EC0" begin="2045040" dur="7400" author="IRI" date="2010-10-21T11:51:13" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/186_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>La fuite des ennemis</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_A8CBDA43-156E-E476-38AC-CDDD956CC8C4" begin="2099240" dur="5400" author="IRI" date="2010-10-21T11:51:17" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/194_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Déroute finale de l'ennemi grâce au feu</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_179EFB63-FDD4-AD25-98A2-CDDE9AB71848" begin="2104640" dur="6880" author="IRI" date="2010-10-21T11:51:23" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/195_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>gros plan feu</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_69D255B7-3730-39BD-ECF2-CDDFA5ED8791" begin="2182920" dur="8160" author="IRI" date="2010-10-21T11:51:27" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/201_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>le roi l'implore de rester</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_AA7BDB51-F1E6-8902-3D56-CDE01282AA1D" begin="2191080" dur="10080" author="IRI" date="2010-10-21T11:51:33" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/202_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Renonce à rester, évoque sa mission</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_D0BA12EA-ED96-71E5-DA15-CDE1859A1D91" begin="2291716" dur="38327" author="IRI" date="2010-10-21T11:51:41" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/204_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>2ème demande du roi : guérir la stérilité de sa femme, 1er contact avec celle qui deviendra son épouse</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_14459005-67AA-8F37-DAA4-CDE50B95F650" begin="2701200" dur="8720" author="IRI" date="2010-10-21T11:51:50" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/229_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Alors, heureuse?</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_C70EB2C1-DDF9-D647-FD35-CDE89569D09F" begin="2829280" dur="12600" author="IRI" date="2010-10-21T11:51:58" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/236_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Aveu adultère</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_548A92F2-B549-B90A-2F9D-CDE94E6951BA" begin="2914360" dur="18840" author="IRI" date="2010-10-21T11:52:02" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/238_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Aveu 2</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_81F53FE2-2EEB-5A12-8881-CDEC5B5CBB40" begin="3043600" dur="12880" author="IRI" date="2010-10-21T11:52:12" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/244_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>don du chef</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_23C6A821-4CE5-9910-B9F8-CDECC9E5E13F" begin="3056480" dur="5440" author="IRI" date="2010-10-21T11:52:17" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/245_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>don de la femme</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_81AF4450-4CE5-6B46-29D3-CDED267C6F0E" begin="3061920" dur="22720" author="IRI" date="2010-10-21T11:52:24" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/246_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>exhortation à partir</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_D9B50A22-3A3D-52C8-B14B-CDEFE1576F34" begin="3121680" dur="17080" author="IRI" date="2010-10-21T11:52:41" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/250_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Le départ into the wild</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_C3F0AEA8-FED3-9217-63B3-CE04B9ECE34B" begin="4050200" dur="14680" author="IRI" date="2010-10-21T12:10:42" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/301_in.jpg">
+ <title>En chemin vers le pays Dogon</title>
+ <abstract>Plan d'ensmble paysage montagneux petit matin</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_3C4701DE-5C3E-CF74-8849-CE05B7E4A036" begin="4064880" dur="29400" author="IRI" date="2010-10-21T11:52:57" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/302_in.jpg">
+ <title>En chemin vers le pays Dogon</title>
+ <abstract>Le couple au matin</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_71637BE1-82F9-EDA3-4408-CE06629CF4B3" begin="4094280" dur="28880" author="IRI" date="2010-10-21T11:53:01" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/303_in.jpg">
+ <title>En chemin vers le pays Dogon</title>
+ <abstract>Plan ensemble paysage Jour</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_6756CBB0-15E3-4E8C-42C1-CE083B742426" begin="4123160" dur="22640" author="IRI" date="2010-10-21T11:53:08" color="16776960" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/304_in.jpg">
+ <title>En chemin vers le pays Dogon</title>
+ <abstract>Progression du couple dans paysage escarpé, journée</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_A8BCDE27-60F8-7865-A08D-CE0989229DF7" begin="4210920" dur="35800" author="IRI" date="2010-10-21T11:53:23" color="65331" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/307_in.jpg">
+ <title>Au pays Dogon</title>
+ <abstract>1er contact : explication quête + désir de purification</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_30E52241-6041-ED30-046B-CE0B68C059DF" begin="4284280" dur="49680" author="IRI" date="2010-10-21T11:53:45" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/312_in.jpg">
+ <title>Au pays Dogon</title>
+ <abstract>La purification</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_76E17EF7-409A-9D43-1780-CE0C944025AA" begin="4340640" dur="30160" author="IRI" date="2010-10-21T11:53:50" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/314_in.jpg">
+ <title>Au pays Dogon</title>
+ <abstract>Purification fille = ordre ; explication origine source</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_B963C58E-8991-8DA9-C83C-CE0E329F2258" begin="4370800" dur="29200" author="IRI" date="2010-10-21T11:53:53" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/315_in.jpg">
+ <title>Au pays Dogon</title>
+ <abstract>Purification femme</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_A989D95D-5FF5-AF9A-3C11-CE0F6C779ACB" begin="4426280" dur="26720" author="IRI" date="2010-10-21T11:54:28" color="65280" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/318_in.jpg">
+ <title>Au pays Dogon</title>
+ <abstract>Tahiti douche</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_816A388C-CEB0-7948-AD92-CE1212D19504" begin="4495720" dur="111400" author="IRI" date="2010-10-21T11:54:38" color="16711935" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/323_in.jpg">
+ <title>Auprès de l'oncle</title>
+ <abstract>Révélation de la venue d'un fils et qu'un destin tragique attend Nianankoro + aveu du rôle de sa famille auprès du peuple</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_43D5A705-ED90-0598-793D-CE14F76CA3A7" begin="4607120" dur="16920" author="IRI" date="2010-10-21T11:55:39" color="16711935" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/324_in.jpg">
+ <title>Chez l'oncle</title>
+ <abstract>Gros plan sur le feu : malédiction frappant la famille</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_6F09B5E1-507A-D636-ADDD-CE1622024837" begin="4624040" dur="32880" author="IRI" date="2010-10-21T11:55:42" color="16711935" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/325_in.jpg">
+ <title>chez l'oncle</title>
+ <abstract>Rituel de la transmission : panoramique sur la vlalée de nuit
+Révélation que la fin est proche</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_7E6003AD-71C5-D031-3FA6-CE1901DA3357" begin="4656920" dur="30985" author="IRI" date="2010-10-21T11:55:48" color="16711935" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/326_in.jpg">
+ <title>chez l'oncle</title>
+ <abstract>Annonce de la mutation finale</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_8927180A-D191-1119-BDEA-CE1D85318A8B" begin="4815360" dur="26320" author="IRI" date="2010-10-21T11:55:56" color="16711935" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/329_in.jpg">
+ <title>Chez l'oncle</title>
+ <abstract>Remise de l'oeil de Koré, l'oncle va chercher l'aile</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_D054E709-2FEC-9178-62B2-CE209C37ED9E" begin="4875480" dur="32080" author="IRI" date="2010-10-21T11:56:00" color="16711935" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/333_in.jpg">
+ <title>Chez l'oncle</title>
+ <abstract>Le pierre est glissée dans son fourreau sur l'aile</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_B8C7CD8A-944A-3C3A-B8E7-CE214345F58D" begin="4912200" dur="7320" author="IRI" date="2010-10-21T11:56:06" color="16711935" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/335_in.jpg">
+ <title>chez l'oncle</title>
+ <abstract>Fin de la quête: aller à la rencontre du père avec l'aile.</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_1F8039C5-0213-A38A-294E-CE23CF46F341" begin="5045440" dur="42600" author="IRI" date="2010-10-21T11:56:23" color="13395456" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/347_in.jpg">
+ <title>en route vers le duel final</title>
+ <abstract>Détermination à aller au bout de sa quête : il se dévêt, lui confie son vêtement pour son fils</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_859A884B-FCCE-2863-A399-CE257CDACC56" begin="5105640" dur="12760" author="IRI" date="2010-10-21T11:56:39" color="16737792" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/350_in.jpg">
+ <title>en chemin vers le duel final</title>
+ <abstract>Plan moyen de Nianankoro</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_693B99CC-836A-5F6C-BC26-CE268CB1ABB8" begin="5134440" dur="14840" author="IRI" date="2010-10-21T11:56:50" color="13395456" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/353_in.jpg">
+ <title>L'arrivée sur le lieu de son destin</title>
+ <abstract>crossroads</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_B1FC2CFB-9DE7-325F-7724-CE2AEE179026" begin="5558760" dur="67760" author="IRI" date="2010-10-21T11:57:13" color="102" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/395_in.jpg">
+ <title>Le duel</title>
+ <abstract>Duel et disparition</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_B2D6A7C5-88E6-8C66-9E77-CE2CC0020992" begin="5678880" dur="157360" author="IRI" date="2010-10-21T11:57:48" color="6697728" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/398_in.jpg">
+ <title>La transmission</title>
+ <abstract>Arrivée de la femme et du fils</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_14CA3783-1429-23A1-C29B-CE2CCE1CD1FF" begin="5838720" dur="35960" author="IRI" date="2010-10-21T11:57:33" color="6684672" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/400_in.jpg">
+ <title>La tranmission</title>
+ <abstract>Départ du fils avec l'oeuf et le vêtement</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_4FC77C37-4F83-4E1F-A114-CE3F9CAC2F31" author="perso">
+ <title>Utilisations de son pouvoir</title>
+ <abstract/>
+ <elements>
+ <element id="s_AC3A7B49-9465-156C-4A31-CE400818C057" begin="1473040" dur="16080" author="IRI" date="2010-10-21T15:05:23" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/118_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>1er usage de son pouvoir contre condamnation</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_381415C1-FF84-E83C-A9C6-CE402F37A245" begin="1900240" dur="24440" author="IRI" date="2010-10-21T15:05:27" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/166_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>utilise son pouvoir pour aider le village</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_C8BF12AF-60FD-430F-265F-CE40414884C8" begin="2025040" dur="5440" author="IRI" date="2010-10-21T12:05:39" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/179_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Utilisation de son pourvoir sur les abeilles</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_BE42D51A-7D62-DE68-99AF-CE404DAC87DE" begin="2045040" dur="7400" author="IRI" date="2010-10-21T12:05:42" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/186_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>La fuite des ennemis</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_BAA74EDD-2010-2F82-E9F0-CE405B1963FE" begin="2099240" dur="5400" author="IRI" date="2010-10-21T12:05:48" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/194_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Déroute finale de l'ennemi grâce au feu</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_3C50DE11-7338-B3C9-31BB-CE406625DF75" begin="2104640" dur="6880" author="IRI" date="2010-10-21T15:05:30" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/195_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>gros plan feu</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_658892B6-4C02-A37E-E117-CE40745E1322" begin="2182920" dur="8160" author="IRI" date="2010-10-21T12:05:54" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/201_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>le roi l'implore de rester</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_79B0DDAB-5A70-DC22-C203-CE407F4B453E" begin="2191080" dur="10080" author="IRI" date="2010-10-21T15:05:32" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/202_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Renonce à rester, évoque sa mission</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_CB623ABD-74DE-006C-4122-CE409B206857" begin="2291716" dur="38327" author="IRI" date="2010-10-21T12:06:02" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/204_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>2ème demande du roi : guérir la stérilité de sa femme, 1er contact avec celle qui deviendra son épouse</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_63CBF248-928E-4843-091C-CE40FA18EFBA" begin="2701200" dur="8720" author="IRI" date="2010-10-21T12:06:26" color="16711680" src="D:\YeelenPourLDT\souleymanecisse_yeelen/thumbs/229_in.jpg">
+ <title>chez les Peuls</title>
+ <abstract>Alors, heureuse?</abstract>
+ <audio source="undefined"/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_E75DD337-B090-12B1-5429-A9F0559A2A9B" author="perso">
+ <title>Corps</title>
+ <abstract>Comment S. Cissé filme les corps ?
+
+Lien avec les 4 éléments : terre eau feu air</abstract>
+ <elements>
+ <element id="s_BBE01429-1603-2308-F4ED-A9F29D29C02D" begin="103080" dur="6960" author="IRI" date="2010-10-14T10:54:30" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/5_in.jpg">
+ <title>plan 5</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_E8A2D777-0330-E945-5AF3-AA15BD67DFB2" begin="656120" dur="87080" author="IRI" date="2010-11-10T11:17:55" color="16776960" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/35_in.jpg">
+ <title>Mère et fils en départ</title>
+ <abstract>Les corps sont les points d'appui pour l'échange des regards entre la mère et le fils. Cissé donne du temps aux corps pour se déplacer, se faire face, se regarder, se dire adieu.
+Les deux personnages de retournent l'un vers l'autre.
+Plans 39-40 : Raccord dans l'axe des regards. Cela créé un effet de mouvement qui accentue l'idée du départ et de l'adieu.
+L'enchaînement des plans se fait selon différentes échelles : du plan moyen au plan rapproché, puis du plan rapproché au plan moyen.
+On voit facilement sur lignes de temps le raccourcissement puis l'allongement progressif de la durée des plans entre le début et la fin de cette séquence.
+Lorsque la mère et le fils se sont dit adieu, Cissé ne quitte pas les corps, il enchaîne sur le corps d'une femme au travail, plaçant ainsi ses deux personnages au même niveau qu'une inconnue inscrite dans le paysage. Cette fois, Cissé montre le corps au travail.</abstract>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_45206560-DEA7-189E-6212-AA16528B42EB" begin="684300" dur="0" author="" date="2010-10-14T11:33:39" color="16711680" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_3C22B110-38A7-5E2B-6EC9-AA1673199FF2" begin="685361" dur="0" author="" date="2010-10-14T11:34:37" color="3355545" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_F5ED92AA-0BAE-105F-10B4-AA16D253CCCA" begin="696200" dur="0" author="" date="2010-11-10T11:17:21" color="16711680" src="">
+ <title/>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_61D59696-2140-D63C-EB61-A9F3AA662D51" begin="1214640" dur="128685" author="IRI" date="2010-10-14T10:55:39" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/96_in.jpg">
+ <title>plan 96</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_34382181-731A-E9A8-E895-A9F46C67652E" begin="1628640" dur="37135" author="IRI" date="2010-10-14T10:56:29" color="10053120" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/139_in.jpg">
+ <title>plan 139</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_5C04C989-4A30-13D5-B2BD-A9F49C0372D5" begin="1667920" dur="50778" author="IRI" date="2010-10-14T10:56:45" color="10053171" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/150_in.jpg">
+ <title>plan 150</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>mort</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_DE6ADD0F-E009-E719-9BAB-A9F2DEACDE91" begin="1900240" dur="24440" author="IRI" date="2010-10-14T10:54:47" color="16711680" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/166_in.jpg">
+ <title>plan 166</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_C4380CEE-0217-F69B-ED1B-A9F0828E2FE3" begin="1980520" dur="30180" author="IRI" date="2010-10-14T10:52:13" color="52479" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/173_in.jpg">
+ <title>plan 173</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_8ABCD5B1-6651-3909-62A0-A9F0F561E320" begin="2601544" dur="140631" author="IRI" date="2010-10-14T10:57:16" color="52479" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/226_in.jpg">
+ <title>plan 226</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>union</tag>
+ </tags>
+ <meta/>
+ </element>
+ <element id="s_059448A8-7A05-F9F3-D11B-A9F341A69844" begin="4273160" dur="179870" author="IRI" date="2010-10-14T10:55:13" color="52326" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/311_in.jpg">
+ <title>plan 311</title>
+ <abstract/>
+ <audio source=""/>
+ <tags>
+ <tag>femme</tag>
+ <tag>fils</tag>
+ <tag>jour</tag>
+ </tags>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ <decoupage id="c_2981CFB9-4E3B-9D45-3393-7B9EDE27CCC7" author="perso">
+ <title>Mouvement caméra</title>
+ <abstract/>
+ <elements>
+ <element id="s_B062462F-66C9-03F3-064C-7B9F066EDFC3" begin="1579360" dur="19440" author="IRI" date="2010-10-05T11:00:44" color="10027008" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/132_in.jpg">
+ <title>plan 132</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ <element id="s_C9C50CF7-B450-3E74-2BA2-7B9FCAC10015" begin="1628640" dur="9920" author="IRI" date="2010-10-05T11:01:31" color="6771296" src="/Users/carolinearchat/Documents/LignesDeTemps/cisse/souleymanecisse_yeelen/thumbs/139_in.jpg">
+ <title>plan 139</title>
+ <abstract/>
+ <audio source=""/>
+ <tags/>
+ <meta/>
+ </element>
+ </elements>
+ </decoupage>
+ </ensemble>
+ </content>
+ </annotations>
+ <displays>
+ <display id="v_DBEC5664-8B19-28F7-5F5F-73784AFA71C7" title="View at the last recording" idsel="souleymanecisse_yeelen" tc="87193" zoom="0" scroll="0" infoBAB="">
+ <audio source=""/>
+ <content id="souleymanecisse_yeelen">
+ <decoupage idens="en_2" id="de_PPP" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_C15F51DB-C366-C962-28BE-CDCA4BB97F35" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_955C4C9F-483C-733C-4A0D-CDB92136E871" tagsSelect=""/>
+ </content>
+ </display>
+ <display id="v_A5004199-88BB-ADB0-80E3-73784AFA61BE" title="Découpage séquentiel" idsel="souleymanecisse_yeelen" tc="399" zoom="0" scroll="0" infoBAB="">
+ <audio source=""/>
+ <content id="souleymanecisse_yeelen">
+ <decoupage idens="en_2" id="de_PPP" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_C15F51DB-C366-C962-28BE-CDCA4BB97F35" tagsSelect=""/>
+ </content>
+ </display>
+ <display id="v_554D0697-44D9-D58F-D300-73784AFAB774" title="Piste 1 : déplacements de Nianankoro" idsel="souleymanecisse_yeelen" tc="4995920" zoom="0" scroll="0" infoBAB="">
+ <audio source=""/>
+ <content id="souleymanecisse_yeelen">
+ <decoupage idens="en_2" id="de_PPP" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_C15F51DB-C366-C962-28BE-CDCA4BB97F35" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_955C4C9F-483C-733C-4A0D-CDB92136E871" tagsSelect=""/>
+ </content>
+ </display>
+ <display id="v_8058E574-5331-D746-1F32-73784AFA1166" title="Piste 2 : Personnages principaux / personnges secondaires" idsel="souleymanecisse_yeelen" tc="1649696" zoom="20" scroll="0" infoBAB="">
+ <audio source=""/>
+ <content id="souleymanecisse_yeelen">
+ <decoupage idens="en_2" id="de_PPP" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_C15F51DB-C366-C962-28BE-CDCA4BB97F35" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_07DBA034-CE84-69C9-57AE-CDBDFD1D6BAF" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_0B2E2B1F-B50B-FEF3-3E17-CDBCEEF973B1" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_6625923F-0C7A-61C8-602F-CDBF0CF7FBF8" tagsSelect=""/>
+ </content>
+ </display>
+ <display id="v_568E8814-5404-3326-166E-73784AFAAD8A" title="Piste 3 : Voyage initiatique" idsel="souleymanecisse_yeelen" tc="4076663" zoom="0" scroll="0" infoBAB="">
+ <audio source=""/>
+ <content id="souleymanecisse_yeelen">
+ <decoupage idens="en_2" id="de_PPP" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_C8FCFFF0-7981-AA5E-6A28-CDB7FD92B208" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_E317E205-5E81-9763-24C4-CE39B986EC62" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_59675AA4-DFCB-4274-73EF-CE441607F532" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_4FC77C37-4F83-4E1F-A114-CE3F9CAC2F31" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_0670BE67-5499-1A88-5D4E-CE48205DE5A8" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_6449E76E-CBF0-DB47-CAC4-CE3C38786F2C" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_85BDE555-7F40-332B-5DE9-CE429F8785A7" tagsSelect=""/>
+ </content>
+ </display>
+ <display id="v_A0A6FF7B-F9A6-9D49-FDCB-73784AFAD777" title="Piste 4 : Mère et fils" idsel="souleymanecisse_yeelen" tc="574079" zoom="60" scroll="5" infoBAB="">
+ <audio source=""/>
+ <content id="souleymanecisse_yeelen">
+ <decoupage idens="en_2" id="de_PPP" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_B88DC924-1518-A9DF-0C46-CDBDC8419F5C" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_C2F0B267-4C29-5777-5667-CE0F7CE0D11F" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_99EEB7C1-227B-B192-445B-CDE37CD90C2D" tagsSelect=""/>
+ </content>
+ </display>
+ <display id="v_0C5B6999-346D-75DC-26CB-73784AFA425C" title="Piste 5 : Effet miroir" idsel="souleymanecisse_yeelen" tc="332169" zoom="60" scroll="4" infoBAB="">
+ <audio source=""/>
+ <content id="souleymanecisse_yeelen">
+ <decoupage idens="en_2" id="de_PPP" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_3EB2DA07-C582-0908-6197-CDD3C581FEEF" tagsSelect=""/>
+ </content>
+ </display>
+ <display id="v_CC1B6E8C-20B4-2EF8-F2FD-73784AFAE4E0" title="Corps et regards : mère et fils (C. Archat)" idsel="souleymanecisse_yeelen" tc="657900" zoom="98" scroll="10" infoBAB="">
+ <audio source=""/>
+ <content id="souleymanecisse_yeelen">
+ <decoupage idens="en_2" id="de_PPP" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_E75DD337-B090-12B1-5429-A9F0559A2A9B" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_FB708A28-CC9D-424D-6DCC-AA27290D777B" tagsSelect=""/>
+ </content>
+ </display>
+ <display id="v_1127D4EB-7CC6-4D3D-ED68-73784AFA2ED4" title="Paysages et sons (C. Archat)" idsel="souleymanecisse_yeelen" tc="5139807" zoom="0" scroll="0" infoBAB="">
+ <audio source=""/>
+ <content id="souleymanecisse_yeelen">
+ <decoupage idens="en_2" id="de_PPP" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_FE808EE3-D70E-52E7-10A8-AA576B51A2E6" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_6F06479F-C02A-B4D5-233C-A4E77BF04E10" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_94E340AF-96A0-F1CE-E215-A4EB34EB9E92" tagsSelect=""/>
+ </content>
+ </display>
+ <display id="v_0A30E3D2-E847-1862-6606-73784AFA3267" title="Eléments naturels (C. Archat)" idsel="souleymanecisse_yeelen" tc="3431130" zoom="0" scroll="0" infoBAB="">
+ <audio source=""/>
+ <content id="souleymanecisse_yeelen">
+ <decoupage idens="en_2" id="de_PPP" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_99EFB2EA-237D-90EE-26B8-67882BC6636F" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_2DE9C39B-1F82-3F9B-E3FC-678B86529011" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_E7DACD6C-503B-ECAD-8CD4-A0D20DA55AF8" tagsSelect=""/>
+ <decoupage idens="g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC" id="c_FABBB250-5825-6E70-A05A-7B9D1BB90723" tagsSelect=""/>
+ </content>
+ </display>
+ </displays>
+ <edits>
+ <editing id="0" tags="">
+ <title>Piste 4. mère et fils ensemble, mère</title>
+ <abstract/>
+ <edit id="edit1" tags="">
+ <eList>
+ <inst ref="souleymanecisse_yeelen|;|g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC|;|c_C2F0B267-4C29-5777-5667-CE0F7CE0D11F|;||;||;|s_C85CB21C-4ACB-922E-43E7-CE3D896CCB3E" begin="315" end="327" m="0" v="100" eBegin="0" eEnd="12" />
+ <inst ref="souleymanecisse_yeelen|;|g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC|;|c_C2F0B267-4C29-5777-5667-CE0F7CE0D11F|;||;||;|s_FE975CF3-027A-6C43-4B75-CE3F4D8DC692" begin="339" end="350" m="0" v="100" eBegin="12" eEnd="23" />
+ <inst ref="souleymanecisse_yeelen|;|g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC|;|c_C2F0B267-4C29-5777-5667-CE0F7CE0D11F|;||;||;|s_00625329-3094-4CC9-9E5F-CE3F627DA960" begin="391" end="398" m="1" v="100" eBegin="23" eEnd="30" />
+ <inst ref="souleymanecisse_yeelen|;|g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC|;|c_C2F0B267-4C29-5777-5667-CE0F7CE0D11F|;||;||;|s_5846FF3B-B1BC-068C-DAC4-CE3F723C8D15" begin="416" end="427" m="0" v="100" eBegin="30" eEnd="41" />
+ <inst ref="souleymanecisse_yeelen|;|g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC|;|c_C2F0B267-4C29-5777-5667-CE0F7CE0D11F|;||;||;|s_4EBCBBC8-8329-A871-F582-CE3F88928CED" begin="508" end="571" m="1" v="100" eBegin="41" eEnd="104" />
+ <inst ref="souleymanecisse_yeelen|;|g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC|;|c_C2F0B267-4C29-5777-5667-CE0F7CE0D11F|;||;||;|s_BA9511C6-6565-ECC4-3CC5-CE4603B81520" begin="678" end="681" m="0" v="100" eBegin="104" eEnd="107" />
+ <inst ref="souleymanecisse_yeelen|;|g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC|;|c_C2F0B267-4C29-5777-5667-CE0F7CE0D11F|;||;||;|s_EC3C3408-03F2-0762-4792-CE4620F48042" begin="685" end="687" m="1" v="100" eBegin="107" eEnd="109" />
+ <inst ref="souleymanecisse_yeelen|;|g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC|;|c_C2F0B267-4C29-5777-5667-CE0F7CE0D11F|;||;||;|s_C74E9D3F-52CC-5E93-CEFA-CE46316FC24C" begin="697" end="704" m="1" v="100" eBegin="109" eEnd="116" />
+ <inst ref="souleymanecisse_yeelen|;|g_61B7B52D-9FB0-94E1-4FF8-67882BC7F3AC|;|c_C2F0B267-4C29-5777-5667-CE0F7CE0D11F|;||;||;|s_88CA8257-4487-0906-27CA-CE463FD695F1" begin="710" end="716" m="0" v="100" eBegin="116" eEnd="122" />
+ </eList>
+ <caption/>
+ <audio/>
+ <mList>
+ <m ref="souleymanecisse_yeelen" id="0" t="v" c="16776960">
+ <content>rtmp://media.iri.centrepompidou.fr/ddc_player/video/regardssignes/souleymanecisse_yeelen.flv</content>
+ </m>
+ <m ref="id2" id="1" t="v" c="16776960">
+ <content>rtmp://media.iri.centrepompidou.fr/ddc_player/video/regardssignes/micheleplacido_romanzocriminale.flv</content>
+ </m>
+ </mList>
+ </edit>
+ <edit id="edit2" tags="">
+ <eList/>
+ <caption/>
+ <audio/>
+ <mList/>
+ </edit>
+ </editing>
+ </edits>
+</iri>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test/integration/integ_player_bab_ldt.html Thu May 10 18:11:46 2012 +0200
@@ -0,0 +1,1 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr">
<head>
<title>player_bab_ldt</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css" media="screen">
html, body { height:100%; background-color: #990000;}
body { margin:0; padding:0; overflow:hidden; }
#flashContent { width:600px; height:420px; }
</style>
<script>
var player = null;
var output = null;
var progress = null;
function onBabPlayerReady(message)
{
player_p = document.getElementById("player_bab_ldt");
player = player_p.getElementsByTagName("embed")[0];
output = document.getElementById('demo_output');
progress = document.getElementById('demo_progress');
output_send('Player is ready !');
}
function onBabStateChange(t){
// States can be : seeking (3), paused (2), playing (1)
output_send("state = " + t);
}
function onBabVideoProgress(data)
{
progress.innerHTML = 'mediaTime: ' + data.mediaTime + ' s';
}
function output_send(message)
{
if (output)
{
output.value += "\n"+ message;
output.scrollTop = output.scrollHeight;
}
}
// External interface functions
function player_playVideo(){
if (player){
player.playVideo();
//output_send('call method: playVideo()');
}
}
function player_pauseVideo(){
if (player){
player.pauseVideo();
//output_send('call method: pauseVideo()');
}
}
function player_getCurrentTime(){
if (player){
var value = player.getCurrentTime();
output_send('call method: getCurrentTime() à ' + value);
}
}
function player_seekTo(){
if (player){
var time = Math.floor(Math.random() * 10);
player.seekTo(time);
//output_send('call method: seekTo(' + time + ')');
}
}
function player_isMuted(){
if (player){
var value = player.isMuted();
output_send('call method: isMuted() à ' + value);
}
}
function player_mute(){
if (player){
player.mute();
//output_send('call method: mute()');
}
}
function player_unMute(){
if (player){
player.unMute();
//output_send('call method: unMute()');
}
}
function player_setVolume(){
if (player){
// Entre 0 et 2
var volume = Math.random() * 2;
player.setVolume(volume);
output_send('call method: setVolume( ' + volume + ' )');
}
}
function player_getVolume(){
if (player){
var value = player.getVolume();
output_send('call method: getVolume() à ' + value);
}
}
</script>
</head>
<body>
<div id="flashContent">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="400" id="player_bab_ldt" align="middle">
<param name="movie" value="../../assets/player_bab_ldt/player_bab_ldt.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<param name="play" value="true" />
<param name="loop" value="true" />
<param name="wmode" value="transparent" />
<param name="scale" value="showall" />
<param name="menu" value="true" />
<param name="devicefont" value="false" />
<param name="salign" value="" />
<param name="allowScriptAccess" value="always" />
<param name="allowFullScreen" value="true" />
<param name="flashvars" value="urlData=fichiers_bab/yeelen_bab.ldt&urlSkin=fichiers_bab/SkinBoutABout.swf">
<embed src="../../assets/player_bab_ldt/player_bab_ldt.swf" quality="high" bgcolor="#869ca7"
width="500" height="375" name="ExternalInterfaceExample" align="middle"
play="true" loop="false" quality="high" allowScriptAccess="always"
type="application/x-shockwave-flash" allowFullScreen"true" wmode="transparent"
flashvars="urlData=fichiers_bab/yeelen_bab.ldt&urlSkin=fichiers_bab/SkinBoutABout.swf"
pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>
</div>
<div>
<input type="button" class="button" onclick="javascript:player_playVideo();" value="playVideo" />
<input type="button" class="button" onclick="javascript:player_pauseVideo();" value="pauseVideo" />
<input type="button" class="button" onclick="javascript:player_getCurrentTime();" value="getCurrentTime" />
<input type="button" class="button" onclick="javascript:player_seekTo();" value="seekTo" />
<input type="button" class="button" onclick="javascript:player_isMuted();" value="isMuted" />
<input type="button" class="button" onclick="javascript:player_mute();" value="mute" />
<input type="button" class="button" onclick="javascript:player_unMute();" value="unMute" />
<input type="button" class="button" onclick="javascript:player_getVolume();" value="getVolume" />
<input type="button" class="button" onclick="javascript:player_setVolume();" value="setVolume" />
<br/><textarea id="demo_output" rows="10" style="width:500px;"></textarea><textarea id="demo_progress" >bla</textarea>
</div>
</body>
</html>
\ No newline at end of file